当前位置:文档之家› 华为生成树协议STP分析过程与配置方法

华为生成树协议STP分析过程与配置方法

华为生成树协议STP分析过程与配置方法

一、学习目的:

1、掌握配置STP的方法

2、掌握修改网桥优先级影响根选举的方法

3、掌握修改端口优先级影响根端口与指定端口选举的方法

4、掌握配置RSTP的方法

5、掌握STP与RSTP的相互兼容问题

6、掌握配置MSTP实现不同vlan负载均衡的方法

7、掌握MSTP与STP的相互兼容问题

8、掌握生成树中的保护方法

二、重点命令

1、开启stp

[plain]view plain copy

1.stp enable

2.stp mode stp

2、查看stp状态

[plain]view plain copy

1.dis stp

2.dis stp brief

3、指定stp主根和备根

[plain]view plain copy

1.stp root primary

2.stp root secondary

4、手工指定根桥优先级

[plain]view plain copy

1.stp priority 4096(4096的倍数)

5、指定RP

[plain]view plain copy

1.int g0/0/10

2. stp port priority 16(16的倍数)

6、指定DP

[plain]view plain copy

1.int g0/0/24

2. stp cost 2000000

7、开启rstp

[plain]view plain copy

1.stp enable

2.stp mode rstp

8、配置mstp

[plain]view plain copy

1.stp enable

2.stp mode mstp

3.stp region-configuration

4. region-name RG1

5. instance 1 vlan 1 to 10

6. instance 2 vlan 11 to 20

7. active region-configuration

9、查看mstp实例配置

[plain]view plain copy

1.display stp region-configuration

10、配置mstp的多实例优先级[plain]view plain copy

1.stp instance 1 priority 4096

2.stp instance 2 priority 8192

11、配置指定端口保护

[plain]view plain copy

1.配置在根桥的DP口上

2.int g0/0/1

3. stp root-protection

12、配置边缘端口保护

[plain]view plain copy

1.配置在接入服务器的端口

2.int g0/0/10

3. stp edged-port enable

13、配置环路保护

[plain]view plain copy

1.配置在非根桥交换机的上联口

2.int g0/0/13

3. stp loop-protection

三、实验过程

1、实验拓扑

2、STP配置及验证[plain]view plain copy

1.SW1-SW4:

2.stp enable

3.stp mode stp 查看stp状态:

[plain]view plain copy

1.SW1-SW4

2.dis stp

3.dis stp brief

由图中我可以看出整个stp情况,如下图:

3、将SW1配置成主根网桥,将SW2配置成备份根网桥[plain]view plain copy

1.SW1:

2.[SW1]stp root primary

3.

4.SW2:

5.[SW2]stp root secondary

在看下SW1和SW2的stp状态,可以看到设置成主根的priority为0,备根的priority为4096。

此时4台设备的生成树如下图:

4、手工指定优先级,使得SW2为主根,SW1为备根[plain]view plain copy

1.SW1:

2.[SW1]undo stp root

3.[SW1]stp priority 8192

4.

5.SW2:

6.[SW2]undo stp root

7.[SW2]stp priority 4096

再看下SW1和SW2的STP状态。

5、根端口选举控制

由于上一步把SW2设置成了根桥,所以SW1和SW2互联的两个口一定有一个属于ALTE状态,如下图:

可以发现9口是根端口,端口优先级默认是128,数值越小优先级越高,如果我们希望10端口变为根端口,怎么做?[plain]view plain copy

1.SW2:

2.[SW2]int g0/0/10

3.[SW2-GigabitEthernet0/0/10]stp port priority 16

此时再看SW1上的stp端口状态,10端口已经变成了RP。

6、指定端口选举控制

先看一下SW3的int g0/0/1以及SW4的int g0/0/24的端口stp状态

[plain]view plain copy

1.[SW3]dis stp int g0/0/1

相关主题