• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Changing default route on PIX501

reicherb

Platinum Member
What am I doing wring here. I'm moving a PIX501 from a test site to it's final destination.
The current routes look like this:
outside 0.0.0.0 0.0.0.0 66.277.203.1
outside 10.0.0.0 255.255.255.240 10.0.0.2
inside 192.168.2.0 255.255.255.0 192.168.2.1

The IP addresses are:
inside 192.168.2.1
outside 10.0.0.2

The upstream routers address is:
10.0.0.1

I'm entering:
route 0.0.0.0 0.0.0.0 10.0.0.1 and get an error message

I also tried:
no route 0.0.0.0 0.0.0.0 66.277.203.1 and get an error on that one two?

Any idea what I've got wrong?

Thanks.
 
On all of the Cisco routers I have used in the Config Terminal I had to use "ip route ...." or " no ip route ...". So, I think you are just minssing ip in your statements.

Edit: You are going to want to remove the route to the zero network before you enter in the new default route.
 
I may be reading this wrong, but it looks like it's not letting you add that route because that would match part of the route you have in this line:

outside 10.0.0.0 255.255.255.240 10.0.0.2

If you were trying to forward 0.0.0.0 traffic to 10.0.0.1, then it looks like it would be looking for 10.0.0.2 because of that rule, which would create a loop.

Try deleting that one first.

Also, soem routes on PIX boxes are implicit, and you can't get rid of them, try getting all of your IP addresses set, and then doing a clear route, then save, reload and check the implicits, then add what you need.
 
It's really weird. I ended up copying and pasting that lie of the config with no in front of it and it worked....
 
Back
Top