[学习笔记]eNSPV2.5入门实验-第三章-STP和RSTP
实验3-1
学习目标
- 掌握启用和禁用STP的方法
- 掌握修改交换机STP模式的方法
- 掌握修改桥优先级,控制根桥选举的方法
- 掌握端口优先级,控制根端口和指定端口选举的方法
- 掌握修改端口开销,控制根端口和指定端口选举的方法
- 掌握边缘端口的配置方法
Notes
拓扑图
CLI
步骤一、配置STP并验证
[s2]undo info-center enable //关闭提示
关闭无关端口(shutdown命令)
在S1和S2上启用STP,并把S1配置为根桥
[s1]stp mode stp
[s1]stp root primary
[s2]stp mode stp
[s2]stp root secondary
执行display stp brief命令查看STP信息
<s1>display stp brief
执行display stp interface命令查看端口的STP状态
<s1>display stp interface GigabiEthernet 0/0/10
步骤二、控制根桥选举
执行display stp命令查看根桥信息
<s1>display stp
通过配置优先级,是s2为根桥,s1为备份根桥。把s1和s2的优先级分别设置为8192和4096
[s1]undo stp root
[s1]stp priority 8192
[s2]undo stp root
[s2]stp priority 4096
查看新的根桥信息
<s1>display stp
步骤三、控制跟端口选举
修改s2的端口优先级,使s1的g0/0/10成为根端口
[s2]int g0/0/9
[s2-g0/0/9]stp port priority 32
[s2-g0/0/9]quit
[s2]int g0/0/10
[s2-g0/0/10]stp port priority 16
修改s1的g0/0/9端口开销为200000,使s1的g0/0/10成为根端口
[s1]int g0/0/9
[s1-g0/0/9]stp cost 200000
实验3-2
学习目标
掌握启用和禁用RSTP的配置方法
掌握边缘端口的配置方法
掌握RSTP BPDU保护功能的配置方法
掌握RSTP环路保护功能的配置方法
Notes
拓扑图
CLI
步骤一、配置RSTP并验证RSTP配置
[s1]stp mode rstp
[s2]stp mode rstp
[s1]display stp //查看RSTP简要信息
步骤二、配置边缘端口
[s1]int g0/0/1
[s1-g0/0/1]undo shutdown
[s1-g0/0/1]stp edged-port enable
[s2]int g0/0/1
[s2-g0/0/1]undo shutdown
[s2-g0/0/1]stp edged-port enable //s1和s2的g0/0/1端口和路由器连接配置为边缘端口
步骤三、配置BPDU保护模式(防止伪造BPDU攻击)
[s1]stp bpdu-protection
[s2]stp bpdu-protection
[s1]display stp brief //查看端口配置保护功能
步骤四、配置环路保护功能
如果由于链路拥塞或者单向链路故障导致交换机收不到来自上游设备的BPDU报文,交换机会重新选择根端口。原先的根端口会变成指定端口,而原先的阻塞端口会迁移到转发状态,从而引起网络环路。可以在交换机上配置环路保护功能,避免此种情况发生。
[s2]int g0/0/9
[s2-g0/0/9]stp loop-protection
[s2-g0/0/9]quit
[s2]int g0/0/10
[s2-g0/0/10]stp loop-protection //s2的g0/0/9和g0/0/10分别为Root Port和Alternate Port
[s2]display stp brief //查看配置
s1是根桥,s1上的所有端口都是指定端口,无需配置环路保护