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

ICMP not working

Status
Not open for further replies.

acollard83

IS-IT--Management
May 1, 2005
179
0
0
US
I am having difficulty getting ICMP to work correctly. I have an access list that allows icmp on the external interface yet no one can ping it. It is a NAT outside interface. Relevent configs are posted below.

interface GigabitEthernet6/14
description 500M Internet to ATT
ip address 12.250.X.X 255.255.255.252
ip access-group 105 in
ip nat outside
speed nonegotiate


ip nat inside source list 105 interface GigabitEthernet6/14 overload

access-list 105 permit ip any any
access-list 105 permit icmp any any echo
access-list 105 permit icmp any any echo-reply
 
Hmmm.. the only issue or reason behind this is the access list creation. The order or ACL lines is totally incorrect. It should work but just to make sure, change the configurations starting by deleting the current ACL and adding the lines as follows:

(config)#no access-list 105
(config)#access-list 105 permit icmp any any echo
(config)#access-list 105 permit icmp any any echo-reply
(config)#access-list 105 permit ip any any

if you want my opinion? just remove this ACL! lets assume that it allows ICMP Echo and Echo Reply, but "access-list 105 permit ip any any" is allowing everything else like there is no ACL.

I hope to get back with feedback if you tried it or another approach.

Regards,
Badi
 
That access-list does do nothing, the very first line would permit every type of icmp packet as well as any other ip packet.

When you say that nobody can ping your 12.250.X.X/30 address, where are you trying to ping it from?
 
The access list was added because nobody can ping the IP. No one can ping from outside our network.
 
Configure an IP address on your laptop that's in the external subnet of your ATT-facing router, unplug ATT from the router and replace it with your laptop. (probably need a crossover cable).
Can you ping it?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top