【网络配置实战】堆叠的配置

1. 实验目的:

  1. 熟悉堆叠的应用场景
  2. 掌握堆叠的配置方法

2. 实验拓扑

实验拓扑如图所示。

【技术要点】

现网中公司需要对交换网络扩容,需要将SW1和SW2两台设备使用业务接口进行堆叠。(华为ensp模拟器不支持堆叠,此实验使用H3C的模拟器HCL)

3. 实验步骤

1)选择需要进行堆叠的业务接口,并且将端口shutdown

SW1的配置

<H3C>system-view

System View: return to User View with Ctrl+Z.

H3C\]sysname SW1 \[SW1\]interface Ten-GigabitEthernet 1/0/50 \[SW1-Ten-GigabitEthernet1/0/50\]shutdown \[SW1-Ten-GigabitEthernet1/0/50\]quit

SW2的配置

<H3C>system-view

System View: return to User View with Ctrl+Z.

H3C\]sysname SW2 \[SW2\]interface Ten-GigabitEthernet 1/0/50 \[SW2-Ten-GigabitEthernet1/0/50\]shutdown \[SW2-Ten-GigabitEthernet1/0/50\]quit

2)将SW1配置成堆叠后的主设备,配置对应的优先级,并将业务线缆加入虚拟的堆叠口

SW1\]irf member 1 priority 30 //配置设备的堆叠成员ID为1,堆叠优先级为30 \[SW1\]irf-port 1/1 //进入虚拟堆叠口 \[SW1-irf-port1/1\]port group interface Ten-GigabitEthernet 1/0/50//将物理接口加入到堆叠口 \[SW1-irf-port1/1\]quit \[SW1\]irf-port-configuration active //激活堆叠配置 \[SW1\]interface Ten-GigabitEthernet 1/0/50 \[SW1-Ten-GigabitEthernet1/0/50\]undo shutdown //开启物理接口 \[SW1\]save //保存配置

3)将SW2业务线缆加入虚拟的堆叠线缆

SW2\]irf member 1 renumber 2 //配置堆叠成员ID为1(成员ID不能冲突) Renumbering the member ID may result in configuration change or loss. Continue?\[Y/N\]:y \[SW2\]irf-port 1/2 //进入虚拟堆叠口1/2 \[SW2-irf-port1/2\]port group interface Ten-GigabitEthernet 1/0/50//将物理接口加入到堆叠口 \[SW2-irf-port1/2\]quit \[SW2\]irf-port-configuration active //激活堆叠配置 \[SW2\]interface Ten-GigabitEthernet 1/0/50 \[SW2-Ten-GigabitEthernet1/0/50\]undo shutdown \[SW2-Ten-GigabitEthernet1/0/50\]quit \[SW2\]save

4)SW1的配置

SW1\]quit \reboot将设备重启,自动完成堆叠。

SW2的配置

SW1\]quit \reboot

4)实验调试

查看堆叠配置

<SW1>display irf //查看堆叠配置

MemberID Role Priority CPU-Mac Description

*+1 Master 30 0caa-192d-0104 ---

2 Standby 1 0caa-1b49-0204 ---


* indicates the device is the master.

  • indicates the device through which the user logs in.

The bridge MAC of the IRF is: 0caa-192d-0100

Auto upgrade : yes

Mac persistent : 6 min

Domain ID : 0

可以看到堆叠ID为1的SW1为master,即主设备,堆叠ID为2的SW2为standby,即从设备。最终可以实现,将多台物理设备堆叠成一台逻辑设备。


持续更新更多文章!

相关推荐
@hdd3 小时前
Kubernetes 网络模型:Pod 通信、Service 网络与 CNI
网络·云原生·容器·kubernetes
Codefengfeng3 小时前
CTF工具篇
linux·运维·服务器
封奚泽优3 小时前
Docker常用命令(Windows 11)
运维·docker·容器
上海合宙LuatOS4 小时前
LuatOS核心库API——【i2c】I2C 操作
linux·运维·单片机·嵌入式硬件·物联网·计算机外设·硬件工程
崎岖Qiu5 小时前
【计算机网络 | 第十一篇】图解交换机的自学习功能
网络·学习·计算机网络
Zach_yuan5 小时前
数据链路层核心技术解析:以太网与ARP协议
服务器·网络·网络协议
2401_858286117 小时前
OS53.【Linux】System V 共享内存(2)
linux·运维·服务器·共享内存
REDcker8 小时前
DNS技术详解
服务器·后端·计算机网络·互联网·dns·服务端
上海合宙LuatOS8 小时前
LuatOS核心库API——【io】 io操作(扩展)
java·服务器·前端·网络·单片机·嵌入式硬件·物联网
她说彩礼65万9 小时前
I/O密集型 CPU密集型
网络