1. 程式人生 > >乙太網埠聚合

乙太網埠聚合

乙太網埠的鏈路聚合:

實驗原理:

對於區域網交換機之間以及從交換機到高需求服務的許多網路連線來說,100M甚至1Gbps的頻寬是不夠的。

為了解決交換網路頻寬瓶頸的問題:

通過交換機的堆疊實現

Ø  通過交換機的普通埠通過普通線纜簡單聯接起來

通過埠聚合技術實現

Ø  通過堆疊線纜將交換機的背板連線起來,擴大級聯頻寬

實驗拓撲:

實驗目的: 增加交換機之間的傳輸頻寬,並實現鏈路冗餘備份.

實驗過程:

對二層交換機的設定即二層埠:

交換機1:

Switch>en

Switch#conf t

Enter configuration commands, one per line. End with CNTL/Z.

Switch(config)#interfaceport-channel 2  (  在真實機是interface aggregateport 2)

Switch(config-if)#exit

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

Switch(config-if-range)#channel-group2 mode on   (在真實機是port-group 2)

交換機2:

Switch>en

Switch#conf t

Enter configuration commands, one per line. End with CNTL/Z.

Switch(config)#interface port-channel 2

Switch(config-if)#exit

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

Switch(config-if-range)#channel-group 2 mode on

驗證命令:

Switch# show aggregateport 

在三層交換機:

Switch# configure termininal

Switch(config)# interface aggregate-port 3/*進入介面配置模式,如果這個aggregate port不存在則建立它*/

Switch(config-if)# no switchport 將該介面設定為三層模式。

Switch(config-if)# ip address 192.168.10.1 255.255.255.0     /*給介面配置地址和子網掩碼*/

Switch(config-if)#exit

Switch(config)# interface range fastethernet 0/20-21

Switch(config-if-range)# no switchport /*將該介面設定為三層模式*/

Switch(config-if-range)# port-group 3 /*將介面加入aggregate port 3(如果不存在,則同時建立它) */

Switch(config-if)# end    回到特權模式。

Switch# show aggregateport 3 detail 驗證aggregate port的配置。

Switch# show interfaces aggregateport 3 /*顯示aggregateport 3的配置資訊*/

同理,在Switch2上面配置,IP地址為192.168.10.2

測試結果:兩臺PC可ping通,實際通過下載比較大的檔案可發現,通過鏈路聚合的方式傳輸速度會比較快。