1. 程式人生 > >交換機埠聚合

交換機埠聚合

埠聚合:

    簡稱AP,又稱鏈路聚合,是指2臺交換機之間在物理上將多個埠連線起來,將多條鏈路聚合成一條邏輯鏈路,從而增大鏈路頻寬,解決交換機網路中因寬頻引起的網路瓶頸問題。;

    同時,多條物理鏈路之間能夠冗餘備份,其中任意一條鏈路斷開,不會影響其他鏈路的正常轉發資料,埠聚合遵循IEEE802.3ad協議。

              它可以把多個埠的頻寬疊加起來使用。

實驗:配置埠聚合

              只在兩臺交換機埠都配好以後,再將兩臺交換機連線起來;如果先連線再配置會造成廣播風暴,影響交換機的正常工作。

        實驗裝置:兩臺2960的交換機;

                        兩臺PC;

                        四根網線:直通線(2根),交叉線(2根)


    步驟1:交換機A的配置:                      

                        Switch>enable

                        Switch#vlan database

                        Switch(vlan)#vlan 10        建立VLAN10

                        Switch#configure terminal

                        Switch(config)#interface fastEthernet 0/1

                        Switch(config-if)#switchport access vlan 10        將0/1口放入VLAN10中

                        Switch(config-if)#exit

                        Switch(config)#interface port-channel 1        建立埠聚合鏈路1

                        Switch(config-if)#switchport mode trunk        定義埠聚合鏈路1的封裝模式為trunk

                        Switch(config-if)#switchport trunk encapsulation dot1q(該命令三層交換機封裝用,二層交換機不需要)

                        Switch(config-if)#no shutdown

                        Switch(config-if)#exit

                        Switch(config)#interface range fastEthernet 0/2-3

                        Switch(config-if-range)#switchport mode trunk

                        Switch(config-if-range)#channel-group 1 mode on        將0/2-3加到埠聚合鏈路1中

                        Switch(config-if-range)#end

                        Switch#show running

                        Switch#show interfaces fastEthernet 0/2 switchport        檢視介面狀態資訊

                        Switch#show interfaces fastEthernet 0/3 switchport

              步驟2:交換機B的配置:        

                        Switch>enable

                        Switch#vlan database

                        Switch(vlan)#vlan 10        建立VLAN10

                        Switch#configure terminal

                        Switch(config)#interface fastEthernet 0/1

                        Switch(config-if)#switchport access vlan 10        將0/1口放入VLAN10中

                        Switch(config-if)#exit

                        Switch(config)#interface port-channel 1        建立埠聚合鏈路1

                        Switch(config-if)#switchport mode trunk        定義埠聚合鏈路1的封裝模式為trunk

                        Switch(config-if)#switchport trunk encapsulation dot1q(該命令三層交換機封裝用,二層交換機不需要)

                        Switch(config-if)#no shutdown

                        Switch(config-if)#exit

                        Switch(config)#interface range fastEthernet 0/2-3

                        Switch(config-if-range)#switchport mode trunk

                        Switch(config-if-range)#channel-group 1 mode on        將0/2-3加到埠聚合鏈路1中

                        Switch(config-if-range)#end

                        Switch#show running

                        Switch#show interfaces fastEthernet 0/2 switchport        檢視介面狀態資訊

                        Switch#show interfaces fastEthernet 0/3 switchport

    步驟3:驗證當交換機之間一條鏈路斷開時,pc1pc2仍能繼續通訊。


 注意:

    只有同類型端口才能聚合為一個AG埠;

    所有物理埠必須屬於同一個VLAN

    某些交換機最多支援8個物理埠聚合為一個AG

    某些交換機最多支援6組聚合埠;

              AG介面不能設定埠安全功能;

    一個埠加入AG,埠屬性將被AG的屬性所取代;

    一個埠從AG中刪除,則埠的屬性將恢復為其加入AG前的屬性。