OSPF · · 1 min read

Common OSPF Passive Interface Mistakes

Common OSPF Passive Interface Mistakes

Mistake 2: Forgetting to Make User VLANs Passive

Problem: User-facing VLANs send OSPF Hellos

Impact:

Fix:

router ospf 1
 passive-interface vlan 10
 passive-interface vlan 20

Or use default:

router ospf 1
 passive-interface default
 no passive-interface gi0/0  ← Uplink only

Mistake 3: Using passive-default Without Exclusions

Problem:

router ospf 1
 passive-interface default
 ! (Forgot to exclude uplinks)

Impact: ALL interfaces passive, no neighbors

Fix:

router ospf 1
 no passive-interface gi0/0
 no passive-interface gi0/1

Verification

R1# show ip protocols | include Passive
  Passive Interface(s):
    Vlan10
    Vlan20
    Loopback0

Should see: User VLANs, loopbacks
Should NOT see: Uplinks to other OSPF routers


Summary

Never make uplinks passive
Always make user VLANs passive
Always make loopbacks passive
Use passive-default on edge routers

Next: Subnet Mask Mismatch (Article 25)


Internal Links:

Read next

© 2025 Ping Labz. All rights reserved.