华为设备参考:
一,技术简介
网络设备的链路聚合技术(Link Aggregation)是一种将多个物理链路捆绑在一起,形成一个逻辑链路的技术。这样做可以增加带宽、提高可靠性和实现负载均衡。
二,实验目的
橙色的阻塞口变为非阻塞口,并且断掉交换机之间的任意一条线路,PC仍可通
三,配置命令
以下方案任选其一
方案一
静态链路聚合(Static EtherChannel)
Switch1
Switch#configure terminal
Switch(config)#int range f0/2,f0/3 进入接口范围
Switch(config-if-range)#channel-group 5 mode on 添加到编号5的通道中,模式为
on
Switch(config-if-range)#exit
Switch(config)#int port-channel 5 进入编号为5的端口通道
Switch(config-if)#description mygroup 为端口通道接口设置描述
Switch(config-if)#switchport mode trunk 将端口通道接口设置为trunk模式
Switch(config-if)#end
Switch#show running-config 显示当前的运行配置
Switch2
Switch#configure terminal
Switch(config)#int range f0/2-3
Switch(config-if-range)#channel-group 5 mode on
Switch(config-if-range)#exit
Switch(config)#int port-channel 5
Switch(config-if)#description mygroup
Switch(config-if)#switchport mode trunk
Switch(config-if)#end
Switch#show running-config
方案二
基于LACP(Link Aggregation Control Protocol)协议的动态链路聚合
Switch1
Switch#configure terminal
Switch(config)#int range f0/2-3 选择接口范围
f0/2
至f0/3
进行配置Switch(config-if-range)#channel-group 3 mode active 将接口加到组3,模式为
active
Switch(config-if-range)#exit
Switch(config)#int port-channel 3 进入端口通道接口3的配置模式
Switch(config-if)#description mygroup 为端口通道接口设置描述
Switch(config-if)#switchport mode trunk
Switch(config-if)#end
Switch#show running-config 显示当前交换机的运行配置
Switch2
Switch#configure terminal
Switch(config)#int range f0/2-3
Switch(config-if-range)#channel-group 3 mode active
Switch(config-if-range)#exit
Switch(config)#int port-channel 3
Switch(config-if)#description mygroup
Switch(config-if)#switchport mode trunk
Switch(config-if)#end
Switch#show running-config
四,配置结果
橙色的阻塞口变为非阻塞口,并且断掉交换机之间的任意一条线路,PC仍可通
测试一:两条链路,PC能通
测试二:断一条链路,PC能通
测试三:断另一条链路,PC能通