vrrp: adjust to latest CLI changes

This commit is contained in:
Christian Poessinger 2021-09-21 20:29:58 +02:00
parent 7f6393838c
commit 09b2efac21

View File

@ -27,7 +27,7 @@ Basic setup
VRRP groups are created with the
``set high-availability vrrp group $GROUP_NAME`` commands. The required
parameters are interface, vrid, and virtual-address.
parameters are interface, vrid, and address.
minimal config
@ -35,7 +35,7 @@ minimal config
set high-availability vrrp group Foo vrid 10
set high-availability vrrp group Foo interface eth0
set high-availability vrrp group Foo virtual-address 192.0.2.1/24
set high-availability vrrp group Foo address 192.0.2.1/24
You can verify your VRRP group status with the operational mode
``run show vrrp`` command:
@ -50,8 +50,8 @@ You can verify your VRRP group status with the operational mode
IPv6 support
------------
The ``virtual-address`` parameter can be either an IPv4 or IPv6 address, but you
cannot mix IPv4 and IPv6 in the same group, and will need to create groups with
The ``address`` parameter can be either an IPv4 or IPv6 address, but you can
not mix IPv4 and IPv6 in the same group, and will need to create groups with
different VRIDs specially for IPv4 and IPv6.
Disabling a VRRP group
@ -97,14 +97,14 @@ In the following example, when VLAN9 transitions, VLAN20 will also transition:
vrrp {
group VLAN9 {
interface eth0.9
virtual-address 10.9.1.1/24
address 10.9.1.1/24
priority 200
vrid 9
}
group VLAN20 {
interface eth0.20
priority 200
virtual-address 10.20.20.1/24
address 10.20.20.1/24
vrid 20
}
sync-group MAIN {