在SW4,SW2,SW3之间配置MSTP 所有数据流均经过SW2转发。 其中region-name为ruijie Revision为1 SW2为实例10的主根,SW3为实例10的从根。
时间: 2024-02-12 16:02:51 浏览: 137
假设SW2,SW3,SW4所连接的VLAN分别为VLAN10、VLAN20和VLAN30,且SW2为VLAN10的主根,SW3为VLAN10的从根。则MSTP的配置步骤如下:
1. 配置全局MSTP参数
```
SW2(config)# spanning-tree mode mst
SW3(config)# spanning-tree mode mst
SW4(config)# spanning-tree mode mst
```
2. 配置MSTP实例
```
SW2(config)# spanning-tree mst configuration
SW2(config-mst)# name ruijie
SW2(config-mst)# revision 1
SW2(config-mst)# instance 10 vlan 10
SW2(config-mst)# instance 20 vlan 20
SW2(config-mst)# instance 30 vlan 30
SW3(config)# spanning-tree mst configuration
SW3(config-mst)# name ruijie
SW3(config-mst)# revision 1
SW3(config-mst)# instance 10 vlan 10
SW3(config-mst)# instance 20 vlan 20
SW3(config-mst)# instance 30 vlan 30
SW4(config)# spanning-tree mst configuration
SW4(config-mst)# name ruijie
SW4(config-mst)# revision 1
SW4(config-mst)# instance 10 vlan 10
SW4(config-mst)# instance 20 vlan 20
SW4(config-mst)# instance 30 vlan 30
```
3. 配置MSTP端口
SW2:
```
SW2(config)# interface gigabitethernet 1/0/1
SW2(config-if)# spanning-tree mst 10 root primary
SW2(config-if)# spanning-tree mst 20 root secondary
SW2(config-if)# spanning-tree mst 30 root secondary
```
SW3:
```
SW3(config)# interface gigabitethernet 1/0/1
SW3(config-if)# spanning-tree mst 10 root secondary
SW3(config-if)# spanning-tree mst 20 root primary
SW3(config-if)# spanning-tree mst 30 root secondary
```
SW4:
```
SW4(config)# interface gigabitethernet 1/0/1
SW4(config-if)# spanning-tree mst 10 root secondary
SW4(config-if)# spanning-tree mst 20 root secondary
SW4(config-if)# spanning-tree mst 30 root secondary
```
上述配置中,SW2为实例10的主根,SW3为实例10的从根,所有数据流均经过SW2转发。SW2还分别配置了实例20和实例30的根优先级,SW3和SW4则分别配置了实例20和实例30的根优先级,以保证整个网络的生成树计算正确。
阅读全文