Refer to the exhibit. Which type of route does R1 use to reach host 10.10.13.10/32?
Answer: B
A. default route: A default route is the 0.0.0.0/0 least specific route, used only when no other more specific matching route exists in the routing table. Since a valid network route for the destination's subnet exists, R1 does not use the default route, so this option is incorrect.
B. network route: A network route is a routing table entry that maps an entire IP subnet (e.g., 10.10.13.0/24) to a next-hop address or exit interface. The destination host 10.10.13.10 falls within the range of this subnet, and no more specific route entry exists, so R1 uses this network route to reach the host. This option is correct.
C. host route: A host route is an extremely specific routing entry for IPv4 that uses a /32 subnet mask to match exactly one individual host IP address. For R1 to use a host route, its routing table would need a 10.10.13.10/32 entry, which is not present per the implicit exhibit data, so this option is incorrect.
D. floating static route: A floating static route is a manually configured static route assigned a higher administrative distance (AD) than primary routes from dynamic routing protocols or lower AD static routes, so it only activates if the primary route fails. There is no indication of a failed primary route or use of a higher AD backup static route in the scenario, so this option is incorrect. Key Concepts:
1. Longest Prefix Match (LPM): The standard algorithm used by routers to select the optimal route from the routing table, by prioritizing route entries with the longest subnet mask that matches the destination IP address. This ensures the most specific available path is used for forwarding.
2. Routing Entry Types: Routing tables contain multiple entry types including network routes (for entire subnets), host routes (for individual IP addresses), and default routes (for all unmatched destinations). Each type is used in order of specificity per LPM rules.
3. Administrative Distance (AD): A value assigned to routing sources (static routes, OSPF, EIGRP, etc.) to prioritize them when multiple routes to the same subnet exist from different sources. Floating static routes use a higher AD than primary routes to act as redundant backup paths. References:
Cisco IP Routing Route Lookup Process Documentation, Cisco 200-301 CCNA Official Exam Topics