EtherChannel基本配置
EtherChannel(PAgP、LACP)基本配置--端口聚合--(转)

EtherChannel(PAgP、LACP)基本配置--端⼝聚合--(转)EtherChannelEtherChannel(以太通道)也叫端⼝聚合或链路聚合,特别提⼀下。
建议我们在使⽤中,物理链路的汇聚,我们可以叫链路(端⼝)汇聚或链路(端⼝)聚合。
⽽VLAN的中继聚合,我们叫vlan聚合或VLAN汇聚,或直接叫trunk! 很容易搞混哦!是由Cisco研发的,应⽤于交换机之间的多链路捆绑技术。
它的基本原理是:将两个设备间多条相同特性的快速以太或千兆位以太物理链路捆绑在⼀起组成⼀条逻辑链路,从⽽达到带宽倍增的⽬的。
除了增加带宽外,EtherChannel还可以在多条链路上均衡分配流量,起到负载分担的作⽤;当⼀条或多条链路故障时,只要还有链路正常,流量将转移到其它的链路上,整个过程在⼏毫秒内完成,从⽽起到冗余的作⽤,增强了⽹络的稳定性和安全性。
在EtherChannel中,负载在各个链路上的分布可以根据源IP地址、⽬的IP地址、源MAC地址、⽬的MAC地址、源IP地址和⽬的IP地址组合,以及源MAC地址和⽬的MAC地址组合等来进⾏分布。
两台交换机之间是否形成EtherChannel也可以⽤协议⾃动协商。
⽬前有两个协商协议:PAgP和LACP,PAgP(端⼝汇聚协议 Port Aggregation Protocol)是Cisco私有的协议,⽽LACP(链路汇聚控制协议 Link Aggregation Control Protocol)是基于IEEE 802.3ad的国际标准。
能形成EtherChannel的模式总结:EtherChannel命令组合:如果想把端⼝配置为on:sw1(config-if-range)#channel-group 1 mode on如果想把端⼝配置为PAgP的desirable:sw1(config-if-range)#channel-protocol pagpsw1(config-if-range)#channel-group 1 mode desirable如果想把端⼝配置为PAgP的auto:sw1(config-if-range)#channel-protocol pagpsw1(config-if-range)#channel-group 1 mode auto如果想把端⼝配置为LACP的active:sw1(config-if-range)#channel-protocol lacpsw1(config-if-range)#channel-group 1 mode active如果想把端⼝配置为LACP的passive:sw1(config-if-range)#channel-protocol lacpsw1(config-if-range)#channel-group 1 mode passiveEtherChannel说明:①Cisco最多允许EtherChannel绑定8个端⼝;1>如果是快速以太⽹,总带宽可达1600Mbit/s;2>如果是Gbit以太⽹,总带宽可达16Gbit/s。
二层的EtherChannel和三层的EtherChannel

Switch(config-if)#switchport mode trunk
三层EtherChannel配置:
interface range FastEthernet0/1 – 3
shutdown
注意事项:
3550上可能会出Command rejected(Packet Tracer5.3也是如此)要先封装协议,再起trunk。
Switch(config)#int f0/5
Switch(config-if)#switchport mode trunk
Command rejected: An interface whose trunk encapsulation is “Auto” can not be configured to “trunk” mode.
请注意甄别内容中的联系方式诱导购买等信息谨防诈骗
二层的EtherChannel和三层的EtherChannel
二层EtherChannel配置:
Switch(config)#int range f0/1 – 2
Switch(config-if-range)#channel-group 1 mode active
no shutdown
注意事项:
shutdown 可以不用,但会弹出很多接口信息
Packet Tracer 5.3做实验时,range可能配不了channel-group单个接口进入配置即可。
删掉EtherChannel
no int po 1
default f0/1 – 3
Switch(ቤተ መጻሕፍቲ ባይዱonfig)#int port-channel 1
教你配置EtherChannel

