Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ping from inside 1

Status
Not open for further replies.

galloshes

MIS
Jul 10, 2003
14
GB
Hi ALL,

I would like to be able to ping from network inside the PIX but do not want to open up holes from the outside.
What command(s) would I need?

many thanks
 
either use the old conduit command
conduit permit icmp any any
or a better solution, much more secure one anyways is
access-list allowin permit icmp any any
access-group allowin in int outside
and even better is to refine it even more with
access-list allowin permit icmp any any echo-reply
access-list allowin permit icmp any any unreachable
access-list allowin permit icmp any any source-quench
access-list allowin permit icmp any any time-exceeded
access-group allowin in int outside

now you can ping to where ever you like and traceroute too.

Eddie Venus
 
i'm using the conduit method
bit more info- I'm trying to allow ping from a specific machine inside the PIX to a specific url outside the PIX. Therefore I'm trying to allow outbound ping. Won't your example allow all types of ping in both directions?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top