MSTP 基础配置 在所有交换机上创建 VLAN10、20、30、40、50、60、70、80,配置 MSTP 域 hcip,并创建 两个新的实例:Instance 1、Instance 2,将 VLAN10、30、50、70 映射到 Instance 1,将 VLAN20、40、60、80 映射到 Instance 2,同时将 SW1 规划为 MSTI1 的主根桥、MSTI2 的 备份根桥,将 SW2 规划为 MSTI2 的主根桥、MSTI1 的备份根桥。
SW1 SW2 SW3 SW4 创建vlan
vlan batch 10 20 30 40 50 60 70 80
所有交换机互联接口都配置为 trunk 模式 ,并且放行上述创建的vlan
interface GigabitEthernet0/0/1
port link-type trunk
port trunk allow-pass vlan 10 20 30 40 50 60 70 80
#
interface GigabitEthernet0/0/2
port link-type trunk
port trunk allow-pass vlan 10 20 30 40 50 60 70 80
#
interface GigabitEthernet0/0/3
port link-type trunk
port trunk allow-pass vlan 10 20 30 40 50 60 70 80
#
interface GigabitEthernet0/0/4
port link-type trunk
port trunk allow-pass vlan 10 20 30 40 50 60 70 80
#或者执行如下快速配置命令
port-group group-member g0/0/1 to g0/0/4
port link-type trunk
port trunk allow-pass vlan 10 20 30 40 50 60 70 80
所有交换机均配置MSTP
stp mode mstp
stp region-configuration
region-name hcip
revision-level 1
instance 1 vlan 10 30 50 70
instance 2 vlan 20 40 60 80
active region-configuration
将 SW1 规划为 MSTI1 的主根桥、MSTI2 的 备份根桥,
stp instance 1 root primary
stp instance 2 root secondary
将 SW2 规划为 MSTI2 的主根桥、MSTI1 的备份根桥。
stp instance 1 root secondary
stp instance 2 root primary
SW1查看配置结果
SW2查看配置结果
连线接口图