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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cant ping need example config

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Would anyone be able to provide me with an example config that would allow me to ping my external router from an inside host? here are my example ips:
Internal host 10.1.1.5
Inside interface (pix) 10.1.1.1 255.255.255.0
Outside interface (pix) 200.1.1.1 255.255.255.0
External Router (e0) 200.1.1.2
I statically assigned 10.1.1.5 to 200.1.1.5 using this command
static (inside,outside) 200.1.1.5 10.1.1.5 netmask 255.255.255.255 0 0
This is driving me crazy and I know it cant be that complicated!
 
Hi
try these:

global (outside) 1 interface
nat (inside) 1 0.1.1.5 255.255.255.255 0 0


oh
 
you were so lazy to read the basic
you always have to think about how device will route the packet.
at least set the default route for this box:

route outside 0 0 200.1.1.2 1

and then exercise your pain from there.

if u need help, money talks ...

:)
 
access-list FROMOUTSIDE permit ip any host 200.1.1.5
access-list FROMOUTSIDE permit icmp any host 200.1.1.5
access-group FROMOUTSIDE in interface outside

icmp line allows inbound pings
This will do, later take icmp permit out and fine tune this access list.

:)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top