Huawei交換機配置兩臺交換機堆疊示例
配置兩臺交換機堆疊示例(先配置後連線方式,推薦)
# 配置SwitchA的堆疊優先級為150,Domain ID為10。缺省情況下,設備的堆疊成員ID為1。此處默認SwitchA的堆疊成員ID為1,無需配置。
<HUAWEI> system-view
[~HUAWEI] sysname SwitchA
[HUAWEI] commit
[~SwitchA] stack
[~SwitchA-stack] stack member 1 priority 150
[SwitchA-stack] stack member 1 domain 10
[SwitchA-stack] quit
[SwitchA] commit
配置SwitchB的堆疊成員ID為2,優先級為120,Domain ID為10。
<HUAWEI> system-view
[~HUAWEI] sysname SwitchB
[HUAWEI] commit
[~SwitchB] stack
[~SwitchB-stack] stack member 1 priority 120
[SwitchB-stack] stack member 1 domain 10
[SwitchB-stack] stack member 1 renumber 2 inherit-config
Warning: The stack configuration of member ID 1 will be inherited to member ID 2 after the device resets. Continue? [Y/N]: y
[
[*SwitchB] commit
說明:
因SwitchB尚未重啟,當前堆疊成員ID還是1,所以此時仍使用member 1來進行堆疊配置。
因為修改堆疊成員ID時指定了inherit-config參數,所以SwitchB重啟後會繼承member 1的堆疊配置;如果不指定inherit-config參數,那麽SwitchB重啟後不會繼承member 1的堆疊配置,需要使用member 2重新進行堆疊配置。
配置堆疊端口。
# 將SwitchA的業務口10GE1/0/1~10GE1/0/4加入堆疊端口1/1。
[~SwitchA] interface stack-port 1/1
[SwitchA-Stack-Port1/1] port member-group interface 10ge 1/0/1 to 1/0/4
Warning: The interface(s) (10GE1/0/1-1/0/4) will be converted to stack mode and be configured with the port crc-statistics trigger error-down command if the configuration does not exist. After the configuration is complete, these interfaces may go Error-Down (crc-statistics) because there is no shutdown configuration on the interfaces. [Y/N]: y
[
[~SwitchA-Stack-Port1/1] return
被配置為堆疊物理成員端口後,端口下會自動配置port crc-statistics trigger error-down。
# 將SwitchB的業務口10GE1/0/1~10GE1/0/4加入堆疊端口1/1。
[~SwitchB] interface stack-port 1/1
[SwitchB-Stack-Port1/1] port member-group interface 10ge 1/0/1 to 1/0/4
Warning: The interface(s) (10GE1/0/1-1/0/4) will be converted to stack mode and be configured with the port crc-statistics trigger error-down command if the configuration does not exist. After the configuration is complete, these interfaces may go Error-Down (crc-statistics) because there is no shutdown configuration on the interfaces. [Y/N]: y
[SwitchB-Stack-Port1/1] commit
[~SwitchB-Stack-Port1/1] return
檢查堆疊配置信息。
# 上述配置完成後,執行命令display stack configuration查看配置是否與規劃的一致,如果不一致,需要修改配置。以查看SwitchA為例。
<SwitchA> display stack configuration
保存配置後將設備下電。
# 保存SwitchA和SwitchB的配置,然後將設備下電。SwitchB的配置與SwitchA相同,略。
<SwitchA> save
Warning: The current configuration will be written to the device. Continue? [Y/N]: y
按照前期規劃及配置,連接堆疊線纜。線纜連接完成後將設備上電。
建議先將高優先級設備上電,以使其先完成啟動,優先競爭為主交換機。
-
驗證配置結果。
# 通過Console口或管理網口登錄堆疊系統,使用命令display stack查看堆疊是否組建成功。當通過管理網口登錄時,需要使用主交換機的IP地址。
<SwitchA> display stackMemberID Role MAC Priority DeviceType Description
+1 Master 0004-9f31-d520 150 CE6850-48T4Q-EI
2 Standby 0004-9f62-1f40 120 CE6850-48T4Q-EI-
indicates the device where the activated management interface resides.
如上所示,顯示兩臺交換機的信息,表示堆疊建立成功,且主交換機為成員ID為1的設備,即SwitchA。
# 查看堆疊系統拓撲信息。
<SwitchA> display stack topology
Stack Topology:Stack-Port 1 Stack-Port 2
MemberID Status Neighbor Status Neighbor1 up 2 -- --
2 up 1 -- --
-
Stack Link:
Stack-Port Port Status PeerPort PeerStatus
Stack-Port1/1 10GE1/0/1 up 10GE2/0/1 up
Stack-Port1/1 10GE1/0/2 up 10GE2/0/2 up
Stack-Port1/1 10GE1/0/3 up 10GE2/0/3 up
Stack-Port1/1 10GE1/0/4 up 10GE2/0/4 up
Stack-Port2/1 10GE2/0/1 up 10GE1/0/1 up
Stack-Port2/1 10GE2/0/2 up 10GE1/0/2 up
Stack-Port2/1 10GE2/0/3 up 10GE1/0/3 up
Stack-Port2/1 10GE2/0/4 up 10GE1/0/4 up
- 保存堆疊系統配置。
說明:
在檢查堆疊已成功建立後,建議用戶立即使用save命令保存堆疊系統配置。
<SwitchA> save
Warning: The current configuration will be written to the device. Continue? [Y/N]: y
Huawei交換機配置兩臺交換機堆疊示例