cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1109
Views
0
Helpful
2
Replies

IP Routing issue?

jwilder01
Level 1
Level 1

I am not sure what I am missing, but I have an IP that does not want to route.

Gateway of last resort is 192.168.3.14 to network 0.0.0.0

S*    0.0.0.0/0 [1/0] via 192.168.3.14
S     192.168.1.0/24 [1/0] via 192.168.23.1
      192.168.3.0/24 is variably subnetted, 2 subnets, 2 masks
C        192.168.3.0/24 is directly connected, GigabitEthernet0/1.1
L        192.168.3.21/32 is directly connected, GigabitEthernet0/1.1
S     192.168.4.0/24 [1/0] via 192.168.23.1
S     192.168.5.0/24 [1/0] via 192.168.23.1
S     192.168.10.0/24 [1/0] via 192.168.23.1
      192.168.21.0/30 is subnetted, 1 subnets
S        192.168.21.0 [1/0] via 192.168.23.1
      192.168.23.0/24 is variably subnetted, 2 subnets, 2 masks
C        192.168.23.0/30 is directly connected, GigabitEthernet0/0
L        192.168.23.2/32 is directly connected, GigabitEthernet0/0
      192.168.25.0/30 is subnetted, 1 subnets
S        192.168.25.0 [1/0] via 192.168.23.1
      192.168.27.0/30 is subnetted, 1 subnets
S        192.168.27.0 [1/0] via 192.168.23.1
      192.168.30.0/24 is variably subnetted, 2 subnets, 2 masks
C        192.168.30.0/24 is directly connected, GigabitEthernet0/1.10
L        192.168.30.1/32 is directly connected, GigabitEthernet0/1.10
S     192.168.40.0/24 [1/0] via 192.168.23.1
S     192.168.50.0/24 [1/0] via 192.168.23.1
VGW_2901_ODA#sh ip route 173.247.105.170
% Network not in table
VGW_2901_ODA#

 

Am I missing something simple?

 

Here are the 'ip route' commands.

 

ip route 0.0.0.0 0.0.0.0 192.168.3.14
ip route 192.168.1.0 255.255.255.0 192.168.23.1
ip route 192.168.4.0 255.255.255.0 192.168.23.1
ip route 192.168.5.0 255.255.255.0 192.168.23.1
ip route 192.168.10.0 255.255.255.0 192.168.23.1
ip route 192.168.21.0 255.255.255.252 192.168.23.1
ip route 192.168.25.0 255.255.255.252 192.168.23.1
ip route 192.168.27.0 255.255.255.252 192.168.23.1
ip route 192.168.40.0 255.255.255.0 192.168.23.1
ip route 192.168.50.0 255.255.255.0 192.168.23.1

 

 

Regards,
Jason

1 Accepted Solution

Accepted Solutions

ghostinthenet
Level 7
Level 7

The "show ip route" command will only show you routing table entries that have an explicit (not default) route. If you want to see where the router is sending traffic, use the "show ip cef 173.247.105.170" command instead.

---
Jody Lemoine, Network Architect
CCIE 41436, MTCRE, MTCINE, MTCIPv6E
tishco networks, Virtually Everywhere
(905) 378-1134, jody.lemoine@tishco.ca

View solution in original post

2 Replies 2

ghostinthenet
Level 7
Level 7

The "show ip route" command will only show you routing table entries that have an explicit (not default) route. If you want to see where the router is sending traffic, use the "show ip cef 173.247.105.170" command instead.

---
Jody Lemoine, Network Architect
CCIE 41436, MTCRE, MTCINE, MTCIPv6E
tishco networks, Virtually Everywhere
(905) 378-1134, jody.lemoine@tishco.ca

Thank you.