以太网通道
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
以太网通道(EthernetChannel)(端口汇聚)
一、基本定义
将两台设备之间的多个物理以太网接口进行逻辑绑定,形成一条虚拟链路,以便增加带
宽。实现负载均衡、主备备份等的一种链路技术,必须是双数链路.
以太网通道必须遵循的一些规则
●参与捆绑的端口必须都处于同一个VLAN。
●如果端口配置的是中继模式,那么,应该在链路两端将通道中的所有端口配置成相同的中继模式。
●所有参与捆绑的端口的物理参数设置必须相同。应该有同样的速度和全双工或者半双工模式设置。也就是说,参与捆绑的链路,速率必须相同。
二、配置
注意事项:
Speed Duplex 要一致
相关特性要一致
具体配置:
配置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#Show etherchannel 1 summary
配置以太网通道负载均衡
Switch(config)#port-channel load-balance dst-mac
Switch#show etherchannel load-balance
Destination MAC address
自动协商:
Pagp:思科私有端口聚合控制协议,desirable/auto
Lacp 802.3ad:国际标准链路聚合控制协议,active/passive