Correct Answer: B,D
Explanation/Reference:
Explanation:
In this question we are running VRF Lite on R1. VRF Lite is also knows as "VRF without running MPLS".
This is an example of how to configure VRF Lite with EIGRP:
ip vrf FIRSTrd 1:1!ip vrf SECONDrd 1:2!router eigrp 1no auto-summary!address-family ipv4 vrf FIRSTnetwork 10.1.1.1 0.0.0.0no auto-summaryautonomous-system 200exit-address-family!address- family ipv4 vrf SECONDnetwork 10.1.2.1 0.0.0.0no auto-summaryautonomous-system 100exit- address- family!interface FastEthernet0/0ip vrf forwarding FIRSTip address 10.1.1.1 255.255.255.0! interface FastEthernet0/1ip vrf forwarding SECONDip address 10.1.2.1 255.255.255.0 The above example creates two VRFs (named "FIRST" and "SECOND"). VRF "FIRST" runs on EIGRP AS 200 while VRF "SECOND" runs on EIGRP AS 100. After that we have to add interfaces to the appropriate VRFs. From this example, back to our question we can see that R1 is missing the "autonomous-system ..." command under
"address-family ipv4 vrf R2. And R1 needs an interface configured under that VRF.
NotE. R2 does not run VRF at all! Usually R2 resides on customer side.