2.15 Static Routes

Troubleshooting

Verify a Static Route

Display only the IPv4 static routes in the routing table.

R1# show ip route static | begin Gateway 
Gateway of last resort is not set 
      172.16.0.0/16 is variably subnetted, 5 subnets, 2 masks 
S        172.16.1.0/24 [1/0] via 172.16.2.2 
S     192.168.1.0/24 [1/0] via 172.16.2.2 
S     192.168.2.0/24 [1/0] via 172.16.2.2 
R1#

Display output for only the specified network in the routing table.

R1# show ip route 192.168.2.1 
Routing entry for 192.168.2.0/24 
  Known via "static", distance 1, metric 0 
  Routing Descriptor Blocks: 
  * 172.16.2.2 
      Route metric is 0, traffic share count is 1 
R1#

Filter the running configuration to display only IPv4 static routes.

R1# show running-config | section ip route 
ip route 172.16.1.0 255.255.255.0 172.16.2.2 
ip route 192.168.1.0 255.255.255.0 172.16.2.2 
ip route 192.168.2.0 255.255.255.0 172.16.2.2 
R1#

Display only IPv6 Routes

R1# show ipv6 route static 
IPv6 Routing Table - default - 8 entries 
Codes:  C - Connected, L - Local, S - Static, U - Per-user Static route 
        B - BGP, R - RIP, H - NHRP, I1 - ISIS L1 
        I2 - ISIS L2, IA - ISIS interarea, IS - ISIS summary, D - EIGRP 
        EX - EIGRP external, ND - ND Default, NDp - ND Prefix, DCE - Destination 
        NDr - Redirect, RL - RPL, O - OSPF Intra, OI - OSPF Inter 
        OE1 - OSPF ext 1, OE2 - OSPF ext 2, ON1 - OSPF NSSA ext 1 
        ON2 - OSPF NSSA ext 2, la - LISP alt, lr - LISP site-registrations 
        ld - LISP dyn-eid, lA - LISP away, le - LISP extranet-policy 
        a - Application 
S    2001:DB8:ACAD:1::/64 [1/0] 
      via 2001:DB8:ACAD:2::2 
S    2001:DB8:CAFE:1::/64 [1/0] 
      via 2001:DB8:ACAD:2::2 
S    2001:DB8:CAFE:2::/64 [1/0] 
      via 2001:DB8:ACAD:2::2 
R1#

Display a specific IPv6 Network

R1# show ipv6 route 2001:db8:cafe:2:: 
Routing entry for 2001:DB8:CAFE:2::/64 
   Known via "static", distance 1, metric 0 
   Route count is 1/1, share count 0 
   Routing paths: 
     2001:DB8:ACAD:2::2 
       Last updated 00:18:34 ago 

R1#

Display the IPv6 Static Route Configuration

R1# show running-config | section ipv6 route 
ipv6 route 2001:DB8:ACAD:1::/64 2001:DB8:ACAD:2::2 
ipv6 route 2001:DB8:CAFE:1::/64 2001:DB8:ACAD:2::2 
ipv6 route 2001:DB8:CAFE:2::/64 2001:DB8:ACAD:2::2 
R1#