A network engineer is troubleshooting an MPLS L3VPN where CE1 (192.168.1.0/24) cannot reach CE2 (192.168.2.0/24). The PE routers are running OSPF with the CEs. On PE1, the VRF configuration includes route-target import and export 100:100. The show ip vrf detail command on PE1 shows the VRF is active, but the CE1 loopback is not present in the VRF routing table. The show ip route vrf CUSTOMER command on PE1 shows only directly connected interfaces. What is the most likely cause?
Trap 1: The route-target import on PE1 is misconfigured.
Incorrect because route-target import/export is for VPNv4 route exchange between PEs, not for CE-PE route learning.
Trap 2: The CE1 interface is not in the VRF.
Incorrect because the VRF shows active and directly connected routes, meaning the interface is assigned to the VRF.
Trap 3: The MP-BGP session between PE1 and PE2 is down.
Incorrect because the issue is local CE route learning, not VPNv4 route exchange.
- A
The route-target import on PE1 is misconfigured.
Why wrong: Incorrect because route-target import/export is for VPNv4 route exchange between PEs, not for CE-PE route learning.
- B
The OSPF process on PE1 is not configured under the VRF.
Correct: OSPF must be configured with 'router ospf <pid> vrf CUSTOMER' to populate the VRF routing table.
- C
The CE1 interface is not in the VRF.
Why wrong: Incorrect because the VRF shows active and directly connected routes, meaning the interface is assigned to the VRF.
- D
The MP-BGP session between PE1 and PE2 is down.
Why wrong: Incorrect because the issue is local CE route learning, not VPNv4 route exchange.