Exhibit
R1# show ip route
Codes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route
Gateway of last resort is not set
10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 10.0.0.0/30 is directly connected, GigabitEthernet0/0
L 10.0.0.1/32 is directly connected, GigabitEthernet0/0
198.51.100.0/24 is variably subnetted, 2 subnets, 2 masks
C 198.51.100.0/30 is directly connected, GigabitEthernet0/1
L 198.51.100.1/32 is directly connected, GigabitEthernet0/1
203.0.113.0/24 is variably subnetted, 2 subnets, 2 masks
C 203.0.113.0/30 is directly connected, GigabitEthernet0/2
L 203.0.113.1/32 is directly connected, GigabitEthernet0/2
R1# show ipv6 route
IPv6 Routing Table - default - 4 entries
Codes: C - Connected, L - Local, S - Static, U - Per-user Static route
B - BGP, R - RIP, I1 - ISIS L1, I2 - ISIS L2
IA - ISIS interarea, IS - ISIS summary, D - EIGRP, EX - EIGRP external
ND - Neighbor Discovery, NDp - Neighbor Discovery prefix
O - OSPF Intra, OI - OSPF Inter, OE1 - OSPF ext 1, OE2 - OSPF ext 2
ON1 - OSPF NSSA ext 1, ON2 - OSPF NSSA ext 2
C 2001:db8:10:0:0:0:0:0/112 [0/0]
via GigabitEthernet0/0, directly connected
L 2001:db8:10:0:0:0:0:1/128 [0/0]
via GigabitEthernet0/0, receive
C 2001:db8:198:51:100:0:0:0/112 [0/0]
via GigabitEthernet0/1, directly connected
L 2001:db8:198:51:100:0:0:1/128 [0/0]
via GigabitEthernet0/1, receive
C 2001:db8:203:0:113:0:0:0/112 [0/0]
via GigabitEthernet0/2, directly connected
L 2001:db8:203:0:113:0:0:1/128 [0/0]
via GigabitEthernet0/2, receive
R1# show running-config | section ip route
ip route 0.0.0.0 0.0.0.0 203.0.113.2
ip route 0.0.0.0 0.0.0.0 198.51.100.2 200
R1# show running-config | section ipv6 route
ipv6 route ::/0 2001:db8:203:0:113::2- A
Remove the incorrect IPv6 default route: no ipv6 route ::/0 2001:db8:198:51:100::2; configure the primary default route: ip route 0.0.0.0 0.0.0.0 203.0.113.2; the floating route is already configured with AD 200; add IPv6 default route: ipv6 route ::/0 2001:db8:203:0:113::2
This option completes all required tasks: it removes the conflicting IPv6 default route, adds the primary IPv4 default route with default AD, and adds the correct IPv6 default route, while the IPv4 floating route with AD 200 already exists.
- B
Configure the primary default route: ip route 0.0.0.0 0.0.0.0 203.0.113.2; change the floating route AD to 1; add IPv6 default route: ipv6 route ::/0 2001:db8:203:0:113::2
Why wrong: This is incorrect because changing the floating route's AD to 1 would make both routes have the same AD, causing load balancing or unpredictable behavior, not a backup. The floating route must have a higher AD to serve as a backup.
- C
Configure the primary default route: ip route 0.0.0.0 0.0.0.0 203.0.113.2 200; the floating route is already configured with AD 200; add IPv6 default route: ipv6 route ::/0 2001:db8:203:0:113::2
Why wrong: This is incorrect because the primary route should have the default AD of 1, not 200. Assigning AD 200 to the primary route makes it equal to the floating route, so neither takes precedence, and the router may not use the intended path.
- D
Configure the primary default route: ip route 0.0.0.0 0.0.0.0 203.0.113.2; the floating route is already configured with AD 200; no IPv6 route is needed because IPv6 is not required.
Why wrong: This is incorrect because the question explicitly requires IPv6 static routes to reach the Internet. Omitting the IPv6 default route means R1 cannot reach IPv6 destinations, failing the requirement.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.