Refer to the exhibit. A network engineer is troubleshooting a missing route on R1. The router R3 is configured to advertise network 192.168.30.0/24 via OSPF, but the route is not present in the OSPF routing table of R1 when issuing the show ip route ospf command. What is the most likely cause?
Passive-interface default suppresses OSPF hello packets on all interfaces unless explicitly enabled. Without hellos, an adjacency cannot form, so R1 never learns the 192.168.30.0/24 route. The exhibit shows OSPF working with another neighbor, confirming the problem is isolated to R3’s interface configuration.
Why this answer
The exhibit from R1# show ip route ospf displays OSPF routes for 192.168.10.0/24 and 192.168.20.0/24 learned via 10.1.1.2 on GigabitEthernet0/1, proving that OSPF is functioning with neighbor R2. The route 192.168.30.0/24 that R3 is supposed to advertise is missing, indicating that R1 has not formed an OSPF adjacency with R3. When 'passive-interface default' is configured, OSPF hello packets are suppressed on all interfaces unless explicitly overridden with 'no passive-interface'.
As a result, R3 does not send hellos, preventing adjacency and route advertisement. This directly explains why the exhibit lacks the 192.168.30.0/24 entry.
Exam trap
Candidates often jump to answer A, thinking that a missing route means the network command is missing under OSPF. However, the scenario explicitly states R3 is configured to advertise the network, so the real issue is an adjacency problem caused by passive-interface default, which stops hellos from being exchanged.
Why the other options are wrong