diff options
author | Robert Göhler <github@ghlr.de> | 2021-05-03 20:28:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-03 20:28:11 +0200 |
commit | 26b88928e4a1549a08372e0e8d443eb2173ab556 (patch) | |
tree | 47ae809e027e70a03440da7c57d65a2ee8204e3d | |
parent | a849f4045a6acc50591fdb4aa78fca9c6e0a5715 (diff) | |
parent | ad14c96cea0727f6b22ff3d2260bf285746cf5b1 (diff) | |
download | vyos-documentation-26b88928e4a1549a08372e0e8d443eb2173ab556.tar.gz vyos-documentation-26b88928e4a1549a08372e0e8d443eb2173ab556.zip |
Merge pull request #520 from srividya0208/vrrp-m
VRRP: addition of rfc3768-compatibility definition
-rw-r--r-- | docs/configexamples/ha.rst | 4 | ||||
-rw-r--r-- | docs/configuration/highavailability/index.rst | 24 |
2 files changed, 26 insertions, 2 deletions
diff --git a/docs/configexamples/ha.rst b/docs/configexamples/ha.rst index f14e6581..48d093c9 100644 --- a/docs/configexamples/ha.rst +++ b/docs/configexamples/ha.rst @@ -6,8 +6,8 @@ This document walks you through a complete HA setup of two VyOS machines. This design is based on a VM as the primary router, and a physical machine as a backup, using VRRP, BGP, OSPF and conntrack sharing. -The aim of this document is to walk you through setting everything up so you -and up at a point where you can reboot any machine and not lose more than a few +The aim of this document is to walk you through setting everything up, so +at a point where you can reboot any machine and not lose more than a few seconds worth of connectivity. Design diff --git a/docs/configuration/highavailability/index.rst b/docs/configuration/highavailability/index.rst index c3965aa2..c3a821c2 100644 --- a/docs/configuration/highavailability/index.rst +++ b/docs/configuration/highavailability/index.rst @@ -152,6 +152,30 @@ instead. set high-availability vrrp group Foo peer-address 192.0.2.10 set high-availability vrrp group Foo hello-source-address 192.0.2.15 +rfc3768-compatibility +--------------------- + +RFC 3768 defines a virtual MAC address to each VRRP virtual router. +This virtual router MAC address will be used as the source in all periodic VRRP +messages sent by the active node. When the rfc3768-compatibilty option is set, +a new VRRP interface is created, to which the MAC address and the virtual IP +address is automatically assigned. + +.. code-block:: none + + set high-availability vrrp group Foo rfc3768-compatibility + +Verification + +.. code-block:: none + + $show interfaces ethernet eth0v10 + eth0v10@eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue + state UP group default qlen 1000 + link/ether 00:00:5e:00:01:0a brd ff:ff:ff:ff:ff:ff + inet 172.25.0.247/16 scope global eth0v10 + valid_lft forever preferred_lft forever + Scripting --------- |