思科交换机配置端口聚合

思科交换机配置端口聚合

Cisco Switch上的链路聚合
在网络交换机上执行链路聚合配置。
在Cisco Catalyst交换机型号2960上执行链路聚合配置。
在提示屏幕上,输入管理登录信息。
configure terminal命令用来进入配置模式。
Switch>
Switch> enable
Switch# configure terminal
创建新VLAN,选择标识号并添加简要说明。
Switch(config)# vlan 100
Switch(config-vlan)# name Server Vlan
Switch(config-vlan)# exit
在配置模式下,需要清除交换机端口的所有配置。
Switch(config)# default interface gigabitEthernet 0/11
Switch(config-if)# default interface gigabitEthernet 0/12
在配置模式下,将交换机端口添加到链路聚合组。
Switch(config)# interface gigabitethernet0/11
Switch(config-if)#     channel-group 1 mode active
Switch(config)# interface gigabitethernet0/12
Switch(config-if)# channel-group 1 mode active
Switch(config-if)# exit
在我们的示例中,交换机端口11和12被配置为链路聚合组1的成员。
要将链路聚合端口配置为VLAN成员,需要使用以下命令。
Switch(config)# interface Port-channel 1
Switch(config-if)#    switchport mode access
Switch(config-if)#    switchport access vlan 100
Switch(config-if)# exit
Switch(config)# exit


思科交接机:

!
interface Port-channel1
 switchport mode trunk
!
interface GigabitEthernet0/1
 switchport mode trunk
 channel-group 1 mode on
!
interface GigabitEthernet0/2
 switchport mode trunk
 channel-group 1 mode on
 exit

port-channel load-balance src-dst-ip

BackupSwitch(config-if)# channel-group 1 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

BackupSwitch(config-if)# channel-group 1 mode  on ?
  <cr>

思科交接机配置端口聚合(图1)


思科交接机配置端口聚合(图2)


端口聚合查看命令

#查看端口聚合信息,正常情况Port-channel显示是SU,如果显示SD就不正常

Switch#show etherchannel summary

1 Po1(SU) PAgP Fa0/23(P) Fa0/24(P)

2 Po2(SU) PAgP Fa0/21(P) Fa0/22(P)

#查看虚拟通道包含的接口

Switch#show etherchannel port-channel

#查看通道接口状况

Switch#show etherchannel load-balance

端口聚合,英文简称EtherChannel(以太通道)是由Cisco研发的,应用于交换机之间的多链路捆绑技术。它的基本原理是:

将两个设备间多条物理链路捆绑在一起组成一条逻辑链路,从而达到带宽倍增的目的(这条逻辑链路带宽相当于物理链路带宽之和)

除了增加带宽外,端口聚合还可以在多条链路上均衡分配流量,起到负载分担的作用;当一条或多条链路故障时,只要还有链路正常,

流量将转移到其它的链路上,整个过程在几毫秒内完成,从而起到冗余的作用,增强了网络的稳定性和安全性。

两台交换机之间是否形成EtherChannel也可以用协议自动协商。目前有两个协商协议:

PAgPLACPPAgP(端口汇聚协议 Port Aggregation Protocol)

Cisco私有的协议,而LACP(链路汇聚控制协议 Link Aggregation Control Protocol)是基于IEEE 802.3ad的国际标准,是一种实

现链路动态聚合的协议。


Switch(config-if-range)#channel-group 1 mode ?                   #通过此命令在交换机查看端口聚合可以使用的协议

  active   Enable LACP unconditionally                                       #主动发送LACP报文

  auto    Enable PAgP only if a PAgP device is detected               #被动发送PAgP报文

  desirable  Enable PAgP unconditionally                                   #主动发送PAgP报文

  on       Enable Etherchannel only                                           #手动设置,需要两边都设置成on

  passive  Enable LACP only if a LACP device is detected             #被动接收LACP报文

思科交接机配置端口聚合(图1)

端口聚合说明:
1、Cisco最多允许EtherChannel绑定8个端口;
 (1)、如果是百兆网络,总带宽可达1.6Gbit/s;
 (2)、如果是千兆网络,总带宽可达16Gbit/s。
2、EtherChannel不支持10M端口;
3、EtherChannel编号只在本地有效,链路两端的编号可以不一样;
4、EtherChannel默认使用PAgP协议;
5、EtherChannel默认情况下是基于源MAC地址的负载平衡;
6、一个EtherChannel内所有的端口都必须具有相同的端口速率和双工模式,LACP只能是全双工模式;
7、channel-group接口会自动继承最小物理接口,或最先配置的接口模式;
8、cisco的交换机不仅可以支持第二层EtherChannel,还可以支持第三层EtherChannel。


配置链路聚合负载均衡模式(可选配置)(全局配置模式)
       port-channel load-balance <load-balance-mode>
       聚合链路可以在不同成员端口上实现负载均衡,可以在全局配置模式下使用关键词 port-channel load-balance 来指定负载均衡的方式,一共可以选择以下5中负载分担方式 src-mac、dest-mac、src-ip、dest-ip、src-dst-ip、src-dst-mac ,之前已经介绍过了这里就不再赘述,通常默认的负载均衡方式是基于源MAC(src-mac)进行负载均衡,一般保持默认即可。

注:要恢复默认负载分担方式,可以在全局模式下使用命令no port-channel load-balance。



如果没有提前配置Port-channel接口,则会自动创建一个。

sw1(config-if)#interface GigabitEthernet0/3
sw1(config-if)#channel-group 3 mode active
Creating a port-channel interface Port-channel 3


链路聚合配置(端口聚合、链路聚合、LACP聚合)(列表、list、全)链路聚合list
http://www.zh-cjh.com/wenzhangguilei/963.html
文章归类、所有文章列表、LISTLIST
http://www.zh-cjh.com/wangzhangonggao/2195.html

1、本站资源长期持续更新。
2、本资源基本为原创,部分来源其他付费资源平台或互联网收集,如有侵权请联系及时处理。
3、本站大部分文章的截图来源实验测试环境,请不要在生产环境中随意模仿,以免带来灾难性后果。

转载请保留出处:  www.zh-cjh.com珠海陈坚浩博客 » 思科交换机配置端口聚合

作者: cjh


手机扫一扫,手机上查看此文章:

一切源于价值!

其他 模板文件不存在: ./template/plugins/comment/pc/index.htm

未雨绸缪、居安思危!

数据安全、有备无患!

注意操作、数据无价!

一切源于价值!