Configures VRRP group settings
A default gateway is a critical resource for connectivity. However, it is prone to a single point of failure. Thus, redundancy for the default gateway is required. If WAN backhaul is available, and a router failure occurs, then the controller should act as a router and forward traffic on to its WAN link.
Define an external VRRP configuration when router redundancy is required in a network requiring high availability.
Central to VRRP configuration is the election of a VRRP master. A VRRP master (once elected) performs the following functions:
The nodes that lose the election process enter a backup state. In the backup state they monitor the master for any failures, and in case of a failure one of the backups, in turn, becomes the master and assumes the management of the designated virtual IPs. A backup does not respond to an ARP request, and discards packets destined for a virtual IP resource.
vrrp <1-255> [delta-priority <1-253>|description <LINE>|vrrp ip <IP> {<IP>}| preempt {delay <1-65535>}|priority <1-254>|sync-group]
vrrp <1-255> | Configures the virtual router ID from 1- 255. Identifies the virtual router the packet is reporting status for. |
delta-priority <1-253> | Configures the priority to decrement (local link monitoring and critical resource monitoring) or increment (critical resource monitoring). When the monitored interface is down, the configured priority decrements by a value defined by the delta-priority option. When monitoring critical resources, the value increments by the delta-priority option.
|
description <LINE> | Configures a text description for the virtual router to further distinguish it from other routers with similar configuration
|
ip <IP-ADDRESSES> | Identifies the IP address(es) backed by the virtual router. These are IP addresses of Ethernet switches, routers, and security appliances defined as virtual router resources.
This configuration triggers VRRP operation. |
preempt {delay <1-65535>} | Controls whether a high priority backup router preempts a lower priority master. This field determines if a node with higher priority can takeover all virtual IPs from a node with lower priority. This feature is disabled by default.
|
priority <1-254> | Configures the priority level of the router within a VRRP group. This value determines which node is elected as the Master. Higher values imply higher priority, value 254 has the highest precedence (default is 100). |
sync-group | Adds this VRRP group to a synchronized group. To trigger VRRP failover, it is essential all individual groups within a synchronized group have failover. VRRP failover is triggered if an advertisement is not received from the virtual masters that are part of this VRRP sync group. This feature is disabled by default. |
vrrp <1-255> interface vlan <1-4094>
vrrp <1-255> | Configures the virtual router ID from 1- 255. Identifies the virtual router the packet is reporting status for. |
interface vlan <1-4094> | Enables VRRP on the specified switch VLAN interface (SVI)
|
vrrp <1-255> monitor critical-resource <CRM-NAME1> <CRM-NAME2> <CRM-NAME3> <CRM-NAME4> (action [decrement-priority|increment-priority] {<IF-NAME>|pppoe1|vlan| wwan1})
vrrp <1-255> | Configures the virtual router ID from 1- 255. Identifies the virtual router the packet is reporting status for. |
monitor | Enables link monitoring or Critical Resource Monitoring (CRM) |
critical-resource <CRM-NAME1> | Specifies the name of the critical resource to monitor. VRRP can be configured to monitor maximum of four critical resources. Use the <CRM-NAME2>, <CRM-NAME3>, and <CRM-NAME4> to provide names of the remaining three critical resources. By default VRRP is configured to monitor all critical resources on the device. |
action [decrement-priority| increment-priority] | Sets the action on critical resource down event. It is a recursive parameter that sets the action for each of the four critical resources being monitored.
|
<IF-NAME> | Optional. Enables interface monitoring
|
pppoe1 | Optional. Enables Point-to-Point Protocol (PPP) over Ethernet interface monitoring |
vlan <1-4094> | Optional. Enables VLAN (switched virtual interface) interface monitoring
|
wwan1 | Optional. Enables Wireless WAN interface monitoring |
vrrp <1-255> timers advertise [<1-255>|centiseconds <25-4095>|msec <250-999>]
vrrp <1-255> | Configures the virtual router ID from 1- 255. Identifies the virtual router the packet is reporting status for. |
timers | Configures the timer that runs every interval |
advertise [<1-255>| centiseconds <25-4095>| msec <250-999>] | Configures the VRRP advertisements time interval. This is the interval at which a master sends out advertisements on each of its configured VLANs.
Default is 1 second. |
vrrp version [2|3]
vrrp version [2|3] | Configures one of the following VRRP versions:
The VRRP version determines the router redundancy. Version 3 supports sub-second (centisecond) VRRP failover and support services over virtual IP. |
nx9500-6C8809(config-profile-TestNX5500)#vrrp version 3 nx9500-6C8809(config-profile-TestNX5500)#vrrp 1 sync-group nx9500-6C8809(config-profile-TestNX5500)#vrrp 1 delta-priority 100 nx9500-6C8809(config-profile-TestNX5500)#show context profile nx5500 TestNX5500 bridge vlan 1 ...................................................... vrrp 1 timers advertise 1 vrrp 1 preempt vrrp 1 sync-group vrrp 1 delta-priority 100 vrrp version 3 nx9500-6C8809(config-profile-TestNX5500)#
no | Reverts VRRP settings |