实验一 交换下的冗余链路设计

实验1交换下的冗余链路设计
实验要求:
1.用4根交叉线将S1的F0/21-F0/24端口分别与S2的F0/21-F0/24端口相连。
2.PC11连接S1的F0/1,PC21连接S1的F0/11;
PC12连接S2的F0/1,PC22连接S2的F0/11。
3.在S1、S2上创建端口通道1和2,将F0/21-22分配到port-channel 1中,将F0/23-24分配到port-channel2中.
4.在S1、S2上划分VLAN10,VLAN20,将F0/1-10划分到VLAN10中,将F0/11-20划分到VLAN20中
5.PC11的IP地址为:192.x.10.11/24,PC12的IP地址为:192.x.10.12/24;
PC21的IP地址为:192.x.20.21/24,PC22的IP地址为:192.x.20.22/24;
其中X为实验学生的学号后三位。(如某同学学号为:'1314080903101,x=101)。
6.测试PC11到PC12,PC21到PC22的连通性。
7.查看生成树的状态,观察根网桥的选举方法及端口状态;
8.将F0/21-F0/22端口设置为关闭(shutdown),观察交换机端口状态变化。

将F0将F0/23-24分配到port-channel2中./23-24分配到port-channel2中.
Switch(config)#int port-channel 1
Switch(config-if)#switchport mode trunk
Switch(config-if)#exit
Switch(config)#int range f0/21-22
Switch(config-if-range)#channel-group 1 mode on
Switch(config-if-range)#end

Switch(config)#int port-channel 2
Switch(config-if)#switchport mode trunk
Switch(config-if)#exit
Switch(config)#int range f0/23-24
Switch(config-if-range)#channel-group 2 mode on
Switch(config-if-range)#end

划分vlan
Switch(config)#vlan 30
Switch(config-vlan)#exit
Switch(config)#int range f0/1-10
Switch(config-if-range)#switchport access vlan 30
Switch(config-if-range)#end
show vlan id 30

实验一 交换下的冗余链路设计_第1张图片

将F0/21-F0/22端口设置为关闭(shutdown),观察交换机端口F0/23-F0/24启用

你可能感兴趣的:(实验一 交换下的冗余链路设计)