实验:掌握以太通道的应用
以太通道(Etherchannel)
1,作用:
将多个物理链路聚合为一个逻辑链路来增加中继速度.并可提供负载均衡及冗余.
2,聚合协议:
PAGP:端口聚合协议,CISCO私有,每组最多支持8条链路汇聚.
LACP:链路聚合控制协议,IEEE802.3ad定义,每组最多支持16条链路汇聚(但只有8条工作,其余备份)
3,以太通道的配置原则:
略
4,以太通道负载均衡的方式:
基于源IP,基于目的IP,基于源/目的IP
基于源MAC,基于目的MAC,基于源/目的MAC
基于源PORT,基于目的PORT,基于源/目的PORT
5,以太通道的配置:
创建以太通道组:
(config)#interface port-channel *
定义以太通道组的聚合协议
(config-if)#channel-protocol { pagp | lacp }
定义物理接口并将其划分到以太通道组中及模式
(config-if)#channel-group ** mode { on | auto | desirable | active | passive }
定义负载均衡方法:
(config)#port-channel load-balance **
查看通道接口配置信息:
#show running-config interface port-channel **
查看接口配置信息:
#show running-config interface **
查看配置后的通道信息:
#show etherchannel ** port-channel
核实PAGP和LACP
#show interface *** etherchannel
查看负载均衡方法:
#show etherchannel load-balance
实验拓扑:
我们先来查看一下生成树的状态:
好的,现在我们来做etherchannel
在sw1上:
Switch(config)#interface range fa0/1 - fa0/3
Switch(config-if-range)#channel-group 1 mode on
Switch(config)#inter port-channel 1
Switch(config-if)#channel-protocol pagp
Switch(config-if)#channel-group 1 mode on
在SW2上
Switch(config)#interface port-channel 1
Switch(config-if)#channel-protocol pagp
Switch(config-if)#channel-group 1 mode on
Switch(config-if)#interface range fa0/1 - fa0/3
Switch(config-if-range)#channel-group 1 mode on
etherchannel做好了,现在所有的端口状态会重新启动。
我们可以在看看SW2上的端口状态
那么现在的流量就是平衡的,我们也可以设置负载均衡