C | Connected | 0 | | L | Local (interface IP/32) | 0 | | S | Static | 1 | | O | OSPF | 110 | Administrative Distance (AD) is the router's trust ranking. Lower AD wins when two sources advertise the same prefix. A static route (AD 1) beats OSPF (AD 110) — which is exactly how floating static routes work (more below). --- ## The Four Static Route Types ### 1. Network Static Route Used to reach a specific remote subnet. Syntax: `` ip route [destination-network] [subnet-mask] [next-hop-IP | exit-interface] ` Example scenario: Router R1 needs to reach the 192.168.30.0/24 subnet. The next-hop router's IP is 10.0.0.2. ` R1(config)# ip route 192.168.30.0 255.255.255.0 10.0.0.2 ` After this, show ip route will show: ` S 192.168.30.0/24 [1/0] via 10.0.0.2 `` ### 2. Default Static Route (Gateway of Last Resort) Matches any destination when…Unlock the full CCNA 200-301 course — every lesson, the AI tutor, and full mock exams.