cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1336
Views
0
Helpful
4
Replies

ICMP Using Cisco Configuration Professional

rkulik512
Level 1
Level 1

I am trying to set up the router (881) using Cisco Configuration Professional, to allow ping reply's..I can not for the life of me figure it out.  Any ideas greatly appreciated..

4 Replies 4

Marvin Rhoads
Hall of Fame
Hall of Fame

By default the router will respond to pings.

Do you have IOS zone-based firewall turned on by chance? If so, I can reply with what you'd need to allow ping replies.

yes it is using IOS zone

You need to add icmp to the allowed traffic from "self to out-zone" (out-zone being the external interface. In the CCP GUI it will look something like this:

That translates to CLI configuration lines similar to the following (only directly relevant commands included here):

class-map type inspect match-any ccp-cls-icmp-access

match protocol icmp

match protocol tcp

match protocol udp

policy-map type inspect ccp-permit-icmpreply

class type inspect ccp-icmp-access

  inspect

class class-default

  pass

zone-pair security ccp-zp-self-out source self destination out-zone

service-policy type inspect ccp-permit-icmpreply

interface GigabitEthernet0/1

description  $FW_OUTSIDE$

zone-member security out-zone

hmmm thats what I have....any thoughts??