FHRP 101
HSRP
HSRP provides a virtual MAC address and a virtual IP address that is shared among a group of routers in order to have a HA infrastructure for the default gateway in a subnet.
Starting HSRP
Timers
Timers are usually learned from the active router. Millisecond timers can only be learned when using version 2. Otherwise, they must be configured on all routers.
Election process
An election process takes place, where the primary router is elected. Only one device will be elected as the primary router. It will receive and forward packets destined for the Group IP. At the same time, a standby router is elected. It will monitor if the primary router is still reachable and if the active router fails, the standby router takes over and a new router is elected to be the standby router.
The router with the highest priority will be elected as the primary router. The default priority or all routers is 100. In case of a tie, the router with the highest IP Address will becom the primary router.
By default if a router with higher priority comes up, it will not become the primary router unless it is configured for preemption:
A standby router with equal priority but a higher IP address will still not preempt the primary router.
Tracking
HSRP can track an interface or an object and will reduce the priority with a configurable value when the interface or the object state goes down:
HSRP can also track other objects using:
Authentication
HSRP authentication can use clear text or md5 hashes. For md5, you can use ca key-chain or a key-string:
With an MD5 key, a hash is computed on a portion of each message and it is sent along with the message. The receiving peer performs the same hash on the received message
Versions
HSRP v1 | HSRP v2 | |
---|---|---|
Sends multicast messages to | 224.0.0.2 | 224.0.0.102 |
Supported groups | 0-255 | 0-4095 |
virtual MAC address | 0000.0c07.acXX XX = Group Number | 0000.0C9F.FXXX XXX = Group Number |
Keepalive timers | Doesn't support msec | Supports msec |
HSRP Message
While talking to each other, HSRP enabled rotuers use the following messages:
Coup When a standby router wants to assume the function of the active router, it sends a coup message.
Hello The hello message conveys to other HSRP routers the HSRP priority and state information of the router.
Resign A router that is the active router sends this message when it is about to shut down or when a router that has a higher priority sends a hello or coup message.
HSRP States
Active – The router is performing packet-transfer functions
Init or Disabled – The router is not yet ready or able to participate in HSRP, possibly because the associated interface is not up. HSRP groups configured on other routers on the network that are learned via snooping are displayed as being in the Init state. Locally configured groups with an interface that is down or groups without a specified interface IP address appear in the Init state
Learn – The router has not determined the virtual IP address and has not yet seen an authenticated hello message from the active router. In this state, the router still waits to hear from the active router.
Listen – The router is receiving hello messages.
Speak – The router is sending and receiving hello messages
Standby – The router is prepared to assume packet-transfer functions if the active router fails
VRRP
VRRP is an open standards implementation that is very similar to HSRP. It uses the terms master/backup instead of primary/standby. VRRP uses a virtual mac address in the format 0000.5E00.01XX, where XX is the group number. Most configurations are similar to HSRP, except they start with the vrrp keyword:
VRRP advertisements are sent to 224.0.0.18 with protocol number 112. By default they are sent every 1 second. Default holdtime is of 3 seconds
Cisco devicese allow msec timers for VRRP although this is non-standard.
VRRP can only track objects, not interfaces:
Also, VRRP is preemptive by default, which is different than HSRP.
GLBP
GLBP is a Cisco proprietary protocol. The advantage of GLBP is that it additionally provides load balancing over multiple routers (gateways) using a single virtual IP address and multiple virtual MAC addresses. The forwarding load is shared among all routers in a GLBP group rather than being handled by a single router while the other routers stand idle.
An AVG (Active Virtual Gateway) will be elected using the same mechanics as the HSRP primary or the VRRP master router. The difference is that AVG’s role is to maintain a list of maximum 4 AVF (Active Virtual Forwarder) and assignes a MAC address to them, in the format 0007.b4XX.XXYY (XXXX = GLBP Group, YY – VF Number). The AVG will reply to ARP requests with the MAC address assigned to the AVFs, thus achieving load balancing.
A router that is assigned a MAC address will be a primary AVF, while the other routers can take over the MAC address if the primary AVF fails. Most GLBP configurations are similar to HSRP and VRRP
On the AVG you can set the load-balancing method, using:
When using weighted load-balancing you can define a WEIGHT for each router:
Premption is off by default for AVG, but is on by default for AVF, with a delay of 30 seconds.
GDP
Gateway Discovery Protocol is a feature that enables a host to listen for routing protocol advertisements and select a default gateway. A router must disable ip routing before using GDP:
To verify, use on the host:
IRDP
Besides listening to RIP or EIGRP messages, GDP can use IRDP to discover available gateways. In order to configure a router to send IRDP (ICMP Router Discovery Protocol) messages, use:
There is no preemption with IRDP. Instead, the PREFERENCE value is used only to chose between different addresses advertised by the oldest router (if it is configured to send advertise several addresses). A host will choose as default gateway the address with the lowest positive preference, or if they are all negative, the lowest negative.
IRDP messages are sent as broadcasts by default, but the router can be configured to send them as multicast to 224.0.0.1
The hosts will chose the IRDP To verify, use on the router advertising IRDP:
Last updated