设备支持两种运行模式:IRF模式和独立运行模式。
如果设备当前处于独立运行模式,且需要加入IRF,必须将运行模式切换到IRF模式,才能形成IRF。
当设备处于IRF模式时,即便只有一台设备也会形成IRF,也需要耗费一定的系统资源来管理和维护IRF。因此,如果当前组网中设备不需要和别的设备IRF时,建议将运行模式配置为独立运行模式。
设备出厂时处于独立运行模式。修改运行模式,设备会自动重启使新的模式生效。如果没有修改运行模式,则下次启动会延用本次启动的运行模式。请根据组网需要来配置设备的运行模式。
IRF有两种配置方式:预配置方式和非预配置方式。采用预配置方式,整个过程设备只需要一次重启,所以推荐采用预配置的方式配置IRF。
预配置方式是在独立运行模式的设备上配置IRF端口、成员编号、成员优先级,这些配置不会影响本设备的运行,只有设备切换到IRF模式下才会生效。在组建IRF前,通常使用该方式配置。成员编号必须在独立运行模式时预配置,设备才能切换到IRF模式,与别的设备组成IRF;将成员优先级配置为较大值,当多台设备初次形成IRF时,该设备就能在角色选举中获胜,成为Master;配置IRF端口,以便将运行模式切换到IRF模式后,就能直接和别的设备形成IRF(最终组成IRF只需要一次重启)。
非预配置方式是在独立运行模式的设备上配置成员编号,然后切换到IRF模式,再配置IRF端口、成员优先级等相关参数。该配置方式通常用于修改当前配置。比如,将某个成员设备的编号修改为指定值(请注意修改后的编号需要重启该成员设备才能生效,而且重启后会导致原编号相关配置失效);修改成员设备的优先级,让该设备在下次IRF竞选时成为Master;修改IRF端口的已有绑定关系(删除某个绑定或者添加新的绑定),IRF端口的配置可能会影响本设备的运行(比如引起IRF分裂、IRF合并)。
TOP:
配置步骤
配置Device A。
# 设置Device A的成员编号为1,成员优先级为20,创建IRF端口2,并将它与物理端口Ten-GigabitEthernet3/0/1绑定。
[Sysname] irf member 1
[Sysname] irf priority 20
[Sysname] irf-port 2
[Sysname-irf-port 2] port group interface Ten-Gigabitethernet 3/0/1
[Sysname-Ten-GigabitEthernet3/0/1]undo shutdown
将当前配置保存到下次启动配置文件。
[Sysname] quit
将设备的运行模式切换到IRF模式。
[Sysname] chassis convert mode irf
The device will switch to IRF mode and reboot. You are recommended to save the current running configuration and specify the configuration file for the next startup. Continue? [Y/N]:y
Do you want to convert the content of the next startup configuration file flash:/startup.cfg to make it available in IRF mode? [Y/N]:y
Please wait...
Saving the converted configuration file to the main board succeeded.
Slot 1:
Saving the converted configuration file succeeded.
Now rebooting, please wait...
设备重启后Device A组成了只有一台成员设备的IRF。
Device B上的配置。
# 配置Device B的成员编号为2,成员优先级为10,创建IRF端口1,并将它与物理端口Ten-GigabitEthernet3/0/1绑定。
[Sysname] irf member 2
[Sysname] irf priority 10
[Sysname] irf-port 1
[Sysname-irf-port 1] port group interface Ten-Gigabitethernet 3/0/1
[Sysname-Ten-GigabitEthernet3/0/1]undo shutdown
# 将当前配置保存到下次启动配置文件。
[Sysname] quit
# 参照图进行物理连线。
# 将设备的运行模式切换到IRF模式。
[Sysname] chassis convert mode irf
The device will switch to IRF mode and reboot. You are recommended to save the current running configuration and specify the configuration file for the next startup. Continue? [Y/N]:y
Do you want to convert the content of the next startup configuration file flash:/startup.cfg to make it available in IRF mode? [Y/N]:y
Please wait...
Saving the converted configuration file to the main board succeeded.
Slot 1:
Saving the converted configuration file succeeded.
Now rebooting, please wait...
设备B重启后与设备A形成IRF。
配置步骤
设备B重启后与设备A形成IRF。
配置BFD MAD检测
# 创建VLAN 3,并将Device A(成员编号为1)上的端口1/4/0/1和Device B(成员编号为2)上的端口2/4/0/1加入VLAN中。
[Sysname] vlan 3
[Sysname-vlan3] port Gigabitethernet 1/4/0/1 Gigabitethernet 2/4/0/1
[Sysname-vlan3] quit
# 创建VLAN接口3,并配置MAD IP地址。
[Sysname] interface vlan-interface 3
[Sysname-Vlan-interface3] mad bfd enable
[Sysname-Vlan-interface3] mad ip add 192.168.2.1 24 chassis 1
[Sysname-Vlan-interface3] mad ip add 192.168.2.2 24 chassis 2
[Sysname-Vlan-interface3] undo shutdown
# 因为BFD MAD和STP功能互斥,所以在GigabitEthernet1/4/0/1和GigabitEthernet2/4/0/1上关闭MSTP协议。
[Sysname] interface Gigabitethernet 1/4/0/1
[Sysname-Gigabitethernet1/4/0/1] undo stp enable
[Sysname-Gigabitethernet1/4/0/1] undo shutdown
[Sysname] interface Gigabitethernet 2/4/0/1
[Sysname-Gigabitethernet2/4/0/1] undo stp enable
[Sysname-Gigabitethernet2/4/0/1] undo shutdow