MSTP华为配置命令
时间: 2023-08-07 09:08:18 浏览: 118
MSTP的命令
MSTP(Multiple Spanning Tree Protocol)是一种用于在网络中配置多个交换机的生成树协议,以提高网络的可靠性和可扩展性。以下是常用的MSTP华为配置命令:
1. 开启MSTP功能
```
[Switch] stp enable
[Switch] stp mode mstp
```
2. 配置MST实例数目
```
[Switch] mstp configuration
[Switch-mst] region-name MSTP
[Switch-mst] instance 1 vlan 100
[Switch-mst] instance 2 vlan 200
[Switch-mst] instance 3 vlan 300
[Switch-mst] exit
```
3. 配置MSTP根桥
```
[Switch] stp mstp priority <priority>
```
4. 配置MSTP端口优先级
```
[Switch] interface gigabitethernet 0/0/1
[Switch-GigabitEthernet0/0/1] stp mstp port-priority 32
```
5. 配置MSTP端口类型
```
[Switch] interface gigabitethernet 0/0/1
[Switch-GigabitEthernet0/0/1] stp edged-port enable
```
6. 配置MSTP端口是否允许接收BPDU
```
[Switch] interface gigabitethernet 0/0/1
[Switch-GigabitEthernet0/0/1] stp bpdu-filter enable
```
7. 查看MSTP状态
```
[Switch] display stp mst
```
阅读全文