<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Deny Inbound Message in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/deny-inbound-message/m-p/745733#M979460</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By default the PIX does not allow inbound ICMP packets.  ICMP is somewhat stateless and thus Ping will not work outbound unless you explicitly allow certain packets in through the access-list.  I.e.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list inside_access_in permit icmp any any unreachable&lt;/P&gt;&lt;P&gt;access-list inside_access_in permit icmp any any echo-reply&lt;/P&gt;&lt;P&gt;access-list inside_access_in permit icmp any any time-exceeded&lt;/P&gt;&lt;P&gt;access-list inside_access_in permit icmp any any traceroute&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Jun 2007 19:04:58 GMT</pubDate>
    <dc:creator>cmcbride</dc:creator>
    <dc:date>2007-06-05T19:04:58Z</dc:date>
    <item>
      <title>Deny Inbound Message</title>
      <link>https://community.cisco.com/t5/network-security/deny-inbound-message/m-p/745732#M979459</link>
      <description>&lt;P&gt;I am having an issue with trying to get a ping through a PIX515 with OS6.2(4).  The message I keep getting, and I am unsure as to why, is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;106011: Deny inbound (No xlate) icmp src ACCNT:ACCA2-BK_Fas00 dst ACCNT:ACCAS1_Tunnel3 (type 8, code 0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The config is attached.  I would be grateful if someone could assist please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Timothy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 10:24:53 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/deny-inbound-message/m-p/745732#M979459</guid>
      <dc:creator>tbogie_gvds</dc:creator>
      <dc:date>2019-03-11T10:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: Deny Inbound Message</title>
      <link>https://community.cisco.com/t5/network-security/deny-inbound-message/m-p/745733#M979460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By default the PIX does not allow inbound ICMP packets.  ICMP is somewhat stateless and thus Ping will not work outbound unless you explicitly allow certain packets in through the access-list.  I.e.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list inside_access_in permit icmp any any unreachable&lt;/P&gt;&lt;P&gt;access-list inside_access_in permit icmp any any echo-reply&lt;/P&gt;&lt;P&gt;access-list inside_access_in permit icmp any any time-exceeded&lt;/P&gt;&lt;P&gt;access-list inside_access_in permit icmp any any traceroute&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 19:04:58 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/deny-inbound-message/m-p/745733#M979460</guid>
      <dc:creator>cmcbride</dc:creator>
      <dc:date>2007-06-05T19:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: Deny Inbound Message</title>
      <link>https://community.cisco.com/t5/network-security/deny-inbound-message/m-p/745734#M979461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wouldn't these statements do roughly the same thing?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;name 172.16.4.138 ACCAS1_Tunnel3&lt;/P&gt;&lt;P&gt;name 172.16.4.6 ACCA2-BK_Fas00&lt;/P&gt;&lt;P&gt;pdm location ACCA2-BK_Fas00 255.255.255.255 inside&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;object-group network GRE_Tunnel_INSIDE&lt;/P&gt;&lt;P&gt;  network-object ACCA2-BK_Fas00 255.255.255.255&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;object-group icmp-type Management_PING&lt;/P&gt;&lt;P&gt;  icmp-object unreachable&lt;/P&gt;&lt;P&gt;  icmp-object time-exceeded&lt;/P&gt;&lt;P&gt;  icmp-object echo-reply&lt;/P&gt;&lt;P&gt;  icmp-object source-quench&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;access-list inside_access_in permit icmp object-group GRE_Tunnel_INSIDE host ACCAS1_Tunnel3 echo&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;access-list ACCNT_access_in permit icmp host ACCAS1_Tunnel3 object-group GRE_Tunnel_INSIDE object-group Management_PING&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;static (inside,ACCNT) ACCA2-BK_Fas00 ACCA2-BK_Fas00 netmask 255.255.255.255 0 0&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;access-group inside_access_in in interface inside&lt;/P&gt;&lt;P&gt;access-group ACCNT_access_in in interface ACCNT&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;route inside 172.16.4.4 255.255.255.252 ACCANSBK_Untrust&lt;/P&gt;&lt;P&gt;route ACCNT ACCAS1_Tunnel3 255.255.255.255 ACCA3_FastEth00 1&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2007 06:51:56 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/deny-inbound-message/m-p/745734#M979461</guid>
      <dc:creator>tbogie_gvds</dc:creator>
      <dc:date>2007-06-07T06:51:56Z</dc:date>
    </item>
  </channel>
</rss>