配置EtherChannelCatalyst 2950 SwitchCat2950#Cat2950#conf tEnter configuration commands, one per line. End with CNTL/Z.!-- The VLAN Trunk Protocol (VTP) mode is set to server,!-- and the VTP domain name to is set to cisco.Cat2950(config)#vtp mode serverSetting device to VTP SERVER modeCat2950(config)#vtp domain ciscoChanging VTP domain name from VitalCom to cisco!-- Created two VLANs: VLAN10 and VLAN20.Cat2950(config)#vlan 10Cat2950(config-vlan)#exitCat2950(config)#vlan 20Cat2950(config-vlan)#exit!-- Configured ports Fa0/5 through Fa0/14 in VLAN10,!-- and ports fa0/15 through Fa0/26 in VLAN20.Cat2950(config)#int range fa0/5 - 14Cat2950(config-if-range)#switchport access vlan 10Cat2950(config-if-range)#exitCat2950(config)#int range fa0/15 - 26Cat2950(config-if-range)#switchport access vlan 20Cat2950(config-if-range)#^ZCat2950#00:32:39: %SYS-5-CONFIG_I: Configured from console by console!-- Configured the management interface so that the switch!-- can be accessed remotely by using Telnet.Cat2950#conf tCat2950(config)#int vlan 10Cat2950(config-if)#ip address 10.10.10.10 255.255.255.0Cat2950(config-if)#no shutdown00:24:07: %LINK-3-UPDOWN: Interface Vlan10, changed state to upCat2950(config-if)#^Z00:24:12: %SYS-5-CONFIG_I: Configured from console by consoleCat2950#conf tEnter configuration commands, one per line. End with CNTL/Z.!-- Configured the default-gateway, which is the IP address of the sub-interface!-- on the router for VLAN 10, so that the switch can be accessed from any VLAN.Cat2950(config)#ip default-gateway 10.10.10.1!-- Configured a logical channel interface.Cat2950(config)#int port-channel 1Cat2950(config-if)#exit!-- Ports are assigned to the logical channel interface to form an EtherChannel.!-- Note: The channel mode on the switch is set to on because the Cisco 7200!-- router on the other end does not support Port Aggregation Protocol(PAgP).Cat2950(config)#int fa0/2Cat2950(config-if)#channel-group 1 mode onCat2950(config-if)#exitCat2950(config)#00:25:38: %LINK-3-UPDOWN: Interface Port-channel1, changed state to up00:25:39: %LINEPROTO-5-UPDOWN: Line protocol on Interface Port-channel1, changed state to upCat2950(config)#int fa0/3Cat2950(config-if)#channel-group 1 mode onCat2950(config-if)#exit!-- To configure trunking over EtherChannel, trunking!-- is enabled over the logical channel interface.Cat2950(config)#int port-channel 1Cat2950(config-if)#switchport mode trunkCat2950(config-if)#!-- Configured VLAN10 as the Native VLAN for untagged traffic.Cat2950(config-if)#switchport trunk native vlan 10Cat2950(config-if)#^Z00:24:12: %SYS-5-CONFIG_I: Configured from console by consoleCat2950#Cisco 7200 RouterCisco7200#Cisco7200#conf tEnter configuration commands, one per line. End with CNTL/Z.!-- Created a logical channel interface to form an EtherChannel.Cisco7200(config)#int port-channel 1Cisco7200(config-if)#exit!-- The ports fa3/0 and fa4/0 are configured as members of the!-- logical channel to form an EtherChannel group.Cisco7200(config)#int fa3/0Cisco7200(config-if)#channel-group 1FastEthernet3/0 added as member-1 to port-channel1Cisco7200(config-if)#exitCisco7200(config)#Cisco7200(config)#int fa4/0Cisco7200(config-if)#channel-group 1FastEthernet4/0 added as member-2 to port-channel1Cisco7200(config-if)#exit!-- Configured sub-interfaces over port-channel for VLAN10 and VLAN20 to configure !-- trunking over EtherChannel. The IP address is assigned to InterVLAN routing.!-- Configured VLAN10 as the Native VLAN for untagged traffic.Cisco7200(config)#int port-channel 1.10Cisco7200(config-subif)#encapsulation dot1Q 10 nativeCisco7200(config-subif)#ip address 10.10.10.1 255.255.255.0Cisco7200(config-subif)#exitCisco7200(config)#int port-channel 1.20Cisco7200(config-subif)#encapsulation dot1Q 20Cisco7200(config-subif)#ip address 10.10.11.1 255.255.255.0Cisco7200(config-subif)#exitCisco7200(config)#exitCisco7200#EtherChanneletherchannel特性在switch到switch、switch到router之间提供冗余的、高速的连接方式,简单说就是将两个设备间多条FE或GE物理链路捆在一起组成一条设备间逻辑链路,从而达到增加带宽,提供冗余的目的。
实验2.5 Etherchannel配置

