OSPF Passive-Interface Explained
In dynamic routing protocols like OSPF (Open Shortest Path First), not every router interface needs to actively participate in the protocol. A LAN interface connecting only to end hosts doesn’t need to form OSPF adjacencies, but its subnet should still be advertised. This is where the passive-interface command is used.
For more background on OSPF, explore OSPF on Wikipedia.
What Does Passive-Interface Do?
- Stops OSPF from sending/receiving hello packets on the interface.
- The interface does not form neighbor adjacencies.
- The network connected to the interface is still advertised into OSPF.
Applying Passive-Interface to Selected Interfaces
Router3# configure terminal
Router3(config)# router ospf 44
Router3(config-router)# network 0.0.0.0 255.255.255.255 area 100
Router3(config-router)# passive-interface Ethernet0
Making All Interfaces Passive by Default
Router3# configure terminal
Router3(config)# router ospf 44
Router3(config-router)# network 0.0.0.0 255.255.255.255 area 100
Router3(config-router)# passive-interface default
Router3(config-router)# no passive-interface Ethernet0
Interactive Diagram: Passive vs Active Interfaces
graph TD
R3[Router3]
LAN1[Ethernet0 - LAN]
LAN2[Ethernet1 - LAN]
WAN[WAN Link to Router1]
R3 --> LAN1
R3 --> LAN2
R3 --> WAN
LAN1 --> OSPF[OSPF Area 100]
LAN2 --> OSPF
WAN --> OSPF
%% Styling
classDef passive fill:#fdd,stroke:#d00,stroke-width:2px;
classDef active fill:#dfd,stroke:#080,stroke-width:2px;
class LAN1,LAN2 passive;
class WAN active;
The red-colored nodes represent passive interfaces (advertise subnets but don’t form adjacencies), while the green node is an active interface (forms OSPF adjacency). Hover or click nodes to see relationships in Mermaid-supported viewers.
Key Differences and Best Practices
- Security: Reduces exposure of OSPF hello packets.
- Efficiency: Prevents unnecessary protocol chatter.
- Scalability: Default passive interfaces simplify large deployments.
Real-World Use Cases
- Branch Office Routers: LAN interfaces passive; WAN interface active.
- Hub-and-Spoke WAN: Only hub adjacency; spokes passive elsewhere.
- Data Center Edge: ISP-facing links passive but advertise subnets.
- Security-Sensitive Environments: Reduce hello packet exposure to end hosts.
Final Thoughts
The passive-interface command is essential for efficient, secure OSPF configuration. Starting with all interfaces passive by default and enabling only required adjacencies is the modern best practice.