Merge pull request #107 from kroy-the-rabbit/patch-2

Spelling fix
This commit is contained in:
Daniil Baturin 2019-09-18 02:05:21 +07:00 committed by GitHub
commit d66729b987
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ VRRP (Virtual Redundancy Protocol) provides active/backup redundancy for routers
Every VRRP router has a physical IP/IPv6 address, and a virtual address.
On startup, routers elect the master, and the router with the highest priority becomes the master and assigns the virtual address to its interface.
All routers with lower priorities become backup routers. The master then starts sending keepalive packets to notify other routers that it's available.
If the master fails and stops sending keepalive packets, router with the next highest priority becomes the new master and takes over the virtual address.
If the master fails and stops sending keepalive packets, the router with the next highest priority becomes the new master and takes over the virtual address.
VRRP keepalive packets use multicast, and VRRP setups are limited to a single datalink layer segment.
You can setup multiple VRRP groups (also called virtual routers). Virtual routers are identified by a VRID (Virtual Router IDentifier).
@ -19,7 +19,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.
mininmal config
minimal config
.. code-block:: sh
@ -117,4 +117,4 @@ This setup will make the VRRP process execute the ``/config/scripts/vrrp-fail.sh
set high-availability vrrp group Foo transition-script backup "/config/scripts/vrrp-fail.sh Foo"
set high-availability vrrp group Foo transition-script fault "/config/scripts/vrrp-fail.sh Foo"
set high-availability vrrp group Foo transition-script master "/config/scripts/vrrp-master.sh Foo"
set high-availability vrrp group Foo transition-script master "/config/scripts/vrrp-master.sh Foo"