etherchannel

作者: 肉饼 | 来源:发表于2015-09-10 16:52 被阅读102次

    一、概念

    • 通过这个技术能够将多个物理端口绑定为一个逻辑端口

    • 通过多个端口绑定,能充分利用现有端口来增加带宽。

    • Cisco交换机最多允许绑定8个端口

    • 如果是快速以太网,总带宽可达1600Mbit/s

    • 如果是Gbit以太网,总带宽可达16Gbit/s

    • 绑定后的端口默认继承原来物理接口的配置模式

    二、协议/模式

    协议 类型 模式 状态
    PAgP 思科 desirable 主动
    auto 被动
    LACP 标准化 active 主动
    passive 被动
    On 不协商 直接

    三、L2 etherchannel配置

    1.配置etherchannel PAgP

    swi mode trunk #SW间两条链接设为trunk
    int range g0/1-2 #选取接口
    channel-protocol pagp #使用协议PAgP
    channel-group 1 mode desirable #编为Group 1,模式为主动

    2.配置etherchannel LACP

    swi mode trunk #SW间两条链接设为trunk
    int range g0/1-2 #选取接口
    channel-protocol lacp #使用协议LACP
    channel-group 1 mode active #编为Group 1,模式为主动

    3.调整etherchannel负载均衡

    配置了etherchannel之后只是逻辑上变成了一根线,传送数据时物理上还是用一根线,所以需要负载均衡,默认情况下是基于源MAC地址的负载均衡
    修改:port-channel load-balance [dst-mac|src-mac|dst-ip|src-ip]

    四、L3 etherchannel配置

    所谓三层的channel其实就是将多个三层接口绑定。只能在三层交换机上配置。
    在3550这样的交换机上,所有接口默认都是二层接口。首先需要将交换机的的二层接口改为三层接口。

    开启三层路由功能:
    ip routing
    
    将二层接口改成三层接口:
    interface  range f0/23 - 24
      no  switchport
      no  shut
    
    然后再绑定:
    interface  range f0/23 - 24
      channel-protocol pagp
      channel-group  1  mode  desirable
    
    给channel通道配上IP地址:
    interface  port-channel  1
      ip  address  100.1.1.1  255.255.255.0
    

    五、查看

    show ethe sum #查看etherchannel 汇总状态
    show etherchannel load-balance #查看负载配置

    除非注明,肉饼博客文章均为原创,转载请以链接形式标明本文地址   
    本文地址:http://roubin.me/post/etherchannel/

    相关文章

      网友评论

        本文标题:etherchannel

        本文链接:https://www.haomeiwen.com/subject/myspcttx.html