<?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: PIX PACKET SIZE PROBLEM. in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/pix-packet-size-problem/m-p/311114#M560066</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Only allowing "echo-reply" will still break Path MTU Discovery.  Allow "unreachable" in and see how you go.  Allowing "time-exceeded" will allow traceroutes to work properly also.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 30 Sep 2004 22:38:03 GMT</pubDate>
    <dc:creator>gfullage</dc:creator>
    <dc:date>2004-09-30T22:38:03Z</dc:date>
    <item>
      <title>PIX PACKET SIZE PROBLEM.</title>
      <link>https://community.cisco.com/t5/network-security/pix-packet-size-problem/m-p/311110#M560060</link>
      <description>&lt;P&gt;Hi all, I have this situation: &lt;/P&gt;&lt;P&gt;PC - PIX 506 - Router - WAN - Router - AS400&lt;/P&gt;&lt;P&gt;this is my problem:&lt;/P&gt;&lt;P&gt;I ping by my PC the remote AS/400 by this command: &lt;/P&gt;&lt;P&gt;PING AS/400 -l 1472&lt;/P&gt;&lt;P&gt;I obtain correct response.&lt;/P&gt;&lt;P&gt;PING as/400 -l 1500&lt;/P&gt;&lt;P&gt;I obtain time out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MTU size is default set to 1500 on pix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seams my PIX 506 doesn't fragment packet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to solve this???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tks for any answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rrgg &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 07:39:25 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-packet-size-problem/m-p/311110#M560060</guid>
      <dc:creator>sgozio</dc:creator>
      <dc:date>2020-02-21T07:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: PIX PACKET SIZE PROBLEM.</title>
      <link>https://community.cisco.com/t5/network-security/pix-packet-size-problem/m-p/311111#M560061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, so you have a PIX, a router, an entire WAN, and another router in between your PC and the AS400, yet you decide that the PIX is the cause of the problem.  What has led you to that?  And if you're pinging with packet size of 1500, why would the PIX need to fragment if the PIX MTU is set to 1500?  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The cause of the problem is most likely that you're blocking Path MTU Discovery from working properly, by not allowing the ICMP packets back in through the PIX.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'll probably find one of the paths in the WAN has a lower MTU, and so that router sends back an ICMP Unreachable back to your host.  Your host should then fragment the packet down itself so that all fragments can make it to the AS400.  The PIX however, will be blocking this ICMP Unreachable from getting back to your PC unless you have explicitly permitted it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add the following to your PIX:&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;access-list inbound permit icmp any any unreachable&lt;/P&gt;&lt;P&gt;access-list inbound permit icmp any any time-exceeded&lt;/P&gt;&lt;P&gt;access-list inbound permit icmp any any echo-reply&lt;/P&gt;&lt;P&gt;access-group inbound in interface outside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and see how that goes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read up on &lt;A class="jive-link-custom" href="http://www.cisco.com/warp/public/105/38.shtml#pmtud_fail" target="_blank"&gt;http://www.cisco.com/warp/public/105/38.shtml#pmtud_fail&lt;/A&gt; for some further information.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Sep 2004 22:24:14 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-packet-size-problem/m-p/311111#M560061</guid>
      <dc:creator>gfullage</dc:creator>
      <dc:date>2004-09-29T22:24:14Z</dc:date>
    </item>
    <item>
      <title>Re: PIX PACKET SIZE PROBLEM.</title>
      <link>https://community.cisco.com/t5/network-security/pix-packet-size-problem/m-p/311112#M560062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excuse me, explaination: I decide that PIX is cause of the problem because without PIX (I set on one PC the same IP address of the PIX) the PING work correctly. I need to adjust this because AS/400 has MTU size set to 1496 and is not possible change it.&lt;/P&gt;&lt;P&gt;In access list I alredy have:&lt;/P&gt;&lt;P&gt;access-list inbound permit icmp any any echo-reply &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TKS. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Sep 2004 06:37:50 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-packet-size-problem/m-p/311112#M560062</guid>
      <dc:creator>sgozio</dc:creator>
      <dc:date>2004-09-30T06:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: PIX PACKET SIZE PROBLEM.</title>
      <link>https://community.cisco.com/t5/network-security/pix-packet-size-problem/m-p/311113#M560065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another info:&lt;/P&gt;&lt;P&gt;By console I set my PIX in debug mode: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    debug icmp trace&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when I send ping  with size = or &amp;lt; 1472 I see on console various information about icmp traffic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when I send ping with size &amp;gt; 1472 I see nothing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Re-TKS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Sep 2004 07:05:34 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-packet-size-problem/m-p/311113#M560065</guid>
      <dc:creator>sgozio</dc:creator>
      <dc:date>2004-09-30T07:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: PIX PACKET SIZE PROBLEM.</title>
      <link>https://community.cisco.com/t5/network-security/pix-packet-size-problem/m-p/311114#M560066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Only allowing "echo-reply" will still break Path MTU Discovery.  Allow "unreachable" in and see how you go.  Allowing "time-exceeded" will allow traceroutes to work properly also.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Sep 2004 22:38:03 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-packet-size-problem/m-p/311114#M560066</guid>
      <dc:creator>gfullage</dc:creator>
      <dc:date>2004-09-30T22:38:03Z</dc:date>
    </item>
  </channel>
</rss>

