配置2层3层以太网通道

配置2层以太网通道
Switch(config)#interface fastEthernet 0/1
Switch(config-if)#switchport mode access
Switch(config-if)#switchport access vlan 2
Switch(config-if)#channel-group 5 mode ?
  active     Enable LACP unconditionally
  auto       Enable PAgP only if a PAgP device is detected
  desirable  Enable PAgP unconditionally
  on         Enable Etherchannel only
  passive    Enable LACP only if a LACP device is detected
Switch(config-if)#channel-group 5 mode auto
Switch#show run
配置3层以太网通道
在3750及以前系列中应该首先通过全局命令手动创建一个端口通道逻辑接口
然后使用channel-group 接口配置命令把逻辑接口添加到通道组中
 

Switch(config-if)#interface port-channel 15
Switch(config-if)#no switchport
Switch(config-if)#ip address 192.168.2.2 255.255.255.0
Switch(config-if)#end
Switch#
把物理接口添加到通道组中
Switch(config)#interface fastEthernet 0/3
Switch(config-if)#no ip address
Switch(config-if)#no switchport
Switch(config-if)#channel-group 15 mode active
Switch(config-if)#end
Switch#
 
配置4000及以后系列3层以太网通道
Switch(config)#interface fastEthernet 0/3
Switch(config-if)#no switchport
Switch(config-if)#no ip address
Switch(config-if)#channel-group 15 mode active
Switch(config-if)#end
 
检查以上设置
 
Switch#show etherchannel 15 detail
Switch#show etherchannel 15 port-channel
配置以太网通道负载均衡
Switch(config)#port-channel load-balance dst-mac
Switch#show etherchannel load-balance
Destination MAC address
 
 
 
 

你可能感兴趣的:(职场,路由,休闲,交换,以太网)