WAN Troubleshooting Knowledge Base Structure
Each page will include:
Troubleshooting methodology – the universal steps you always follow.
Checklists per protocol – what to check first, in order.
Golden commands – Cisco & Nokia side by side, for quick copying.
Reference configs – minimal working configs you can compare.
Common mistakes / pitfalls – what usually breaks and how to spot it.
Quick fix recipes – short instructions for the most common failures.
1. Troubleshooting Methodology
Verify physical connectivity: ping, traceroute, interface up.
Check interfaces are UP / line protocol UP
Cisco:
show ip interface brief
show interfaces Gig0/0
Nokia:
show router interface
show port <port-id>
Ping directly connected neighbbor
Traceroute if multihop
Verify IGP basics: interface IPs, MTU, ACL, reachability.
Check interface IPs
Cisco: show running-config | section interface
Nokia: show router interface
Check MTU consistency
Cisco: show interfaces Gig0/0 | include MTU
Nokia: show router interface detail
Check ACLs/firewall blocking OSPF (protocol 89)
Cisco: show access-lists
Nokia: show filter
Verify neighbor states: DOWN → INIT → EXSTART → LOADING → FULL.
Show OSPF neighbors
Cisco: show ip ospf neighbor
Nokia: show router ospf neighbor
Verify area types: backbone, stub, NSSA, totally stubby.
Cisco:
show ip ospf (check area type backbone = 0)
show running-config | section ospf
Nokia:
show router ospf area
show router ospf
Check both sides are in the same area type -- mismatches --> neighbors from but LSAs rejected
Verify LSAs: flooding, SPF, missing routes.
View LSDB (OSPF Database)
Cisco: show ip ospf database
Nokia: show router ospf lsdb
Check SPF runs (Cisco only)
show ip ospf statistics (spf count should increase after topology changes)
Check authentication (plain or MD5).
Cisco: show ip ospf interface Gig0/0 (check auth type + key ID)
Nokia: show rotuer ospf interface
Mismatch = adjancy stuck in DOWN or EXSTART
Compare running config vs reference config.
Cisco: show running-config | section ospf
Nokia: show router ospf
Look for:
Router IDs are unique
Area IDs match
Passive vs non Passive is correct
Authentication keys identical
Use debug/logs carefully if needed.
Cisco:
debug ip ospf adj
debug ip ospf hello
Nokia:
tools dump router ospf hello
tools dump router ospf adj
Use only in lab or during maintenance windows (HIGH CPU)
2. OSPF Checklist
Neighbor stuck DOWN → check cabling, interface shutdown, ACLs
Cisco: show ip ospf neighbor
Cisco: show interfaces Gig0/0
Nokia: show router ospf neighbor
Nokia: show router interface
Neighbor INIT → hello packets mismatch
Cisco: debug ip ospf hello
Cisco: show ip ospf interface Gig0/0 (check Hello/dead timers, network type)
Nokia: tools dump router ospf hello
Nokia: show router ospf interfaces
Neighbor EXSTART/EXCHANGE → MTU mismatch, duplicate Router ID
Cisco: show interfaces Gig0/0 | include MTU
Cisco: show ip ospf (check ROUTER ID)
Nokia: show router interface detail
Nokia: show router ospf
Neighbor LOADING → database mismatch
Cisco: show ip ospf database
Cisco: debug ip ospf adj
Nokia: show router ospf lsdb
Nokia: tools dump router ospf adj
Routes missing → area misconfig, summarization, redistribution missing
Cisco: show ip route ospf
Cisco: show running-config | section ospf
Nokia: show router router-table protocol ospf
Nokia: show router ospf
LSAs being rejected → authentication or area mismatch
Cisco: show ip ospf interface Gig0/0 (auth mismatch)
Cisco: debug ip ospf adj (will log auth failure)
Nokia: show router ospf interface (auth type/key)
Nokia: tools dump router ospf adj




5. Common Mistakes / Pitfalls
MTU mismatch on WAN links → neighbor stuck in EXSTART
Duplicate Router ID → neighbor never forms
Passive interface on wrong link → neighbor stuck DOWN
Area type mismatch → routes missing or LSAs rejected
Redistributed routes missing → check route maps/policies
6. Quick Fix Recipes
Neighbor stuck DOWN → ping neighbor, check ACL, interface status, clear ospf process
Neighbor stuck EXSTART → check MTU, router IDs, interface type (broadcast vs point-to-point)
Route missing → check area type, summarize, redistribution
Authentication errors → check MD5 keys match



