300-410 Exam QuestionsBrowse all questions from this exam

300-410 Exam - Question 34


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?

Show Answer
Correct Answer: B

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.

Discussion

9 comments
Sign in to comment
bjromero28Option: B
Oct 25, 2021

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.

Carl1999Option: A
Feb 1, 2022

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

GirmitiOption: B
Jan 10, 2022

B is correct.

wts
Jan 31, 2022

Why are the answer options in a line? ... you can also write in light gray small print.

wts
Jan 31, 2022

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.

Hack4Option: B
Feb 8, 2022

Yes i agree. B is correct

Noproblem22Option: B
Nov 17, 2022

B is correct

hennnnOption: B
Feb 23, 2024

B is Correct

MasoudGhorbaniOption: B
Feb 26, 2024

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

SeMo0o0o0Option: B
Jul 17, 2024

B is correct