Refer to the exhibit. The Math and Science departments connect through the corporate IT router, but users in the Math department must not be able to reach the
Science department and vice versa.
Which configuration accomplishes this task?
Refer to the exhibit. The Math and Science departments connect through the corporate IT router, but users in the Math department must not be able to reach the
Science department and vice versa.
Which configuration accomplishes this task?
The correct configuration involves defining the VRF (Virtual Routing and Forwarding) instance and then applying it to the relevant interfaces. This configuration ensures that routes within the Math department are isolated from the Science department. Option B correctly creates the VRF instance named 'Science', applies the VRF to the interfaces first, and then assigns IP addresses. This order is crucial because applying the VRF after the IP address would remove the IP address from the interface. Therefore, using 'vrf forwarding Science' followed by the IP address configuration ensures proper isolation and functionality.
A. vrf definition Science address-family ipv4 ! interface E 0/2 ip address 192.168.1.1 255.255.255.0 no shut! interface E 0/3 ip address 192.168.2.1 255.255.255.0 no shut B. vrf definition Science address-family ipv4 ! interface E 0/2 vrf forwarding Science ip address 192.168.1.1 255.255.255.0 no shut ! interface E 0/3 vrf forwarding Science ip address 192.168.2.1 255.255.255.0 no shut C. vrf definition Science address-family ipv4 ! interface E 0/2 ip address 192.168.1.1 255.255.255.0 vrf forwarding Science no shut ! interface E 0/3 ip address 192.168.2.1 255.255.255.0 vrf forwarding Science no shut D. vrf definition Science ! interface E 0/2 ip address 192.168.1.1 255.255.255.0 no shut ! interface E 0/3 ip address 192.168.2.1 255.255.255.0 no shut
Answer B is correct. Remember that you must add the vrf to the interface first and then the ip address. Adding the ip address before the vrf forwarding will remove the ip address from the interface.
B is correct
vrf definition Science address-family ipv4 ! interface E 0/2 vrf forwarding Science ip address 192.168.1.1 255.255.255.0 no shut ! interface E 0/3 vrf forwarding Science ip address 192.168.2.1 255.255.255.0 no shut
B is Correct
B is correct
Yes i agree. B is correct
Why are the answer options in a line? ... you can also write in light gray small print.
ip vrf Science interface e0/2 ip vrf forwarding Science ip address 192.168.1.1 255.255.255.0 interface e0/2 ip vrf forwarding Science ip address 192.168.2.1 255.255.255.0 Entering the vrf-bound address-family ipv4 configuration mode is typically used to configure BGP. It's not clear why it's here.
B is correct.