Two Cisco routers, R1 and R2, are directly connected over their GigabitEthernet0/0 interfaces in OSPFv2 Area 0. Interface GigabitEthernet0/0 on R1 has an IP address of with a default IP MTU of bytes. Interface GigabitEthernet0/0 on R2 has an IP address of and its IP MTU has been modified to bytes. Both routers successfully exchange Hello packets and recognize each other as neighbors, but the output of `show ip ospf neighbor` on R1 shows R2 perpetually stuck in the `EXSTART` state.
If the network administrator cannot alter the IP MTU size on either router interface, which configuration command must be configured under interface GigabitEthernet0/0 to allow the OSPF neighbor relationship to reach the `FULL` state?
- Apply the `ip ospf mtu-ignore` command under the interface configuration mode on either or both routers.Answer
- BApply the `ip ospf hello-interval 10` command under the interface configuration mode on R2.
- CReconfigure R2 with a higher OSPF Router ID using the `router-id 3.3.3.3` command under `router ospf` mode.
- DConfigure `ip ospf network point-to-point` under the interface configuration mode on both connected interfaces.
Answer
The neighbor relationship can reach the FULL state by configuring the `ip ospf mtu-ignore` command on the interface with the MTU mismatch.
The correct option applies `ip ospf mtu-ignore` under interface configuration mode. When OSPF routers transition from 2-WAY to EXSTART, they negotiate Master/Slave roles and exchange Database Description (DBD) packets. Each router includes its interface MTU in the DBD packet. If there is an MTU mismatch, the router receiving the larger MTU value drops or ignores the DBD packet, keeping the adjacency stuck in EXSTART (or EXCHANGE). Executing `ip ospf mtu-ignore` forces OSPF to ignore the MTU value in incoming DBD packets, allowing the exchange to proceed to the FULL state.
Step-by-Step Solution
Key Concept
OSPF Neighbor Adjacencies and MTU Negotiation in ExStart State