交换机堆叠技术
交换机堆叠,通俗讲就是将多台交换机“合体”,堆叠后的交换机从逻辑上可视作一台交换机。目前各大网络厂商分别拥有各自的交换机堆叠技术,比如华为的iStack(Intelligent Stack)和CSS、华三的IRF(Intelligent Resilient Framework,智能弹性架构)以及思科的StackWise等等。
配置案例
华为iStack
推荐在配置堆叠前先不要连接堆叠线
SW-A-MASTER
stack #进入堆叠管理视图
stack member 1 domain 1 #设置堆叠成员的成员ID和domain ID
stack member 1 priority 200 #设置堆叠优先级,值越大优先级越高
interface stack-port 1/1 #配置堆叠端口
port member-group interface 40GE 1/0/1
commit
save
reboot
SW-B-SLAVE
stack
stack member 1 renumber 2 inherit-config
保存并重启
stack member 2 domain 1
stack member 1 priority 100 #因还未重启,所以使用当前member1配置
interface stack-port 2/1
port member-group interface 40GE 1/0/1
commit
save
连接堆叠线,堆叠线连接后优先级低的设备会自动重启,重启后查看堆叠是否成功
display stack
- 因为修改堆叠成员ID时指定了inherit-config参数,所以SW-B重启后会继承member 1的堆叠配置;如果不指定inherit-config参数,那么SW-B重启后不会继承member 1的堆叠配置,需要使用member 2重新进行堆叠配置。
华三IRF
推荐在配置堆叠前先不要连接堆叠线
SW-A-MASTER
irf member 1 priority 10
int range FortyGigE 1/0/53 FortyGigE 1/0/54
shutdown
irf-port 1/2
port group int FortyGigE 1/0/53
port group int FortyGigE 1/0/54
irf-port-configuration active
int range FortyGigE 1/0/53 FortyGigE 1/0/54
undo shutdown
save
SW-B-SLAVE
irf member 1 renumber 2
reboot
int range FortyGigE 2/0/53 FortyGigE 2/0/54
shutdown
irf-port 2/1 #两台交换机的索引不能相同
port group int FortyGigE 2/0/53
port group int FortyGigE 2/0/54
irf-port-configuration active
int range FortyGigE 2/0/53 FortyGigE 2/0/54
undo shutdown
save
连接堆叠线,堆叠线连接后优先级低的设备会自动重启,重启后查看堆叠是否成功
display irf
- 华三交换机两台交换机的索引号不能一致,如实例中SW-A的irf-port如果是1/1,那SW-B的irf就不能是2/1。