一、组网说明
网络中的4台交换机运行MSTP。其中SW A做为Vlan 10,20的根桥,SW B做为Vlan 30,40的根桥。
二、组网图
三、配置步骤
SW A的配置
#配置MSTP,并创建MSTP多实例
switch(config)#spanning-tree
switch(config)#spanning-tree mst configurtaion
switch(config-Mstp-Region)#name test
switch(config-Mstp-Region)#instance 0 vlan 10;20
switch(config-Mstp-Region)#instance 1 vlan 30;40
switch(config-Mstp-Region)#exit
switch(config)#spanning-tree mst 0 priority 4096
switch(config)#spanning-tree mst 1 priority 8192
#配置端口模式和透传的Vlan信息
略
SW B的配置
#配置MSTP,并创建MSTP多实例
switch(config)#spanning-tree
switch(config)#spanning-tree mst configurtaion
switch(config-Mstp-Region)#name test
switch(config-Mstp-Region)#instance 0 vlan 10;20
switch(config-Mstp-Region)#instance 1 vlan 30;40
switch(config-Mstp-Region)#exit
switch(config)#spanning-tree mst 0 priority 8192
switch(config)#spanning-tree mst 1 priority 4096
#配置端口模式和透传的Vlan信息
略
SW C的配置
#配置MSTP,并创建MSTP多实例
switch(config)#spanning-tree
switch(config)#spanning-tree mst configurtaion
switch(config-Mstp-Region)#name test
switch(config-Mstp-Region)#instance 0 vlan 10;20
switch(config-Mstp-Region)#instance 1 vlan 30;40
switch(config-Mstp-Region)#exit
#配置端口模式和透传的Vlan信息
略
SW D的配置
#配置MSTP,并创建MSTP多实例
switch(config)#spanning-tree
switch(config)#spanning-tree mst configurtaion
switch(config-Mstp-Region)#name test
switch(config-Mstp-Region)#instance 0 vlan 10;20
switch(config-Mstp-Region)#instance 1 vlan 30;40
switch(config-Mstp-Region)#exit
#配置端口模式和透传的Vlan信息
略
四、注意事项
同一个MSTP域中的设备,Vlan信息和MSTP配置信息(名称、实例Vlan对应关系)必须保持一致,否则MSTP无法正常运行。
ps:配置端口模式和透传的Vlan信息可看交换机Trunk端口典型配置-CSDN博客
标签:Mstp,Region,配置,MSTP,switch,实例,spanning,config From: https://blog.csdn.net/lxc_djy/article/details/144181447