cisco 交换机 etherchannel 配置端口聚合-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 5771
  • 博文数量: 1
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 10
  • 用 户 组: 普通用户
  • 注册时间: 2018-04-11 15:08
文章分类

(1)

  • (1)
文章存档

(1)

我的朋友
最近访客
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: 系统运维

2018-04-11 15:14:52

原文地址: 作者:

etherchannel 配置端口聚合  

1. 能够将多个物理端口绑定为一个逻辑端口,能充分利用现有端口来增加带宽。

2. cisco交换机最多允许绑定8个端口。

    如果是100mbps端口,汇聚后可达800mbit/s

    如果是1000mbps端口,汇聚后可达8gbit/s

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

4. cisco的交换机不仅可以支持第二层eherchannel,还可以支持第三层etherchannel

5. 一个etherchannel内所有的端口都必须具有相同的速率和双工模式。lacp只能是全双工。

 6、二层接口和三层接口的区别:

     二层接口不能配置ip地址,不能宣告进路由协议,只能对二层以太网帧进行转发。

     三层接口可以配置ip地址,可运行路由协议,能接收ip包并且转发。

 7etherchannel的模式:

     可以直接将物理端口绑定,也可以让两台交换机之间通过协议进行协商,来形成channel通道。

on:强行起etherchannel

sw1(config)#int range f0/8 ,f0/9

sw1(config-if-range)#channel-group 1 mode on

(将这两个接口绑定为一组并指定on模式  组号本地有效)

sw1(config)#interface  port-channel  1

sw1(config-if)#switchport mode trunk

 指定接口模式为trunk,如不指定,会自动继承物理接口的模式)

sw1#show etherchannel summary 

(可以看到绑定了多少接口)

sw1#show interface etherchannel

sw1(config)#no interface port-channel 1 

(拆除etherchannel

注意:强行起通道的话要在短期内在双方启用。否则可能环路。协商起链路则没有这问题,因为启用不起通道的话会down

8、端口聚合协议--port aggregation protocol (pagp)

cisco私有技术,该协议有两种模式:

auto:被动  只收不发

desirable:主动会发也会收协商消息

sw1(config)#int range f0/8 ,f0/9

sw1(config-if-range)#channel-group 1 mode desible 

sw1(config)#int range f0/8 ,f0/9

sw1(config-if-range)#channel-group 1 mode auto

sw1(config)#interface  port-channel  1

sw1(config-if)#switchport  mode  trunk

link aggregation control protocol (lacp) 链路聚合控制协议

802.3ad,业界标准

passvie相当于pagpauto  

active相当于pagpdesirable  又发又收协商消息

sw1(config)#int range f0/8 ,f0/9

sw1(config-if-range)#channel-group 1 mode passive

sw1(config)#int range f0/8 ,f0/9

sw1(config-if-range)#channel-group 1 mode active

sw1(config)#interface  port-channel  1

sw1(config-if)#switchport  mode  trunk

show etherchannel 1 summary

show etherchannel  summary  查看所有的group

还有一种好的办法是先对每个接口封装trunk,再划入channel-group中,channel-group接口会自动继承trunk

注:channel-group接口会自动继承第一个物理接口的接口配置模式,或最先配置的接口模式。

 

配置三层channel

所谓三层的channel其实就是将多个三层接口绑定。只能在三层交换机上配置。

3550这样的交换机上,所有接口默认都是二层接口。首先需要将交换机的的二层接口改为三层接口。可用以下命令实现:

3550(config)#interface  gigabitethernet 0/1

3550(config-if)#no  switchport

然后再绑定:

3550(config-if)#channel-group  1  mode  desirable

3550(config-if)#exit

将另一个端口也绑进来

3550(config)#interface  gigabitethernet 0/2

3550(config-if)#no  switchport

3550(config-if)#channel-group  1  mode  desirable

3550(config-if)#exit 

channel通道配上ip地址:

3550(config)#interface  port-channel  1

3550(config-if)#ip  address  100.1.1.1  255.255.255.0

当物理接口放进了逻辑接口,那物理接口的配置就忽略了,如ip地址。

配置etherchannel负载均衡

默认情况下是基于源mac地址的负载均衡

port-channel load-balance [dst-mac|src-mac]

show etherchannel load-balance

3560可以基于源目ip来做负载均衡

err-disable特性:

接口如果进入err-disable状态:有两种方法恢复

1、手动恢复

   shutdown、再no shutdown

2、自动恢复

   errdisable recovery cause {all|arp-inspection|bpduguard|link-flap} 指定原因

   errdisable recovery interval 30   指定自动恢复时间间隔

两台交换机之间是否形成etherchannel也可以用协议自动协商。目前有两个协商协议:pagplacp,前者是cisco专有的协议,而lacp是公共的标准。

 

lacp协商的规律

                on      active      passive

on           √            ×               ×

active       ×           √               √

passive   ×           √                ×

 

pagp协商的规律

               on      desirable     auto

on           √            ×                ×

desirable ×            √                √

auto         ×            √                ×

 

要想把接口配置为pagp desirable 模式使用命令:“channel-group 1 mode desirable”

要想把接口配置为pagp auto 模式使用命令:“channel-group 1 mode auto”

要想把接口配置为lacp active 模式使用命令:“channel-group 1 mode active”

要想把接口配置为lacp passive 模式使用命令:“channel-group 1 mode passive”

 

端口通道负载均衡  port-channel load-balance

sw1(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

 

 

sw1#show etherchannel summary 

flags:  d - down        p - in port-channel

        i - stand-alone s - suspended

        r - layer3      s - layer2

        u - in use

group port-channel  ports

----- ------------ -----------------------------------------------------------

1     po1(sd)     fa0/0(s)   fa0/1(s)  

 

 

sw1#show etherchannel load-balance 

po1 ---> source xor destination ip address

 

备注:

1、以太网通道最多可以捆绑8条物理链路

2、捆绑遵循以下规则:

       1)相同vlan

       2)端口中继模式

       3)相同speedduplex

阅读(2745) | 评论(0) | 转发(0) |
0

上一篇:没有了

下一篇:没有了

给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图