- 1、mode on 强行实行,不用协议
配置方法:Int range f0/1-8channel-group 1 mode onshow etherchannel summary 查看绑定了多少接口show interface ehterchannel
- 2、PAGP端口聚合协议(port Aggregation protocol)cisco私有
cisco私有,默认AUTO模式auto: 被动 只收不发Desirable:主动,
- 3、LACP链路聚合控制协议(link Aggregation control protocol)
IEEE802.ad,passive 被动,相当于autoActive 主动配置命令:接口下 channel-protocol [pagp|lacp]二层Etherchannel-----创建接口port-channel 1替换绑定的接口,二层影响到物理口三层Etherchannel-----在逻辑上配置不会影响到物理口,可基于源MAC或目标MAC做负载均衡。
- 配置二层channel
3550(config)#interface gigabitethernet 0/1--------------------------------------接口下3550(config-if)#switchport------------------------------------------------------------2层模式3550(config-if)#channel-group 1 mode desirable----------------------------模式为主动3550(config-if)#exit3550(config)#interface gigabitethernet 0/23550(config-if)#switchport3550(config-if)#channel-group 1 mode desirable3550(config-if)#exit3550(config)#interface port-channel 1------------------------------------------进入创建接口3550(config-if)#switchport mode trunk-----------------------------------------trunk模式show etherchannel 1 summaryshow etherchannel summary 查看所有的group
- 配置三层channel
3550(config)#interface gigabitethernet 0/1-----------------------------------------接口下3550(config-if)#no switchport----------------------------------------------------------3层模式3550(config-if)#channel-group 1 mode desirable--------------------------------主动模式3550(config-if)#exit3550(config)#interface gigabitethernet 0/23550(config-if)#no switchport3550(config-if)#channel-group 1 mode desirable3550(config-if)#exit3550(config)#interface port-channel 1------------------------------------------------进入创建接口3550(config-if)#ip address 100.1.1.1 255.255.255.0-------------------------------配ip还有一种好的办法是先对每个接口封装trunk,再划入channel-group中,channel-group接口会自动继承trunk
- 配置etherchannel负载均衡
port-channel load-balance [dst-mac|src-mac]show etherchannel load-balance
Ether channel 学习笔记
原创
©著作权归作者所有:来自51CTO博客作者q1p1p1的原创作品,谢绝转载,否则将追究法律责任
Ether channel (以太网通道)Link aggregation 链路聚合
作用:增加带宽, ( CISCO最多可以将8个口绑在一起)
将多根物理链路,捆绑成逻辑链路。实现多根链路上的负载均衡,及冗余等特性。可以吧多根物理链路看成逻辑接口。
三种实现方法:
下一篇:网关冗余学习笔记
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
HarmonyOS NEXT 学习笔记
鸿蒙os 页面一键置灰
页面效果 API -
CCNP(BCMSN)实验:配置Ether channel(绑定3层通道)
配置Ether channel(绑定3层通道)
配置Ether channe3层 -
CCNP(BCMSN)实验:配置Ether channel(2层绑定通道)
配置Ether channel(配置2层绑定通道)
配置Ether channel2层 -
go语言学习笔记11 channel通道
channel例子
go channel -
Golang 入门笔记 - Channel
言via:https://medium.com/technofunnel/understanding...
多线程 编程语言 go java golang