实验2.5 EtherChannel的配置1.实验目的通过实验可以掌握:(1)EtherChannel的工作原理(2)EtherChannel的配置2.实验拓扑EtherChannel配置实验拓扑如图2-1所示。
图2-1 EtherChannel配置实验拓扑3.实验步骤构成EtherChannel的端口必须具有相同的特性:Trunking的状态、Trunk的封装方式、双工、速率及所属的VLAN等。
配置EtherChannel有手动配置和自动配置(PAGP或者LACP)两种方法。
手动配置就是管理员指明哪些接口形成EtherChannel;自动配置就是让EtherChannel协商协议自动协商EtherChannel的建立,协商的协议有PAGP或者LACP两种。
(1)手动配置EtherChannelS1(config)#int f0/13S1(config-if)#shutdown//关闭不必要的接口,否则会影响测试S1(config)#int port-channel ?<1-48> Port-channel interface numberS1(config)#int port-channel 1//创建以太通道,需指定一个唯一的通道组号,组号的范围是1~48的正整数。
要取消EtherChannel时用“no interface port-channel 1”S1(config)#int range f0/14-15S1(config-if-range)#channel-group 1 mode ?active Enable LACP unconditionallyauto Enable PAgP only if a PAgP device is detecteddesirable Enable PAgP unconditionallyon Enable Etherchannel onlypassive Enable LACP only if a LACP device is detectedS1(config-if-range)#channel-group 1 mode on//将物理接口指定到已创建的通道中S1(config-if-range)#switchport trunk encapsulation dot1qS1(config-if-range)#switchport mode trunk//配置通道中的物理接口的属性,这里是配置trunkS1(config)#port-channel load-balance ?dst-ip Dst IP Addrdst-mac Dst Mac Addrsrc-dst-ip Src XOR Dst IP Addrsrc-dst-mac Src XOR Dst Mac Addrsrc-ip Src IP Addrsrc-mac Src Mac AddrS1(config)#port-channel load-balance dst-ip//配置EtherChannel的负载平衡方式S2(config)#int port-channel 2//链路两端的channel-group是可以不一样的,这个百年好只是本地有效。
AIXEtherchannel配置

