Ad
News

Cisco Beats Its Own Lowered Sales Estimates As Slowing U.S. Economy Bites

Published on May 07, 2008

The slowing U.S. economy is biting a lot of tech companies hard, but Cisco has managed to meet its own lowered financial forecasts and beat those of the analysts in its latest quarterly results. Read more

Man Cleared Of Child Porn Charges, DIA Stands By Decision To Fire Him

Published on June 17, 2008

A Department of Industrial Accidents investigator was recently told to clean out his desk when he was found to have a significant amount of smut and child porn on his state-owned laptop. Read more

ATI Catalyst drivers have a problem

Published on August 27, 2004

ATI has a problem in the latest Catalyst drivers. Read more

X-rays create 3D image of the inside of nanocrystals

Published on July 07, 2006

Roland Piquepaille writes in on his Technology Trends website about a new approach that could show scientists a way to create three-dimensional photographs of actual molecules: Researchers from the University College London say that they were able to create full 3D images of the inside of nanocrystals by using a process known as coherent X-ray diffraction imaging. Read more

Latest Reviews & Articles

System Builder Marathon: Performance & Value

Published on November 28, 2008

We tightened the budget on this month’s enthusiast-level system while loosening our belt for the low-cost gamer box by a similar percentage. Today we gauge the effect of these changes on performance and value and compare to last month's machines. Read more

System Builder Marathon: $1,250 Enthusiast PC

Published on November 27, 2008

On this, the second day of our System Builder Marathon, Don turns down the price tag of his mid-range build looking for a sweet spot just above the $1,000 marker. Let's see what sort of hardware he found for it! Read more

System Builder Marathon: $625 Gaming PC

Published on November 26, 2008

This month's System Builder Marathon is all about your feedback to us. We've revamped our entry-level and mid-range PCs with new price points. Let's kick things off with what we think is the best value at a $625 price point! Read more

The State Of The Personal Computer

Published on November 25, 2008

Where were we in 2008 and where are we heading in 2009? In his State of the Personal Computer address, Alan Dang shares his insights as a user of three different platforms: Mac, Windows, and Linux. Read more

  Tom's Hardware Forums » General Networking » Firewall » [cisco PIX 515e] problem ping from inside to outside
 

[cisco PIX 515e] problem ping from inside to outside




Word :   Username :  
 
Bottom
Author
 Thread : [cisco PIX 515e] problem ping from inside to outside
 
Profile: stranger
More Information

Hi everybody,

I have to configure a cisco PIX 515e

There are three interfaces

-Outside
-Inside
-DMZ (not yet configured)

For the moment, I just want to be able to ping internet IP from the hosts of my Inside interface.

Here is my configuration!!! What is it missing???

interface ethernet0 auto
interface ethernet1 auto
interface ethernet2 auto
nameif ethernet0 outside security0
nameif ethernet1 inside security100
nameif ethernet2 dmz security50
enable password 8Ry2YjIyt7RRXU24 encrypted
passwd 2KFQnbNIdI.2KYOU encrypted
hostname pixfirewall
fixup protocol dns maximum-length 512
.
.
fixup protocol tftp 69
names
access-list ping_acl permit icmp any any
pager lines 24
ip address outside xx.xxx.xx.2 255.255.255.224
ip address inside 192.168.1.1 255.255.255.0
ip address dmz 192.168.3.1 255.255.255.0
ip audit info action alarm
ip audit attack action alarm
pdm history enable
arp timeout 14400
nat (inside) 1 192.168.1.0 255.255.255.0 0 0
static (inside,outside) 192.168.1.0 xx.xxx.xx.0 netmask 255.255.255.224 0 0
access-group ping_acl in interface inside
route outside 0.0.0.0 0.0.0.0 xx.xxx.xx.1 1




THANK YOU FOR YOUR HELP!!!

Related Product

Register or log in to remove.

Profile: Faithful Poster
More Information

shouldn't this line:
access-list ping_acl permit icmp any any

