Quiz Entry - updated: 2026.07.05
What is first-hop redundancy, and what role does the redundancy protocol play in the failover decision?
First-hop redundancy is the ability of a network to dynamically recover when the device acting as the default gateway (the "first hop") fails. The redundancy protocol determines which router is active, monitors its health, and triggers failover.
The redundancy protocol's responsibilities:
- Election: Determine which router should be the active (forwarding) router at startup
- Monitoring: Continuously check whether the active router is still operational (via periodic Hello messages)
- Failover: When the active router fails, transition the standby to the active role
- Transparency: Ensure the transition is invisible to end devices — no configuration change, no connectivity loss
Why "first hop"?
- In networking, the default gateway is the first router (first hop) a packet passes through to leave the local network
- If this first hop fails, the host is completely isolated — even though the rest of the internet may be fine
- FHRPs (First Hop Redundancy Protocols) specifically protect this critical first hop in the path
Real-world impact without FHRP:
- A single router failure can take down an entire floor, building, or VLAN (Virtual Local Area Network)
- With FHRP, failover typically happens in seconds (3-10 seconds for HSRP (Hot Standby Router Protocol) default timers)
- Users may notice a brief pause but don't lose their sessions (TCP (Transmission Control Protocol) connections survive short outages)
Go deeper:
First-hop redundancy protocol (Wikipedia) — protecting the default gateway via election/monitoring/failover across backups.