Etherchannel介绍在AIX操作系统中,用户可以配置多个EtherChannel(网卡绑定)。
在AIX 5.2之前,我们要么只能选择active/active EtherChannel模式,要么,只能选择active/standby EtherChannel模式的绑定网卡。
所以,AIX 5.2中引入了新的网卡后备模式,用户可以为整个EtherChannel指定一块备份网卡,当整个EtherChannel失效时,这块网卡会自动顶替EtherChannel的功能。
这与AIX 5.2之前的EtherChannel网卡备份模式有很大区别,因此,在5.2以后可以出现更为复杂的复合网卡绑定模式。
一个EtherChannel中可以有2到8块网卡,一个AIX操作系统中可以配置多个EtherChannel。
但要记住每个EtherChannel都是一个新的以太网接口,用户也许需要通过no命令调整ifsize参数的值来保证以太网卡和EtherChannel的总数不超过ifsize,ifsize的默认值是8。
您可以使用任何AIX系统支持的网卡来组建EtherChannel。
但EtherChannel 的同一个通道成员网卡必须连接到支持EtherChannel的交换机上,备用通道可以接入到另外一个交换机,用于主通道的失败接管。
EtherChannel的所有成员网卡都应该设置成同样的速度和工作模式,如1000兆全双工。
要用作EtherChannel成员的网卡不能配置IP地址,如果已经配置了,必须要在开始配置EtherChannel前删除这些配置。
在Aix5.2以后,我们看看三种典型的配置方式1、双通道或者多通道的共同active模式,这个模式下,所有的网卡都处于active状态,也就是每个网卡都处于工作状态,他们共有一个IP地址与MAC地址,但是,所有网卡的目标必须在同一个交换机上,并且交换机的对应端口也要绑定。
这样做最大的好处就是,当其中一个网卡失效,或者一根网线失效的时候,不影响整个网络的工作,只有当所有的网卡通道失效的时候,网络才失效。
5.13 L2 Etherchannel基本配置[共4页]
![5.13 L2 Etherchannel基本配置[共4页]](https://img.taocdn.com/s3/m/41df42122cc58bd63086bd8b.png)
实验原理: 1.以太通道概述 Etherchannel(以太通道)技术是运行在局域网内部用于将多根物理链路捆绑在 一起的技术,可以有效提高链路带宽和增强网络冗余性。以太通道技术分为 L2 和 L3 两种,L2 一般在交换技术下执行,L3 在路由环境下执行。 2.以太通道协商 以太通道的建立可以直接通过强制方式,在交换机之间直接启用,也可以通过 动态协商协议如 PAGP 或 LACP 进行协商建立。PAGP 协议是思科私有协议,采用 Desirable 和 Auto 模式进行组合协商;而 LACP 是业界标准协议 IEEE 802.3ad,采 用 Active 和 Passive 模式进行组合协商。协商结果与 DTP 类似。
179
【以太通道】 以太通道技术分 为 2 层和 3 层以太 通道。2 层以太通 道 无 法 配 置 IP 地 址,3 层以太通道 可以。
实验步骤: 1.依据图中拓扑,在 SW1 和 SW2 上部署 L2 Etherchannel,实现链路捆绑并 提供链路带宽,可以通过 3 种方式部署,具体如下。 ①强制方式:直接绑定,无需任何协商。
5.13 L2 Etherchannel 基本配置
实验目的: 1.掌握 L2 Etherchannel 的基本配置。 2.理解 Etherchannel 的协商协议。
实ቤተ መጻሕፍቲ ባይዱ拓扑:
5.13 L2 Etherchannel基本配置
实验随手记:
配置三层EtherChanne

配置三层EtherChannel若欲在三层设备(如三层交换机)之间实现高速连接,可以采用三层EtherChannel方式,从而避免由路由连接而产生的瓶颈。
1.创建Port-Channel逻辑接口当将IP地址从物理接口移动至EtherChannel时,必须先从物理接口中删除该IP地址。
第一步:进入全局配置模式。
Switch# configure terminal第二步:创建Port-Channel接口。
port_channel_number取值范围为1~48。
Switch(config)# interface port-channel port_channel_number第三步:将接口置于三层模式。
Switch(config-if)# no switchport第四步:为该EtherChannel指定IP地址和子网掩码。
Switch(config-if)# ip address ip_address mask第五步:退出配置模式。
Switch(config-if)# end第六步:校验配置。
Switch# show running-config interface port-channel port_channel_number2.配置为三层EtherChannel第一步:进入全局配置模式。
Switch# configure terminal第二步:选择欲配置的物理接口。
Switch(config)# interface {fastethernet | gigabitethernet} slot/port第三步:创建三层路由端口。
Switch(config-if)# no switchport第四步:确保该物理接口没有指定IP地址。
Switch(config-if)# no ip address第五步:将接口配置至port-channel,并指定PAgP或LACP模式。
Switch(config-if)# channel-group channel-group-number mode {auto [non-silent] | desirable [non-silent] | on} | {active | passive}第六步:退出配置模式。
思科Etherchannel链路聚合原理与配置方法详解

思科Etherchannel链路聚合原理与配置⽅法详解本⽂讲述了思科Etherchannel链路聚合原理与配置⽅法。
分享给⼤家供⼤家参考,具体如下:Etherchannel(以太⽹信道)将多个(2-8,2-16)接⼝,逻辑的整合为⼀个接⼝,来转发流量,减少了阻塞端⼝的数量,提⾼了链路带宽,增加了⽹络的稳定性1.1 封装模式1.1.1 PAGP端⼝聚合协议,cisco私有,通过发送慢速hello(30s),协商成为echerchannel,最⼤⽀持在8条链路的协商,链路数量必须为2^x,2 4 8desirable:主动模式auto:auto模式包含了silent模式(安静模式),可以进⾏etherchannel协商1.1.2 LACP链路聚合控制协议(仅⽀持全双⼯接⼝),公有协议。
发送LACPDU进⾏以太信道的协商,最⼤⽀持在16条链路上进⾏以太信道协商,2 4 8 16,默认仅仅使⽤8条。
当使⽤16条链路进⾏协商,选择8条为主链路,其余8条为备份链路。
选择⽅法:1.较⼩优先级(优先级默认32768),2.最⼩的PID模式:active(主动)passive(被动)1.1.3 on模式⼿⼯模式,on模式不能与任何动态PAgP或LAGP建⽴ethechannel。
被动与被动不能形成.1.2 Ethechannel配置1.2.1 配置指南1.通道内所有端⼝必须⽀持ethechannel;同时注意必须连接相同设备(同⼀设备,同本地类型相同)2.这些物理接⼝必须具有相同的速率和双⼯模式(LACP必须为全双⼯)3.通道内不得使⽤span;若为三层通道,IP地址必须配置到逻辑接⼝上(channel-group)4.三层通道内的所有物理接⼝必须为三层接⼝,然后再channel⼝上配置IP地址5.若为⼆层通道,这些物理接⼝应该属于同⼀vlan或者均为trunk⼲道,且封装的类型⼀致,vlan的允许列表必须⼀致6.通道的属性改变将同步到物理接⼝,反之也可;若物理没有全部down,通道依然正常同时配置所有物理接⼝,或者之恶配置channel⼝,均可修改接⼝的属性1.2.2 ⼆层ethechannel配置SW1(config)#int range e0/1-2SW1(config-if-range)#channel-group 1 mode onSW1(config-if-range)#interface port-channel 1 #对逻辑接⼝进⾏管理SW1(config-if)#switchport trunk encapsulation dot1q #修改trunk封装模式SW1(config-if)#switchport mode trunk1.2.3三层ethechannel配置在没有三层ethechannel时,三层链路依然可以使⽤负载均衡来进⾏通信;建⽴三层ethechannel后,可以节省IP地址⽹段,间路路由条⽬的编辑(⼀般配置在核⼼层)SW1(config)#int range e0/1-2SW1(config-if-range)#no switchportSW1(config-if-range)#channel-group 1 mode onSW1(config-if-range)#exitSW1(config)#int port-channel 1 #在通道接⼝上配置IP地址SW1(config-if)#ip add 192.168.1.1 255.255.255.05.3 配置channel时的注意点⼆层通道基于负载分担转发流量,三层通道基于负载均衡转发流量负载均衡:访问同⼀⽬标时,将流量按为单位分割后,沿多条路径同时传输负载分担:访问不同⽬标时基于不同链路,或者不同元在访问⽬标时基于不同链路基于不同源MAC(src-mac)为默认规则。
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
EtherChannel(PAgP、LACP)基本配置
EtherChannel
EtherChannel(以太通道)是由Cisco研发的,应用于交换机之间的多链路捆绑技术。
它的基本原理是:将两个设备间多条相同特性的快速以太或千兆位以太物理链路捆绑在一起组成一条逻辑链路,从而达到带宽倍增的目的。
除了增加带宽外,EtherChannel还可以在多条链路上均衡分配流量,起到负载分担的作用;当一条或多条链路故障时,只要还有链路正常,流量将转移到其它的链路上,整个过程在几毫秒内完成,从而起到冗余的作用,增强了网络的稳定性和安全性。
在EtherChannel中,负载在各个链路上的分布可以根据源IP地址、目的IP 地址、源MAC地址、目的MAC地址、源IP地址和目的IP地址组合,以及源MAC地址和目的MAC地址组合等来进行分布。
两台交换机之间是否形成EtherChannel也可以用协议自动协商。
目前有两个协商协议:PAgP和LACP,PAgP(端口汇聚协议Port Aggregation Protocol)是Cisco私有的协议,而LACP(链路汇聚控制协议Link Aggregation Control Protocol)是基于IEEE 802.3ad的国际标准。
能形成EtherChannel的模式总结:
EtherChannel命令组合:
如果想把端口配置为on:
sw1(config-if-range)#channel-group 1 mode on
如果想把端口配置为PAgP的desirable:
sw1(config-if-range)#channel-protocol pagp
sw1(config-if-range)#channel-group 1 mode desirable
如果想把端口配置为PAgP的auto:
sw1(config-if-range)#channel-protocol pagp
sw1(config-if-range)#channel-group 1 mode auto
如果想把端口配置为LACP的active:
sw1(config-if-range)#channel-protocol lacp
sw1(config-if-range)#channel-group 1 mode active
如果想把端口配置为LACP的passive:
sw1(config-if-range)#channel-protocol lacp
sw1(config-if-range)#channel-group 1 mode passive
EtherChannel说明:
①Cisco最多允许EtherChannel绑定8个端口;
1>如果是快速以太网,总带宽可达1600Mbit/s;
2>如果是Gbit以太网,总带宽可达16Gbit/s。
②EtherChannel不支持10M端口;
③EtherChannel编号只在本地有效,链路两端的编号可以不一样;
④EtherChannel默认使用PAgP协议;
⑤EtherChannel默认情况下是基于源MAC地址的负载平衡;
⑥一个EtherChannel内所有的端口都必须具有相同的端口速率和双工模式,LACP只能是全双工模式;
⑦channel-group接口会自动继承最小物理接口,或最先配置的接口模式;
⑧cisco的交换机不仅可以支持第二层EtherChannel,还可以支持第三层EtherChannel。
实验
命令:
sw1(config)#int port-channel 1 //创建以太通道,编号为1
sw1(config-if-range)#channel-group 1 mode on //将物理接口指定到已创建的通道中,模式为on
sw1(config)#port-channel load-balance dst-ip //配置以太通道的负载平衡方式,基于目的IP
说明:
①创建以太通道时要指定一个唯一的通道编号,编号范围是1-64的整数,这个编号只有本地有效,因此链路两端的编号可以不一样;
②以太通道的负载平衡方式有:dst-ip、dst-mac、src-dst-ip、src-dst-mac、src-ip、src-mac,默认情况下是基于源MAC地址的负载平衡。
sw1(config)#int port-channel 1
sw1(config)#int range f0/13 - 14
sw1(config-if-range)#switchport trunk encapsulation dot1q
sw1(config-if-range)#switchport mode trunk
sw1(config-if-range)#speed 100
sw1(config-if-range)#duplex full
sw1(config-if-range)#channel-group 1 mode on
sw1(config)#port-channel load-balance dst-ip
sw2(config)#int port-channel 1
sw2(config)#int range f0/13 - 14
sw2(config-if-range)#switchport trunk encapsulation dot1q
sw2(config-if-range)#switchport mode trunk
sw2(config-if-range)#speed 100
sw2(config-if-range)#duplex full
sw2(config-if-range)#channel-group 1 mode on
sw2(config)#port-channel load-balance dst-ip
特别说明:如果本试验中交换机sw2上接的是服务器,客户计算机接在sw1上,这时在交换机sw1上应该配置为基于src-ip的负载平衡方式,而在sw2上应该配置为基于dst-ip的负载平衡方式。
实验调试
sw1#show etherchannel summary //查看EtherChannel信息
sw1#show etherchannel load-balance //查看EtherChannel负载平衡方式
sw1#show etherchannel port-channel //查看指定的EtherChannel包含的接口
sw1#show etherchannel protocol //显示各个Channel-group使用的协商协议
接口如果进入err-disable状态有两种方法恢复:
①手动恢复:先shutdown,再no shutdown;
②自动恢复:errdisable recovery cause {all|arp-inspection|bpduguard|link-flap} 指定原因 errdisable recovery interval 30 指定自动恢复时间间隔。