be:
access-list allow_ping permit icmp any any

Maybe it is different in the newer PIX os versions but I seem to recall it being allow_ping instead of ping_acl.

Profile: stranger
More Information

You need to have an access-list on the outside interface that allows the ICMP replies to come back into your network:

You can use the same..

access-group ping_acl in interface outside

Profile: stranger
More Information

I see that you have not given global command.

This is needed for the inside traffic to be routed in internet.

add it and let me know how it goes.

Profile: stranger
More Information

global (outside) 1 interface

Profile: stranger
More Information

Hi,

It is quite simple.

Steps are like this.

(1) Just create an access-list for permitting the IP to go outside.

(2) Next step is you need to enable ICMP echo-reply Inbound in your outside interface.

In your configuration, it would be :-

# access-list ping_acl permit ip any any
#access-group ping_acl in interface outside

It will work..

or if you want to enable ping for a single computer, you can replace the first command with

# access-list ping_acl permit ip 192.168.1.77 255.255.255.255 any

where 192.168.1.77 is the ip of the computer.


Also in your configuration

remove the line

# static (inside,outside) 192.168.1.0 xx.xxx.xx.0 netmask 255.255.255.224 0 0

and add

#global(outside) 1 interface

where all you internal hosts uses the outside interface address to access the external internet. This is the right way for that configuration.


Regards,

Jojes

Profile: stranger
More Information

I HAVE A SIMILAR PROBLEM WITH THE PIX I want to do ping to an Internet address on the eth of dmz or inside but not with himself .To help me?

What is wrong??

PIXIT# sh conf
: Saved
: Written by enable_15 at 22:10:06.994 UTC Thu Jun 15 2006
PIX Version 6.3(5)
interface ethernet0 auto
interface ethernet1 auto
interface ethernet2 auto
nameif ethernet0 outside security0
nameif ethernet1 inside security100
nameif ethernet2 dmz security4
enable password XXXXXXXXX encrypted
passwd XXXXXXXX encrypted
hostname PIXIT
domain-name mydomain.com
fixup protocol dns maximum-length 512
fixup protocol ftp 21
fixup protocol h323 h225 1720
fixup protocol h323 ras 1718-1719
fixup protocol http 80
fixup protocol rsh 514
fixup protocol rtsp 554
fixup protocol sip 5060
fixup protocol sip udp 5060
fixup protocol skinny 2000
fixup protocol smtp 25
fixup protocol sqlnet 1521
fixup protocol tftp 69
names
name 0.0.0.0 lan
access-list inside_access_in permit ip interface inside interface dmz
access-list inside_access_in permit icmp interface inside interface dmz
access-list inside_access_in permit udp interface inside interface dmz
access-list inside_access_in permit tcp interface inside interface dmz
access-list dmz_access_in permit tcp interface dmz interface inside
access-list dmz_access_in permit udp interface dmz interface inside
access-list dmz_access_in permit icmp interface dmz interface inside
access-list dmz_access_in permit ip interface dmz interface inside
access-list ping_acl permit ip any any
access-list ping_acl permit icmp any any
access-list allow_ping permit icmp any any
pager lines 24
logging on
logging standby
icmp permit any outside
icmp permit any inside
icmp permit any dmz
mtu outside 1500
mtu inside 1500
mtu dmz 1500
ip address outside IPINTERNET 255.255.255.224
ip address inside 10.4.1.4 255.255.0.0
ip address dmz 192.168.1.11 255.255.255.0
ip audit info action alarm
ip audit attack action alarm
pdm location 10.5.0.0 255.255.0.0 inside
pdm location 10.0.0.0 255.255.0.0 inside
pdm location 192.168.0.0 255.255.0.0 inside
pdm history enable
arp timeout 14400
global (outside) 10 interface
global (dmz) 5 interface
static (inside,dmz) 10.0.0.0 10.0.0.0 netmask 255.255.0.0 0 0
static (inside,outside) 10.0.0.0 10.0.0.0 netmask 255.255.0.0 0 0
access-group ping_acl in interface outside
access-group inside_access_in in interface inside
access-group dmz_access_in in interface dmz
rip outside default version 1
rip inside default version 1
rip dmz default version 1
route outside lan lan 200.49.11.193 1
route inside 10.5.0.0 255.255.0.0 10.4.1.3 1
route inside 192.168.0.0 255.255.0.0 10.4.1.4 1
timeout xlate 3:00:00
timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 rpc 0:10:00 h225 1:00:00
timeout h323 0:05:00 mgcp 0:05:00 sip 0:30:00 sip_media 0:02:00
timeout sip-disconnect 0:02:00 sip-invite 0:03:00
timeout uauth 0:05:00 absolute
aaa-server TACACS+ protocol tacacs+
aaa-server TACACS+ max-failed-attempts 3
aaa-server TACACS+ deadtime 10
aaa-server RADIUS protocol radius
aaa-server RADIUS max-failed-attempts 3
aaa-server RADIUS deadtime 10
aaa-server LOCAL protocol local
aaa authentication enable console LOCAL
aaa authentication serial console LOCAL
aaa authentication telnet console LOCAL
http server enable
http 10.4.0.0 255.255.0.0 inside
http 192.168.1.0 255.255.255.0 dmz
no snmp-server location
no snmp-server contact
snmp-server community public
no snmp-server enable traps
floodguard enable
telnet 10.4.0.0 255.255.0.0 inside
telnet 192.168.1.0 255.255.255.0 dmz
telnet timeout 5
ssh timeout 5
console timeout 0
username leon password XXXXXXX encrypted privilege 15
username polo password XXXXXXXXX encrypted privilege 15
terminal width 80
Cryptochecksum:4b08d8a59341c000a19b69cdc73e9fb8

