etherchannel特性在switch到switch、switch到router之间提供冗余的、高速的连接方式,简单说就是将两个设备间多条FE或GE物理链路捆在一起组成一条设备间逻辑链路,从而达到增加带宽,提供冗余的目的。下面具体结合配置了解它的特点:
构成etherchannel的端口必须配置成相同的特性,如双工模式、速度、同为FE或GE端口、native VLAN,、VLAN range,、and trunking status and type.等
当etherchannel中某一条link failed时,etherchannel中其它link照常工作。
当配置layer 2端口作etherchannel时只要在成员端口配置模式下用channel-group n命令指定该端口要加入的channel-group组,这时switch会自动创建port-channel接口,而当配置layer 3端口作etherchannel时,还需现在全局配置模式下用 interface port-channel n 命令手工创建port-channel接口。
3550(config)#interface gigabitethernet 0/1
3550(config-if)#switchport
3550(config-if)#channel-group 1 mode desirable
3550(config-if)#exit
3550(config)#interface gigabitethernet 0/2
3550(config-if)#switchport
3550(config-if)#channel-group 1 mode desirable
3550(config-if)#exit
3550(config)#interface port-channel 1
3550(config-if)#switchport mode trunk
show etherchannel 1 summary
show etherchannel summary 查看所有的group
配置三层channel
3550(config)#interface gigabitethernet 0/1
3550(config-if)#no switchport
3550(config-if)#channel-group 1 mode desirable
3550(config-if)#exit
3550(config)#interface gigabitethernet 0/2
3550(config-if)#no switchport
3550(config-if)#channel-group 1 mode desirable
3550(config-if)#exit
3550(config)#interface port-channel 1
3550(config-if)#ip address 100.1.1.1 255.255.255.0
还有一种好的办法是先对每个接口封装trunk,再划入channel-group中,channel-group接口会自动继承trunk
配置etherchannel负载均衡
port-channel load-balance [dst-mac|src-mac]
show etherchannel load-balance
http://www.9ihlw.com