链路捆绑
1. 实验拓扑:
使用GNS3模拟器(版本 0.8.5)
2.实验需求:
1 把sw1的3个接口集合成一个接口
2 把sw2的3个接口集合成一个接口
3.配置脚本
给c1c2配IP
sw1#conf t
sw1(config)#no ip routing 关闭路由功能
ctri +c
sw1#
sw1#show ip int f1/10
代宽是100M 要把他集合成300M
sw1:上配置
sw1#conf t
sw1(config)#int range fa1/10 -12
sw1(config-if-range)#channel-group 1 mode on 集合成一个接口
sw1(config)#
sw2:上配置
sw2#conf t
sw2(config)#no ip routing
sw2(config)#int range fa1/10 - 12
sw2(config-if-range)#channel-group 1 mode on
sw2#
sw2#show ip int b
多出了这个接口
sw2#show int port-channel 1
代宽变成300M了
为什么要这个协议 因为有生成树协议默认只让一个接口通 其他接口都不通 所以要把他们做在一起提高代宽
原文:http://funinghua.blog.51cto.com/9125449/1581317