Profile: stranger
More Information

Simple..

In you access list " ping_acl" , just permit icmp echo-reply.

the command will be like this :-


access-list ping_acl permit icmp any any echo-reply

it shud work

Regards,

Jojes

Profile: stranger
More Information

PIXTPS(config)# access-list ping_acl permit icmp any any echo-reply
PIXTPS(config)# write mem
Building configuration...
Cryptochecksum: bb3fd072 43a74908 55efe67c 19df1a77
[OK]
PIXTPS(config)# ping inside 192.168.1.5
192.168.1.5 NO response received -- 1000ms
192.168.1.5 NO response received -- 1000ms
192.168.1.5 NO response received -- 1000ms
PIXTPS(config)# ping inside 192.168.1.5
192.168.1.5 NO response received -- 1000ms
192.168.1.5 NO response received -- 1000ms
192.168.1.5 NO response received -- 1000ms
PIXTPS(config)#

:((( don't work

Profile: stranger
More Information

Oh.. you want to ping your local internal address only.

For this you need to enable Network Address Translation (NAT) for the respective address,, whether it is inside or DMZ interfaces mentioning different NAT ID.

Profile: stranger
More Information

to say to me like doing it?

thanks

Profile: stranger
More Information

Quote :

You need to have an access-list on the outside interface that allows the ICMP replies to come back into your network:

You can use the same..

access-group ping_acl in interface outside



I have to configure a pix 515E. I know nuts about it can anyone help me out with the configuration commands and how to deny the access to internet or outside interfece for a range of ip address in the internal network

Profile: journeyman
More Information

Quote :


static (inside,outside) 192.168.1.0 xx.xxx.xx.0 netmask 255.255.255.224 0 0


Since the 192.168.1.0 is your internal ip address, the format of the static mapping like this :
static (inside,outside) xx.xxx.xx.0 192.168.1.0 netmask 255.255.255.224 0 0

Profile: stranger
More Information

I'm studying...


  Tom's Hardware Forums » General Networking » Firewall » [cisco PIX 515e] problem ping from inside to outside

Go to:
 

Google Ads