一,实验拓扑图
二,实验目的
使用PC0持续去ping PC2,在ping的同时断掉非阻塞链路(橙色代表阻塞),发现丢包5个后恢复正常。为减少丢包,下面将采用rstp技术进行优化
三,实验步骤
将实验拓扑图进行还原
1,switch0
Switch>enable
Switch#config t //进入配置模式
Switch(config)#int range f0/2,f0/3 //进入2,3号端口
Switch(config-if-range)#switchport mode trunk //设置为trunk口
Switch(config-if-range)#switchport trunk allowed vlan all //允许所有vlan通过
Switch(config-if-range)#exit //退出端口
Switch(config)#spanning-tree mode rapid-pvst //开启(RSTP)模式
Switch(config)#spanning-tree vlan 1 priority 0 //将 vlan1 的生成树优先级设置为0
Switch(config)#int f0/1 //进入终端设备接口
Switch(config-if)#spanning-tree portfast //加速终端设备的接入速度并避免不必要的网络中断
2,switch1
Switch>enable
Switch#config t //进入配置模式
Switch(config)#int range f0/2,f0/3 //进入2,3号端口
Switch(config-if-range)#switchport mode trunk //设置为trunk口
Switch(config-if-range)#switchport trunk allowed vlan all //允许所有vlan通过
Switch(config-if-range)#exit //退出端口
Switch(config)#spanning-tree mode rapid-pvst //开启(RSTP)模式
Switch(config)#spanning-tree vlan 1 priority 4096 //将 vlan1 的生成树优先级设置为0
Switch(config)#int f0/1 //进入终端设备接口
Switch(config-if)#spanning-tree portfast //加速终端设备的接入速度并避免不必要的网络中断
3,switch3
Switch>enable
Switch#config t //进入配置模式
Switch(config)#int range f0/1,f0/2 //进入1,2号端口
Switch(config-if-range)#switchport mode trunk //设置为trunk口
Switch(config-if-range)#switchport trunk allowed vlan all //允许所有vlan通过
Switch(config-if-range)#exit //退出端口
Switch(config)#spanning-tree mode rapid-pvst //开启(RSTP)模式
四,实验结果
配置好了后,发现阻塞端口(橙色)改变了位置,那是因为我们配置的时候switch0的优先级设置最高(0),switch2的优先级其次(4096),switch3的优先级没有设置(默认32768),所以阻塞了switch3上面的端口。
此时再用 PC0 ping通 PC1后,断开非阻塞的链路
发现只有一次丢包,便马上恢复了正常文章来源:https://www.toymoban.com/news/detail-821694.html
文章来源地址https://www.toymoban.com/news/detail-821694.html
到了这里,关于思科交换机开启RSTP的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!