堆叠简介
堆叠是指将一台以上的交换机组合起来共同工作,以便在有限的空间内提供尽可能多的端口,通过堆叠,可以将多个物理交换机的处理能力组合成一个单一逻辑设备,从而显著提高网络性能,包括更高的带宽、更低的延迟和更快的数据传输速度。如下组网图由SwitchA、SwitchB和SwitchC三台接入交换机采用环形堆叠组网,其中预设SwitchA、SwitchB和SwitchC的角色分别为主、备、从,堆叠ID分别为0、1、2,优先级分别为200、100、100。下面将详细介绍如何在华为S系列交换机上进行堆叠配置。
组网图:
堆叠配置步骤
一、配置堆叠参数
配置SwitchA
[SwitchA] stack slot 0 priority 200 //修改主交换机的堆叠优先级为200,大于其他成员交换机,堆叠ID采用缺省值0。
[SwitchA] interface stack-port 0/1
[SwitchA-stack-port0/1] port interface ge 0/0/1 enable //物理端口加入到相应的逻辑堆叠端口
[SwitchA-stack-port0/1] quit
[SwitchA] interface stack-port 0/2
[SwitchA-stack-port0/2] port interface ge 0/0/2 enable //物理端口加入到相应的逻辑堆叠端口
[SwitchA-stack-port0/2] quit
配置SwitchB
[SwitchB] stack slot 0 renumber 1 //修改堆叠ID为1,堆叠优先级采用缺省值100
[SwitchB] interface stack-port 0/1
[SwitchB-stack-port0/1] port interface ge 0/0/1 enable //物理端口加入到相应的逻辑堆叠端口
[SwitchB-stack-port0/1] quit
[SwitchB] interface stack-port 0/2
[SwitchB-stack-port0/2] port interface ge 0/0/2 enable //物理端口加入到相应的逻辑堆叠端口
[SwitchA-stack-port0/2] quit
配置SwitchC
[SwitchC] stack slot 0 renumber 2 //修改堆叠ID为2,堆叠优先级采用缺省值100
[SwitchC] interface stack-port 0/1
[SwitchC-stack-port0/1] port interface ge 0/0/1 enable //物理端口加入到相应的逻辑堆叠端口
[SwitchC-stack-port0/1] quit
[SwitchC] interface stack-port 0/2
[SwitchC-stack-port0/2] port interface ge 0/0/2 enable //物理端口加入到相应的逻辑堆叠端口
[SwitchC-stack-port0/2] quit
二、保存配置并下电交换机
配置SwitchA
[SwitchA] save
The current configuration will be written to the device.
Are you sure? [Y/N]: y
Now saving the current configuration to the slot 0...
Save the configuration successfully.
配置SwitchB
[SwitchB] save
The current configuration will be written to the device.
Are you sure? [Y/N]: y
Now saving the current configuration to the slot 0...
Save the configuration successfully.
配置SwitchC
[SwitchC] save
The current configuration will be written to the device.
Are you sure? [Y/N]: y
Now saving the current configuration to the slot 0...
Save the configuration successfully.
三、连接堆叠线缆
在交换机上电完成前,根据规划好的堆叠方式,使用堆叠线缆将多台交换机相应接口连接起来
连线图:
四、上电交换机
堆叠交换机中的主交换机(master)选举规则遵循一系列预设的比较条件。
1、运行状态比较:
最先完成启动的交换机具有优先竞争为主交换机的资格。这通常意味着在堆叠系统初始化时,最先启动并达到稳定状态的交换机会被视为潜在的主交换机候选者。主交换机选举超时时间为20秒,即如果在20秒内没有完成主交换机的选举,系统将重新进行选举过程。
2、堆叠优先级比较:
堆叠优先级是一个可配置的参数,用于指定交换机在堆叠系统中的优先级。优先级值越大,交换机成为主交换机的可能性就越大。默认情况下,堆叠优先级设置为100,但可以在配置时进行更改,范围通常在1到255之间。
3、桥MAC地址比较:
如果以上所有条件都相同,则交换机的桥MAC地址将成为决定因素。桥MAC地址较小的交换机将优先竞争为主交换机。
因此将交换机A、B、C按顺序逐台进行上电,交换机A会成为master,交换机B会成为standby,交换机C会成为slave。
五、验证堆叠系统状态
[Stack] display stack
Stack system MAC: 00e0-fc00-1234
MAC switch delay time: 10 min
Stack reserved vlan : 4093
Slot of the active management port: 0
Slot Role Mac address Priority Device type
-------------------------------------------------------------
0 Master 00e0-fc00-1234 200 S5700-28P-LI-AC
1 Standby 00e0-fc00-1235 100 S5700-28P-LI-AC
2 Slave 00e0-fc00-1236 100 S5700-28P-LI-AC
在以上回显信息中,我们可以看到堆叠系统中的三台交换机已经成功连接,并且主交换机的堆叠ID为0,优先级为200;备交换机的堆叠ID为1,优先级为100;从交换机的堆叠ID为2,优先级为100,这符合我们之前的规划;建议大家在实际应用中结合具体场景和需求进行灵活配置和优化。
标签:port,堆叠,华为,交换机,SwitchA,stack,port0 From: https://blog.csdn.net/2401_87792907/article/details/143638079