理论略,直接上配置
SWA:
[SWA]irf member 1 priority 5
//保留缺省编号1,不需要配置,这里修改优先级为5使其成为master(主)
[SWA]int Ten-GigabitEthernet 1/0/49
[SWA-Ten-GigabitEthernet1/0/49]shutdown
//接口需先关闭shutdown
[SWA]irf-port 1/1//创建irf接口
[SWA-irf-port1/1]port group interface Ten-GigabitEthernet 1/0/49
注意①:
第一个1表示member id
第二个1表示irf接口id
注意②:
第二个数字最多是2,也就是一台交换机上的irf port接口最多有两个,而且Irf port接口连接时必须交叉连接,比如:1/1-2/2 2/1-3/2
You must perform the following tasks for a successful IRF setup:
Save the configuration after completing IRF configuration.Execute the "irf-port-configuration active" command to activate the IRF ports.
//这个提示不是错误提示,而是做完配置后用irf-port-configuration active"命令来激活
SWB:
[SWB]irf member 1 renumber 2
//SWB上将设备的成员编号修改为2
Renumbering the member ID may result in configuration change or loss. Continue?[Y/N]:y
<SWB>save(两个y)
重启
<SWB>reboot
等交换机重启以后,大家看一下变化,接口变成2/0/X
查看:
[SWB]int Ten-GigabitEthernet 2/0/49
[SWB-Ten-GigabitEthernet2/0/49]shutdown
//先把接口down掉,才能加入堆叠
[SWB]irf-port 2/2
[SWB-irf-port2/2]port group interface Ten-GigabitEthernet 2/0/49
You must perform the following tasks for a successful IRF setup:
Save the configuration after completing IRF configuration.Execute the "irf-port-configuration active" command to activate the IRF ports.
//最后激活
把交换机SWA和SWB上刚刚shutdown的接口,undoshutdown
SWA:
[SWA]int Ten-GigabitEthernet 1/0/49
[SWA-Ten-GigabitEthernet1/0/49]undo shut
<SWA>save//记得一定再保存,防止自动重启后配置丢失,一定要保存!!!
SWB:
[SWB]int Ten-GigabitEthernet 2/0/49
[SWB-Ten-GigabitEthernet2/0/49]undo shut
<SWB>save
SWA:
[SWA]irf-port-configuration active//激活irf
<SWA>save//再保存一次
SWB:
[SWB]irf-port-configuration active
<SWB>save
最后再插堆叠线缆,两台交换机挨个自动重启,重启以后发现个奇怪的现象,就是两台交换机的名称一样
查看:
查看:在SWA上查看接口,就可以看到两台所有接口
在任何一台交换机上执行一条命令,都会在所有两台交换机上同样执行,两台交换机合为一台交换机。
个人总结:
① 配置IRF堆叠之前,先不要着急连接交换机的堆叠线缆,配置完最后连接。
② 先配置主交换机,配置主交换机的优先级,默认优先级为1,修改优先级为大于1即可,使其成为master交换机,主交换机默认member是1 ,就不用修改了,接下来进到10G接口下,把接口shutdown掉,然后创建IRF port,再把相应的接口加入IRF port,完了,save保存,按两次yy
③ 再配次交换机,先修改member号,优先级这里保持默认1不用修改,使其成为standby备份交换机,修改完了先第一次save保存一下,再reboot重启交换机,重启交换机后进到相应的接口下,下一步和配置主交换机一样,还是进到10G接口下,把接口shutdown掉,然后创建IRF port,再把相应的接口加入IRF port,完了,save保存,按两次yy
④ 分别到主备两台交换机上,进到相应的接口上,undo shutdown,完了,记得一定要save保持,切记一定save save save!!!
⑤ 完了分别到两台交换机上激活IRF,命令(irf-port-configuration active),激活后再save保存一次。
⑥ 最后把堆叠线缆连起来,两台交换机自动重启
⑦ 验证是否堆叠成功。