Ethernet channel
一、        以太网通道
又称端口汇聚/链路汇聚,其作用将多余物理链路逻辑上绑定成一条虚拟的链路来使用,即:增大了带宽,又带了冗余。带宽(以太通道虚拟链路的带宽等于或近似于各物理链路带宽之和)。冗余(提供了物理,对STP是透明的)。
 
二、        以太通道的协议
1PAGP port aggregation protocol cisco私有)
最多支持8根物理链路的绑定,成为一个逻辑通道。PAGP是一个二层SNAP协议组播帧。目标地址01-00-0C-CC-CC-CC 思科私有协议PAGPDTPVTPCDP目标组播MAC地址一样。都在vlan1中发,DTP801.1Q trunk中,native vlan中传送。
       PAGP的操作模式:desirable:主动协商,发PAGP协议包。Auto:被动回应 On:强制形成以太通道,且不发包。Off:IOS缺省。
 
       2LACP link aggregation control protocol802.3ad
              LACP是国际标准,最多支持16条链路的绑定。但同时只能用8根。
              LACP的操作模式:active:主动协商,发PAGP协议包。passive:被动回应。
 
三、        配置以太通道
1、注意事项
       相同:duplexspeedvlantrunkaclqos
       不能:动态vlanspan目的端口、安全端口
       组号只在本地有作用,一边配置了通道,另一边没配,经过正常STP的收敛,端口可用。
2、二层以太网通道
       Switch(config)#int range f0/1 – 2
       Switch(config-if)#channel-group 1 mode active/auto/desirable/on/passive
              Switch(config)#int port-channel 1
       3、三层以太网通道
              Switch(config)#ip routing
              Switch(config)#int port-channel 1
              Switch(config-if)#no switchport
              Switch(config-if)#ip address 192.168.1.1 255.255.255.0
              Switch(config)#int range f0/1 – 2
              Switch(config-if-range)#no switchport
              Switch(config-if-range)#no ip address
              Switch(config-if-range)#channel-group 2 mode desirable
       4、查看
              Switch# show run int port-channel 1
              Switch# show run int f0/1
              Switch# show int f0/1 etherchannel
              Switch# show etherchannel summary
              Switch# show etherchannel counter
              Switch# show etherchannel load-balance
       5、负载均衡
              Switch(config)#port-channel load-balance ?
               dst-ip       Dst IP Addr
               dst-mac      Dst Mac Addr
  src-dst-ip   Src XOR Dst IP Addr
  src-dst-mac  Src XOR Dst Mac Addr
  src-ip       Src IP Addr
  src-mac      Src Mac Addr