一、实验目的 对交换机进行快速生成树配置,达到在其中一条线路中断时,数据传输不中断的目的。 二、实验环境 Windows10操作系统下的Cirsco Packet Tracer 三、实验原理与步骤 1、连接设备——2台2960交换机,2台PC机,用直通线连接
两台交换机连接成功后,有一条线是不通的,指示灯为三绿一橘。 2、分别对PC1和PC2进行IP配置 PC1
PC2
3、进行后续实验
四、实验过程与分析 1、对交换机S1进行配置
此时交换机S1的快速生成树加载成功,S1上面的设置完成 命令如下: Switch>enable Switch#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Switch(config)#hostname S1 修改主机名称 S1(config)#interface fastEthernet 0/3 对0号槽位3号端口进行设置 S1(config-if)#switchport access vlan 2 直接强制创建vlan2并进行划分 % Access VLAN does not exist. Creating vlan 2 S1(config-if)#exit S1(config)#interface range fastEthernet 0/1-2 对0号槽位1号和2号端口进行批量设置 S1(config-if-range)#switchport mode trunk 为了让PC机能够互相连通,加入trunk模式 %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/2, changed state to down %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/2, changed state to up 因为是两条线批量设置,所以会出现4行信息 S1(config-if-range)#exit 退回全局配置模式 S1(config)#spanning-tree mode rapid-pvst 设置快速生成树 S1(config)# 快速生成树加载成功,S1设置完毕
2、对交换机S2进行配置
命令与S1相同,进行测试时,有一个信号灯是橘色的。 Switch>enable Switch#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Switch(config)#hostname S1 S2(config)#interface fastEthernet 0/3 S2(config-if)#switchport access vlan 2 % Access VLAN does not exist. Creating vlan 2 S2(config-if)#exit S2(config)#interface range fastEthernet 0/1-2 S2(config-if-range)#switchport mode trunk S2(config-if-range)#exit S2(config)#spanning-tree mode rapid-pvst
3、用PC1进行测试,命令提示符窗口输入命令“ping -t 192.168.1.3”
此时,数据无限弹出 4、制造一起网络断裂的情况 打开S1或者S2都行,命令行输入 Int fa 0/1 Shut
此时其中一条线路信号中断,提示灯变成红色,并且下面一条线路的橘色灯变成绿色。 命令如下: S2(config)#int fa 0/1 S2(config-if)#shut S2(config-if)# %LINK-5-CHANGED: Interface FastEthernet0/1, changed state to administratively down %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down
连接信息一直在刷屏,并没有中断,证明实验生效。