發布時間: 2017-06-16 14:44:51
教學樓和宿舍樓之間經常要進行數據的互訪,那么三層交換機之間的負載就比較高。如果中間線路的帶寬跟不上,就會造成通信的瓶頸。EtherChannel可以將中間的多條鏈路進行捆綁,那么帶寬=線路*每一條的帶寬。本來有多個接口,但是進行捆綁之后,多個接口就被當做一個接口進行對待。后續對f0/0和f0/1的配置就是對port-channel ID這個接口進行配置。
可以實現負載均衡(基于源、基于目的、基于源目),冗余(所有的線路都down了,接口才不能用)。有兩種協議幫助我們去部署EtherChannel,一個是思科的私有協議(PAgP),一個是IEEE 802.3ad的標準(LACP)。
on | Channel member without negotiation(no protocol) 不協商,強制性的去配置為PagP |
Desirable | Actively ask if the other side can/will 積極的去協商,主動去發送報文 |
Auto | Passively wait for other side to ask 被動,如果收到協商報文那么就啟動 |
Off | EtherChannel not configured on interface |
on | Desirable | Auto | Off | |
on | Channel | Channel | Channel | |
Desirable | Channel | Channel | Channel | |
Auto | Channel | Channel | ||
Off |
on | Channel member without negotiation(no protocol) 不協商,強制性的去配置為PagP |
Active | Actively ask if the other side can/will 積極的去協商,主動去發送報文 |
Passive | Passively wait for other side to ask 被動,如果收到協商報文那么就啟動 |
off | EtherChannel not configured on interface |
on | Active | Passive | Off | |
On | Channel | Channel | ||
Active | Channel | Channel | Channel | |
Passive | Channel | |||
Off |
---------------------選擇用于channel的端口
R1(config)#int range fastEthernet 0/1 -2
R1(config-if-range)#switchport
---------------------選擇PAgP或LACP
R1(config-if-range)#channel-protocol pagp/lacp
---------------------在接口上配置channel-group
---------------------設置channel-group ID,兩端的ID必須一致
---------------------根據特定的協議,選擇接口模式
R1(config-if-range)#channel-group 1 mode on
---------------------配置etherchannel邏輯接口
R2#show etherchannel summary
Group Port-channel Ports
-----+------------+-----------------------------------------------------------
1 Po1(SU) Fa0/1(P) Fa0/2(P)
R2(config)#int port-channel 1
R2(config-if)#switchport mode trunk
R2(config-if)#switchport trunk encapsulation dot1q
給vlan1配置IP地址,在查看trunk信息,發現了port-channel的接口
注意:
1、 port-channel接口一旦建立完成之后,就形成了一個邏輯的接口,后續針對該接口的配置在port-channel邏輯接口中完成
2、 較大支持8個端口做捆綁
3、 Port-channel接口不能成為SPAN的目的接口
4、 隸屬于同一個port-channel的物理接口需要有相同的如下配置
a) 相同的speed和duplex
b) 相同的接口模式(trunk、access)
c) 如果是trunk模式,那么native vlan及allowed vlan需相同
d) 如果是access模式,所屬的vlan需要相同
恢復交換機
R2(config)#no int port-channel 1
R2(config)#default interface f0/1
R2(config)#default interface f0/2
將接口設置為三層接口
R2(config)#int range f0/1 -2
R2(config-if-range)#no switchport
R2(config-if-range)#channel-group 1 mode on
R2#show etherchannel summary
--------二層配置
Int range f0/23 -24
Switchport
Channel-group 1 mode on
Int port-channel 1
Switchport trunk encapsulation dot1q
Switchport mode trunk
--------三層配置
Int range f0/23 -24
No Switchport
Channel-group 1 mode on
Int port-channel 1
Ip address 1.1.1.1 255.255.255.0
上一篇: NAC技術