VRF Flashcards
Define VRF
Virtual Route Forwarding - when a physical router is logically divided creating separate virtual routers. Router interfaces, routing tables, and forwarding tables are completely isolated between VRFs.
Describe the steps to create two VRFs (VRF Lite) called network-A and network-B and assign interface gi0/0 and gi0/1 to each VRF. Assume the IPv4 address for the interface are 10.1.0.2 and 10.1.1.2 respectively. The IPv6 address is 2001:DB8:1234::2/64 and 2001:DB8:1234:1::2/64.
Step 1 - Router# configure terminal
Step 2 - Router(config)# vrf definition network-A
Step 3 - Router(config-vrf)# address-family ipv4
Step 4 - Router(config-vrf)# address-family ipv6
Step 5 - Router(config)# vrf definition network-B
Step 6 - Router(config-vrf)# address-family ipv4
Step 7 - Router(config-vrf)# address-family ipv6
Step 8 - Router(config)# int gi0/0
Step 9 - Router(config-if)# vrf forwarding network-A
NOTE: upon entering this command ipv4 and ipv6 addresses will
be wiped out
Step 10 - Router(config-if)# ip address 10.1.0.2 255.255.255.0
Step 11 - Router(config-if)# ipv6 address 2001:DB8:1234::2/64
Step 12 - Router(config)# int gi0/1
Step 13 - Router(config-if)# vrf forwarding network-B
Step 10 - Router(config-if)# ip address 10.1.1.2 255.255.255.0
Step 11 - Router(config-if)# ipv6 address 2001:DB8:1234:1::2/64
Describe the steps to create two VRFs (VRF Lite) called network-A and network-B and assign interface gi0/0 and gi0/1 to each VRF. Assume the IPv4 address for the interface are 10.1.0.2 and 10.1.1.2 respectively. Use the “IPv4 only” method to configure the VRFs.
Step 1 - Router# configure terminal
Step 2 - Router(config)# ip vrf network-A
Step 3 - Router(config)# ip vrf network-B
Step 4 - Router(config)# int gi0/0
Step 5 - Router(config-if)# ip vrf forwarding network-A
NOTE: upon entering this command the ip address will be reset
Step 6 - Router(config-if)# ip address 10.1.0.2 255.255.255.0
Step 7 - Router(config)# int gi0/1
Step 8 - Router(config-if)# ip vrf forwarding network-B
Step 9 - Router(config-if)# ip address 10.1.1.2 255.255.255.0
What is the command to show the routing table for the VRF named “network-A”?
Router# show ip route vrf network-A
NOTE: You can optionally add a network address to the end of the command to see a specific route, i.e.:
Router# show ip route vrf network-A 10.11.12.1
What is the command to display all of the VRFs configured on a given router?
Router# show ip vrf
What is the appropriate command to ping the ip address 4.4.4.4 as if you are on the network-A VRF?
Router# ping vrf network-A 4.4.4.4
Assuming that all VRFs are already configured on Router1. What are the steps to configure OSPF with a process number of 1 and advertise all networks in area 0 for the VRF named network-A?
Router1# configure terminal
Router1(config)# router ospf 1 vrf network-A
Router(config-router)# network 0.0.0.0 255.255.255.255 area 0
How do we show the verbose information regarding the VRFs on a router?
Router# show ip vrf detail