A network engineer is troubleshooting a route redistribution issue between OSPF and EIGRP. Routers R1 (OSPF) and R2 (EIGRP) are redistributing routes into each other. The engineer notices that some OSPF external routes are not appearing in the EIGRP topology table on R2, although the redistribution is configured. The show ip eigrp topology command on R2 does not list the missing prefixes. What is the most likely cause?
Trap 1: The redistribute ospf command under EIGRP is missing the match…
The match internal keyword is the default and includes OSPF internal routes, but external routes require match external.
Trap 2: The OSPF process on R1 has a route filter blocking external routes.
The issue is on the redistributing router (R2), not on R1.
Trap 3: EIGRP has a lower administrative distance than OSPF, causing route…
Administrative distance affects route selection, not redistribution of specific route types.
- A
The redistribute ospf command under EIGRP is missing the match internal keyword.
Why wrong: The match internal keyword is the default and includes OSPF internal routes, but external routes require match external.
- B
The redistribute ospf command under EIGRP is missing the match external keyword.
Correct: Without match external, OSPF external routes are not redistributed into EIGRP.
- C
The OSPF process on R1 has a route filter blocking external routes.
Why wrong: The issue is on the redistributing router (R2), not on R1.
- D
EIGRP has a lower administrative distance than OSPF, causing route suppression.
Why wrong: Administrative distance affects route selection, not redistribution of specific route types.