What you just achieved
You manually taught routers how to reach each other.
That works… for small networks.
1️⃣ Why static routes worked here
You have:
- 2 routers
- 2 LANs
- 1 WAN link
So you needed:
- 1 static route on HO-R1
- 1 static route on BR-R2
That’s manageable.
2️⃣ What happens when the network grows (real life)
Imagine this instead:
- 10 branch offices
- Each branch has:
- Users
- Servers
- Wi-Fi
- Multiple WAN links
- Backup links
Now think:
- Every new network = new static routes
- Every link failure = manual fixes
- One typo = outage
Static routing becomes:
❌ Error-prone
❌ Hard to manage
❌ Not scalable
3️⃣ Core limitation of static routes (CCNA key point)
Static routes:
- Do not adapt
- Do not learn
- Do not recover from failures
Routers blindly follow them — even if the path is dead.
4️⃣ This is why dynamic routing exists
Dynamic routing protocols (like OSPF) allow routers to:
- Automatically learn networks
- Share routing information
- Recalculate paths if a link fails
- Scale to large networks
Routers start to think, not just follow instructions.
5️⃣ Why CCNA focuses on OSPF
OSPF is:
- Industry standard
- Link-state
- Fast convergence
- Used in enterprise networks
And it fits perfectly into your design:
- HQ = Area 0
- Branch = Area 1
- WAN = Area boundary
You built this topology for OSPF without realising it — that’s good design.
🧠 One sentence to lock this in
Static routes work for small networks, but dynamic routing (OSPF) is required for scalable, resilient enterprise networks.
