本文介绍如何在 Dell Networking OS9 交换机上配置虚拟路由器冗余协议 (VRRP)。
VRRP 允许多个路由器为广播域中设备使用的路由 IP 地址提供主动/被动冗余。
命令 | 目的 |
R1# configure |
输入配置模式。 |
R1(conf)# interface VLAN 10 |
进入接口(物理或VLAN)。 |
R1(conf-if-vl-10)# ip address 10.10.10.2 /24 R1(conf-if-vl-10)# no shutdown |
设置接口上的IP地址,并且为L3模式启用它。 |
R1(conf-if-vl-10)# vrrp-group 10 |
设置VRRP组ID (VRID)。 |
R1(conf-if-vl-10-vrid-10)# virtual-address 10.10.10.1 |
为VRRP路由器设置虚拟IP地址。 |
R1(conf-if-vl-10-vrid-10)# priority 200 |
(可选)为初选设置优先级,默认值为 100,较大的数字优先,范围 1-255。 |
命令 | 目的 |
R2# configure |
输入配置模式。 |
R2(conf)# interface VLAN 10 |
进入接口(物理或VLAN)。 |
R2(conf-if-vl-10)# ip address 10.10.10.3 /24 R2(conf-if-vl-10)# no shutdown |
设置接口上的IP地址,并且为L3模式启用它。 |
R2(conf-if-vl-10)# vrrp-group 10 |
设置VRRP组ID (VRID) |
R2(conf-if-vl-10-vrid-10)# virtual-address 10.10.10.1 |
为VRRP路由器设置虚拟IP地址。 |
R2(conf-if-vl-10-vrid-10)# priority 150 |
(可选)为初选设置优先级,默认值为 100,较大的数字优先,范围 1-255。 |
如果VRRP组中的两个路由器同时出现并且具有相同的优先级值,则接口的物理IP地址将用作仲裁,以确定哪个是PRIMARY。具有较高 IP 地址的路由器将成为 PRIMARY。
R1# show vrrp Vlan 10, IPv4 VRID: 10, Version: 2, Net: 10.10.10.2 VRF: 0 default State: Primary, Priority: 200, Primary: 10.10.10.3 Hold Down: 0 sec, Preempt: TRUE, AdvInt: 1 sec Adv rcvd: 0, Bad pkts rcvd: 0, Adv sent: 2434, Gratuitous ARP sent: 24 Virtual MAC address: 00:00:5e:00:01:0a Virtual IP address: 10.10.10.1 Authentication: (none) R2# show vrrp Vlan 10, IPv4 VRID: 10, Version: 2, Net: 10.10.10.3 VRF: 0 default State: Backup, Priority: 150, Primary: 10.10.10.3 Hold Down: 0 sec, Preempt: TRUE, AdvInt: 1 sec Adv rcvd: 0, Bad pkts rcvd: 0, Adv sent: 2434, Gratuitous ARP sent: 24 Virtual MAC address: 00:00:5e:00:01:0a Virtual IP address: 10.10.10.1 Authentication: (none)