A network administrator needs to configure reliable static default routing on a Cisco IOS router by tying a primary static route to an IP SLA probes object, ensuring that the route is automatically withdrawn if the target becomes unreachable. Arrange the operational and CLI configuration steps in the correct chronological order from establishing the probe metric to static route activation.
- 1Define the IP SLA probe instance (e.g., `ip sla 1`) and configure the ICMP echo target IP address along with its execution schedule (`ip sla schedule 1 life forever start-time now`).
- 2Create an object tracking process (`track 10 ip sla 1 reachability`) to monitor the state and reachability metric returned by the IP SLA probe.
- 3Configure the primary default static route referencing the tracking object using the CLI syntax: `ip route 0.0.0.0 0.0.0.0 198.51.100.1 track 10`.
- 4The router verifies that tracking object is in the UP state following successful ICMP responses and installs the static route into the Routing Information Base (RIB).
Answer
The correct chronological sequence is: (1) Define and schedule the IP SLA probe instance, (2) Create the object tracking process monitoring IP SLA reachability, (3) Configure the static route bound to the track object ID, and (4) Verify probe success leading to tracking state UP and RIB installation.
The correct sequence follows the mandatory dependency hierarchy in Cisco IOS: first, the IP SLA engine must be defined and scheduled to generate active probes; second, a tracking object must be constructed to translate probe results into a boolean UP/DOWN status; third, the IPv4 static route must be configured with the `track` keyword; and finally, once the tracking object confirms reachability (UP state), the router installs the static route into the routing table (RIB).
Step-by-Step Solution
Key Concept
IPv4 Static Route Object Tracking with IP SLA