I got a headache while trying to set up a PIX 501 firewall.
I could not ping from the inside interface to the outside interface. I wonder if the problem conserns rooting isues!!
Don't worry! You can't ping the interface facing away from you. A better test would be to see if you can ping the router or the next hop on the outside interface of the PIX. Don't forget that you will need to allow pings back in. By default the PIX doesn't allow icmp so you will have to allow it using "conduit permit icmp any any".
Chris.
************************
Chris Andrew, CCNA
chrisac@gmx.co.uk
************************
You have a problem with you NAT statements. Your inside network is on 10.68.144.0/24 and the outside network is 192.168.128.0/24. So, the nat (inside) statement tells the inside to NAT all traffic going out of the inside network. The global (outside) command is then saying that all IP's from NAT ID group 1 should go out on the address of 10.68.144.98. This is a problem because the 10.68 address isn't routeable on the 192.168 network.
So, your global (outside) statement should have an IP address in the 192.168 range so that all internal traffic goes out on that IP address. Or you could use the external interface of eth0 using the command global (outside) 1 interface.
Also, your static map statement doesn't make any sense. With a static statement you assign a global address to a private internal address. For example, if you have an internal mail server with a private IP you would put a static mapping in place to map it's MX record IP to the actual internal IP. What you have done is say that the external address of 192.168.128.0 should be mapped to the internal address of 10.68.144.0. These are unusable IPs as you are using a /24 mask which makes these IP addresses network addresses and not host addresses.
ip address outside 192.168.128.101 255.255.255.0
ip address inside 10.68.144.100 255.255.255.0
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.