A network administrator is configuring redundant internet connectivity on an edge router. The primary ISP connection is reachable via next-hop IPv4 address , while a secondary backup ISP connection is reachable via next-hop IPv4 address . The administrator must configure a primary default static route and a floating backup default static route so that the backup link is utilized only when the primary link fails. Which TWO commands must be configured on the router to fulfill these requirements?
- ip route 0.0.0.0 0.0.0.0 203.0.113.1Answer
- ip route 0.0.0.0 0.0.0.0 198.51.100.1 210Answer
- Cip route 0.0.0.0 0.0.0.0 198.51.100.1
- Dip route 0.0.0.0 0.0.0.0 203.0.113.1 210
Answer
The router requires two default static routes: one primary route pointing to next-hop 203.0.113.1 using default administrative distance 1 ('ip route 0.0.0.0 0.0.0.0 203.0.113.1'), and one floating static route pointing to next-hop 198.51.100.1 with an administrative distance higher than 1 ('ip route 0.0.0.0 0.0.0.0 198.51.100.1 210').
To establish a primary default static route and a floating backup default static route, the primary path must be configured with a lower administrative distance (default is 1) pointing to 203.0.113.1, and the backup path must be configured with an administrative distance strictly higher than 1 (such as 210) pointing to 198.51.100.1. The router installs the route with the lower administrative distance into the routing table under normal operations. If the primary interface or path fails, the route with administrative distance 210 becomes active.
Step-by-Step Solution
Key Concept
Floating Static Route Configuration and Administrative Distance