IP Static Routing Skills Test (Module 15.6.4)
True / False
True / False
True / False
Select all that apply
Select all that apply
True / False
Select all that apply
Put in order
Select all that apply
Frequent Errors on 15.6.4 IP Static Routing Assessments
Confusing Next-Hop and Exit Interface
Many learners always configure only a next-hop IP or only an exit interface without considering interface type. On point-to-point links either form works, but on multiaccess Ethernet an exit interface can break ARP resolution. Match the method to the interface and follow platform guidelines in the module.
Incorrect Network and Mask Pairing
Static routes often fail because the network address and subnet mask do not match. Learners sometimes type the first host address instead of the subnet network address. Convert the destination to binary or use subnetting rules to confirm the network boundary before writing the ip route command.
Missing or Misplaced Default Route
Another error is omitting a default route on edge routers or configuring it on the wrong device. Some students point the default route toward an internal router instead of the upstream gateway. Always confirm which router connects toward the internet or core and direct the default route there.
Ignoring Administrative Distance for Floating Statics
Learners configure floating static routes but forget to set a higher administrative distance than the dynamic protocol. The static route then overrides OSPF or EIGRP. Always add an appropriate fourth parameter, for example ip route 0.0.0.0 0.0.0.0 203.0.113.1 200, so the route becomes a backup.
Weak Verification and Troubleshooting
Some students configure routes correctly but skip verification. They do not check the routing table, interface status, or ping paths. Use a consistent checklist with show ip route, show ip interface brief, and targeted pings to confirm reachability and quickly isolate errors.
15.6.4 IP Static Routing Quick Reference Sheet
You can print or save this section as a PDF for quick reference during labs and revision.
Basic IPv4 Static Route Syntax
- Command format:
ip route <dest-network> <mask> <next-hop> [distance]orip route <dest-network> <mask> <exit-interface> [distance]. - dest-network: Network address, not a host address. Example:
192.168.10.0. - mask: Dotted decimal subnet mask for the destination network. Example:
255.255.255.0. - next-hop: Neighbor router IP that is reachable on a local interface.
- exit-interface: Local interface that forwards packets toward the destination.
- distance: Optional administrative distance. Larger value means less preferred.
Common Static Route Types
- Network-specific route: Example
ip route 10.10.0.0 255.255.0.0 192.0.2.2. Used for a particular remote network. - Host route: Example
ip route 192.168.1.10 255.255.255.255 198.51.100.1. Used for a single IP, often for servers. - Default route: Example
ip route 0.0.0.0 0.0.0.0 203.0.113.1. Used when no more specific route exists. - Floating static route: Same as above but with higher distance. Example
ip route 10.10.0.0 255.255.0.0 192.0.2.2 150.
Verification Commands
- show ip route: Confirms presence of static routes marked with S.
- show ip route static: Filters the table to only static entries.
- show ip interface brief: Checks interface status and IP addressing.
- ping <destination>: Tests reachability. Use extended ping to set source interface if needed.
- traceroute <destination>: Reveals the layer 3 path and routing loops.
Quick Troubleshooting Checklist
- Confirm interfaces are up and have correct addresses.
- Verify static route network and mask match the remote network.
- Check next-hop reachability with ping.
- Look for more specific routes that might override your static route.
- Review administrative distance for floating statics.
Worked Example: Configuring and Verifying IPv4 Static Routes
Scenario Overview
R1 and R2 are connected by network 172.16.0.0/30. R1 has LAN 192.168.1.0/24 on G0/0. R2 has LAN 10.0.0.0/24 on G0/0. You must configure static routes so each LAN can reach the other.
Step 1: Verify Directly Connected Networks
- On each router run
show ip interface brief. Confirm R1 has 192.168.1.1/24 on G0/0 and 172.16.0.1/30 on S0/0/0. Confirm R2 has 10.0.0.1/24 on G0/0 and 172.16.0.2/30 on S0/0/0. - Ping 172.16.0.2 from R1. Ping 172.16.0.1 from R2. This proves the point-to-point link works.
Step 2: Configure Static Routes
- On R1 configure a route to the 10.0.0.0/24 LAN through R2:
This uses R2 as the next hop.R1(config)# ip route 10.0.0.0 255.255.255.0 172.16.0.2 - On R2 configure a route to the 192.168.1.0/24 LAN through R1:
R2(config)# ip route 192.168.1.0 255.255.255.0 172.16.0.1
Step 3: Verify the Routing Table
- On R1 run
show ip route. You should see an entry marked S for 10.0.0.0/24 pointing to 172.16.0.2. - On R2 run
show ip route. You should see an S entry for 192.168.1.0/24 pointing to 172.16.0.1.
Step 4: Test End-to-End Connectivity
- From a host on 192.168.1.0/24 ping a host on 10.0.0.0/24. If pings fail, ping from R1 to 10.0.0.1 and from R2 to 192.168.1.1 to isolate the segment with issues.
- If the route is missing, recheck the network, mask, and next-hop values in each ip route command.
15.6.4 IP Static Routing Quiz FAQ
Common Questions About the 15.6.4 IP Static Routing Quiz
What specific skills does the 15.6.4 IP static routing quiz check?
This quiz checks your ability to read and write ip route commands, interpret routing table entries, choose between next-hop and exit-interface formats, configure default and floating static routes, and troubleshoot broken reachability caused by incorrect masks, wrong next-hop addresses, or missing routes.
How can I prepare most effectively before attempting the quiz?
Recreate small topologies in a simulator and practice adding, removing, and modifying static routes. Use show ip route, show running-config, ping, and traceroute to confirm your changes. Focus on understanding why a packet follows a particular path instead of only memorizing command syntax.
What is the difference between a regular static route and a floating static route?
A regular static route has the default administrative distance of 1 and usually beats dynamic routes. A floating static route includes a higher distance value. It remains in the configuration but appears in the routing table only when the primary dynamic or static path becomes unavailable.
How do quiz questions typically test default route concepts?
Many questions present a partial topology with internet or core connectivity. You identify which router must host the default route and what the correct next-hop or exit interface should be. Some items require you to spot misconfigured default routes that point back into the internal network instead of outward.
Which quiz mode should I choose for practice?
Use the quick mode with 11 questions for rapid review of core ideas. Choose the standard mode with 21 questions for balanced practice that mixes configuration and troubleshooting. Select the full mode with 25 questions when you want a longer session that stresses route interpretation and failure analysis.