Link to home
Start Free TrialLog in
Avatar of beer9
beer9Flag for India

asked on

What is VRRP and what it is being used for?

What is VRRP and what it is being used for? I would like to know the use case. Appreciate any help in this. Thanks!
SOLUTION
Avatar of Predrag Jovic
Predrag Jovic
Flag of Poland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of beer9

ASKER

Thanks for explaining, I have below details for my interface, and IP 10.4.12.20/32 is being used as VRRP via Keepalived (http://www.keepalived.org/) applications. I would like to understand what is happening here.

oot@localhost:~# ip addr show eth2
4: eth2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
    link/ether 05:2b:21:2f:f2:65 brd ff:ff:ff:ff:ff:ff
    inet 10.4.12.58/24 brd 10.4.12.255 scope global eth2
    inet 10.4.12.20/32 scope global eth2
    inet6 fe20::27b:22ff:f1cf:7bc5/64 scope link
       valid_lft forever preferred_lft forever

Open in new window

It looks like the 10.4.12.20 is the "virtual IP" address for VRRP.  This is the IP address that the hosts use as their default gateway.

When a host forwards traffic to that IP address, only the active router will forward it.

Edit: This implementation of VRRP uses "Master" and "Backup" instead of "Active" and "Standby".

Recommend reading the users guide, section V.
Avatar of beer9

ASKER

Thanks for the explanation. What is the difference of "Master"/"Backup" and "Active"/"Standby".
Please see my first post.