A network engineer is troubleshooting an OSPFv2 adjacency issue between two directly connected routers, R1 and R2, both running IOS-XE. The link is a point-to-point Ethernet link. The engineer issues 'show ip ospf neighbor' on R1 and sees no neighbors. 'show ip ospf interface GigabitEthernet0/0' on R1 shows 'Network Type BROADCAST', but the link is actually a point-to-point link. Both routers have 'ip ospf 1 area 0' configured on the interface. What is the most likely cause of the adjacency not forming?
Trap 1: The OSPF network type mismatch between the two routers (one is…
Both show BROADCAST, so no mismatch.
Trap 2: The interface is configured with 'ip ospf passive-interface'.
Passive interface would still allow the router to receive hellos but not send them, but the neighbor list would show the neighbor in INIT state, not absent.
Trap 3: The OSPF process is not enabled globally; 'router ospf 1' is…
If 'ip ospf 1 area 0' is configured on the interface, the process is automatically created if not already present.
- A
The OSPF network type mismatch between the two routers (one is BROADCAST, the other is POINT-TO-POINT).
Why wrong: Both show BROADCAST, so no mismatch.
- B
The routers have duplicate OSPF router IDs.
Duplicate router IDs prevent OSPF adjacency from forming; each router must have a unique router ID.
- C
The interface is configured with 'ip ospf passive-interface'.
Why wrong: Passive interface would still allow the router to receive hellos but not send them, but the neighbor list would show the neighbor in INIT state, not absent.
- D
The OSPF process is not enabled globally; 'router ospf 1' is missing.
Why wrong: If 'ip ospf 1 area 0' is configured on the interface, the process is automatically created if not already present.