This task is performed on all devices that are designated as VRRP extended (VRRP-E) devices. While VRRP-E does not have owner devices, there is still a master device and backup devices with the master device determined by the device with the highest priority.
device# configure terminal
device(config)# protocol vrrp-extended
device(config)# interface ve 10
device(config-if-Ve-10)# ip address 192.168.4.1/24
device(config-if-Ve-10)# vrrp-extended-group 1
device(config-vrrp-group-1)# priority 110
device(config-vrrp-group-1)# virtual-ip 192.168.4.100
Note
For VRRP-E, the virtual router group IP address must not be the same as a real IP address configured on the interface.The following example configures a master VRRP-E device for group 1.
device# configure terminal device(config)# protocol vrrp-extended device(config)# interface ve 10 device(config-if-Ve-10)# ip address 192.168.4.1/24 device(config-if-Ve-10)# vrrp-extended-group 1 device(config-vrrp-group-1)# priority 110 device(config-vrrp-group-1)# virtual-ip 192.168.4.100
The following example configures a backup VRRP-E device for group 1. In the first configuration of VRRP-E for Router 1 the priority is set to 110, higher than the priority for Router 2 at 80. Router 1 assumes the role of the master VRRP-E device.
device# configure terminal device(config)# protocol vrrp-extended device(config)# interface ve 10 device(config-if-Ve-10)# ip address 192.168.4.3/24 device(config-if-Ve-10)# vrrp-extended-group 1 device(config-vrrp-group-1)# priority 80 device(config-vrrp-group-1)# virtual-ip 192.168.4.100