求助帖H3C交換機堆疊后如何跨設備鏈路聚合?
【求助帖】H3C交換機堆疊后如何跨設備鏈路聚合?鏈路聚合有成端口聚合,斷口捆綁,英文名port trunking.功能是將交換機的多個低帶寬端口捆綁成一條高帶寬鏈路,可以實現鏈路負載平衡。避免鏈路出現擁塞現象。通過配置,可通過兩個三個或是四個端口進行捆綁,分別負責特定端口的數據轉發,防止單條鏈路轉發速率過低而出現丟包的現象。 Trunking的優點:價格便宜,性能接近千兆以太網;不需要重新布線,也無需考慮千兆網傳輸距離極限問題;trunking可以捆綁任何相關的端口,也可以隨時取消設置,這樣提供了很高的靈活性還可以提供負載均衡能力以及系統容錯。 命令:port-group mode {active|passive|on} no port-group 功能:將物理端口加入Port Channel,該命令的no 操作為將端口從Port Channel 中去除 參數: 為Port Channel 的組號,范圍為1~16;active(0) 啟動端口的LACP 協議,并設置為Active 模式;passive(1) 啟動端口的LACP 協議,并且設置為Passive 模式;on(2) 強制端口加入Port Channel,不啟動LACP 協議。 舉例:在Ethernet0/0/1 端口模式下,將本端口以active 模式加入port-group Switch(Config-Ethernet0/0/1)#port-group 1 mode active 命令:interface port-channel 功能:進入匯聚接口配置模式 命令模式:全局配置模式 舉例:進入port-channel1 配置模式Switch(Config)#interface port-channel 1Switch(Config-If-Port-Channel1)# 舉例1:如果交換機Switch1 上的1,2,3 端口都是access 口,并且都屬于vlan 1,將這三個端口以active 方式加入group 1,Switch2 上6,8,9 端口為trunk 口,并且是allow all,將這三個端口以passive 方式加入group 2,將以上對應端口分別用網線相連。 方法1配置步驟如下:Switch1#configSwitch1 (Config)#interface eth 0/0/1-3Switch1 (Config-Port-Range)#port-group 1 mode activeSwitch1 (Config-Port-Range)#exitSwitch1 (Config)#interface port-channel 1Switch1 (Config-If-Port-Channel1)#Switch2#configSwitch2 (Config)#port-group 2Switch2 (Config)#interface eth 0/0/6Switch2 (Config-Ethernet0/0/6)#port-group 2 mode passiveSwitch2 (Config-Ethernet0/0/6)#exitSwitch2 (Config)# interface eth 0/0/8-9Switch2 (Config-Port-Range)#port-group 2 mode passiveSwitch2