cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
293
Views
0
Helpful
4
Replies

default route issue

dlabbadia01
Level 1
Level 1

hi me again. sorry for the newbieness of my questions:

in the following show route command results, i'm having problems figuring out if it's right. Info given to me by MCI,

default gateway: 54.54.54.190 changed for safety reasons

subnet mask : 255.255.255.192

outside interface = 54.54.54.129

inside interface = 172.16.10.1

interface3 = 172.16.20.1

interface4 = 172.16.40.1

interface5 = 172.16.50.1

i want the default gateway i'm assuming to be 54.54.54.129

here's the results, and is this right? for some reason the second line doesn't look right for outside....

PIX515URINTEL01(config)# show route

outside 0.0.0.0 0.0.0.0 63.123.35.190 0 OTHER static

outside 63.123.35.128 255.255.255.192 63.123.35.129 1 CONNECT static

inside 172.16.10.0 255.255.255.0 172.16.10.1 1 CONNECT static

global01 172.16.20.0 255.255.255.0 172.16.20.1 1 CONNECT static

surveys01 172.16.40.0 255.255.255.0 172.16.40.1 1 CONNECT static

vpn01 172.16.50.0 255.255.255.0 172.16.50.1 1 CONNECT static

4 Replies 4

kagodfrey
Level 3
Level 3

It looks fine

outside 0.0.0.0 0.0.0.0 63.123.35.190 0 OTHER static

This line is telling you the default route of the Pix - .190 as per the MCI information.

outside 63.123.35.128 255.255.255.192 63.123.35.129 1 CONNECT static

This line is telling you the details of the connected IP network on the outside interface - .129 being the outside interface's IP address and that this interface is the exit to get to that network.

HTH

Kev

Kev,

Thanks for the input.

One more question. Does the 0 hops in the first line need to be 1?

Yes, thats correct - it should indeed be 1

Kev

kevin-reynolds
Level 1
Level 1

It is correct. The default gateway should be the .190 address and the line :

outside 63.123.35.128 255.255.255.192 63.123.35.129 1 CONNECT static

is just saying that the 63.123.35.128 255.255.255.192 is directly connected to the outside interface of you PIX.

Kevin