🌐 Networking Intermediate

What is the difference between convergence time in routing protocols?

Why Interviewers Ask This

This question targets practical, hands-on experience with Networking. Interviewers want to see if you've worked with these concepts in real projects, not just read about them. Strong answers include concrete examples.

Answer

Convergence is the time it takes for all routers in a network to have a consistent, accurate view of the network topology after a change (link failure, router failure, new route). Fast convergence minimizes downtime. Comparison: RIP: slowest — periodic updates every 30 seconds, holddown timers add 180+ seconds — can take minutes to converge. OSPF: fast — hello interval (10s) detects failures; SPF recalculation completes in milliseconds; converges in seconds. Tuning hello/dead intervals reduces detection time. EIGRP: very fast — maintains feasible successor routes for instant failover without recalculation; reconvergence in milliseconds for pre-calculated backup paths. BGP: slowest by design — minutes — to allow routing policy to propagate globally. BFD (Bidirectional Forwarding Detection) detects link failures in milliseconds and notifies routing protocols, dramatically improving convergence regardless of the routing protocol used. In data centers, BFD combined with OSPF or BGP achieves sub-second convergence.

Common Mistake

A common mistake is memorizing definitions without understanding implications. When asked this question, go one level deeper — explain what happens when this concept is misused or ignored.