以太網通道
以太網通道,通常稱之為以太網鏈路捆綁,或者叫鏈路匯聚、鏈路聚合;
有如下作用:
將多個類似的接口,捆綁成一個邏輯接口,從而增加設備之間的傳輸帶寬、增加設備之間的連接可靠性,而且可以在設備之間形成鏈路備份,還可以實現數據轉發的負載均衡。
實驗拓撲圖:
由於STP(生成樹協議)的作用,多層交換機1的f0/11和f0/12處於block(阻塞)狀態,進行如下操作:
@交換機1:
Switch>enable
Switch#config t
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#hostname SW1
SW1(config)#line con 0
SW1(config-line)#exec
SW1(config-line)#exec-timeout 0
SW1(config-line)#exit
SW1(config)#no ip domain lookup
SW1(config)#interface range f0/10-f0/12
SW1(config-if-range)#channel-group 1 mode on
SW1(config-if-range)#
Creating a port-channel interface Port-channel 1
%LINK-5-CHANGED: Interface Port-channel 1, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Port-channel 1, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/10, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/10, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/11, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/11, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/12, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/12, changed state to up
SW1(config-if-range)#exit
SW1(config)#do show ip interface brief
……
@可見到如下一行,表示以太網通道組建立成功
Port-channel 1 unassigned YES unset up up
@可對以太網通道組進行相關錯作
SW1(config)#interface port-channel 1
SW1(config-if)#switchport trunk encapsulatio dot1q
SW1(config-if)#switchport mode trunk
SW1(config-if)#end
@對交換機2進行類似操作即可實現上文拓撲圖的功能。
註意:
可以將多個2層鏈路捆綁在一起;
可以將多個3層鏈路捆綁在一起。
以太網通道