Exhibit
R1# show running-config | include ip route
ip route 0.0.0.0 0.0.0.0 198.51.100.1
ip route 0.0.0.0 0.0.0.0 203.0.113.1 130
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 198.51.100.1 to network 0.0.0.0
S* 0.0.0.0/0 [1/0] via 198.51.100.1, GigabitEthernet0/0
R1# ping 8.8.8.8 source GigabitEthernet0/0
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 8.8.8.8, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5)
R1# conf t
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)# interface GigabitEthernet0/0
R1(config-if)# shutdown
%LINK-5-CHANGED: Interface GigabitEthernet0/0, changed state to administratively down
%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0, changed state to down
R1(config-if)# end
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 198.51.100.1 to network 0.0.0.0
S* 0.0.0.0/0 [1/0] via 198.51.100.1, GigabitEthernet0/0
R1# show ip route 0.0.0.0 0.0.0.0 longer-prefixes
% Subnet not in table
R1# show ip route 0.0.0.0 0.0.0.0
Routing entry for 0.0.0.0/0, supernet
Known via "static", distance 1, metric 0 (connected)
Last update from 198.51.100.1 on GigabitEthernet0/0
Routing Descriptor Blocks:
* 198.51.100.1, via GigabitEthernet0/0
Route metric is 0, traffic share count is 1- A
Remove the primary static route and reconfigure it without the 'permanent' keyword, then verify the backup route appears in the routing table.
The primary static route was likely configured with the 'permanent' keyword, which keeps the route in the routing table even if the next-hop interface goes down. Removing the 'permanent' keyword allows the route to be removed when the interface fails, enabling the floating static route with AD 130 to take over.
- B
Change the administrative distance of the floating static route to 1 so it is preferred over the primary route.
Why wrong: This is incorrect because changing the AD to 1 would make the backup route the primary route, defeating the purpose of a floating static route. The backup route should have a higher AD than the primary route so it only becomes active when the primary is lost.
- C
Add the 'permanent' keyword to the floating static route to ensure it remains in the routing table.
Why wrong: This is incorrect because adding 'permanent' to the floating static route would keep it in the routing table even if its next-hop interface fails, but the issue is that the primary route is not being removed. The backup route is already configured; the problem is that the primary route persists due to the 'permanent' keyword.
- D
Configure a static route with a next-hop of 203.0.113.1 and an administrative distance of 130, but also add the 'track' command to monitor the primary link.
Why wrong: This is incorrect because the floating static route is already configured with AD 130. Adding a track object is a valid method to monitor the primary link, but the question states the backup route is not taking over. The root cause is the primary route persisting due to the 'permanent' keyword, not the lack of tracking.
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.