<?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 PAT port range in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/pat-port-range/m-p/2196323#M356859</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm looking for a way to avoid doing 999 individual port address translations for ports in a range 1-999 for the same protocol. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not finding anything that asa code v9.11 will allow. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the service objects defined but cannot find a way to get the nat statement to allow the service object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;P&gt;object network foobar&lt;/P&gt;&lt;P&gt;host 192.168.100.22&lt;/P&gt;&lt;P&gt;nat (inside,outside) static interface service fooservice fooservice&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope I'm missing something here. Any help appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Tue, 12 Mar 2019 00:58:42 GMT</pubDate>
    <dc:creator>lcaruso</dc:creator>
    <dc:date>2019-03-12T00:58:42Z</dc:date>
    <item>
      <title>PAT port range</title>
      <link>https://community.cisco.com/t5/network-security/pat-port-range/m-p/2196323#M356859</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm looking for a way to avoid doing 999 individual port address translations for ports in a range 1-999 for the same protocol. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not finding anything that asa code v9.11 will allow. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the service objects defined but cannot find a way to get the nat statement to allow the service object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;P&gt;object network foobar&lt;/P&gt;&lt;P&gt;host 192.168.100.22&lt;/P&gt;&lt;P&gt;nat (inside,outside) static interface service fooservice fooservice&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope I'm missing something here. Any help appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2019 00:58:42 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pat-port-range/m-p/2196323#M356859</guid>
      <dc:creator>lcaruso</dc:creator>
      <dc:date>2019-03-12T00:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: PAT port range</title>
      <link>https://community.cisco.com/t5/network-security/pat-port-range/m-p/2196324#M356860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Seems there is a bug in the 9.1 ASA software as I tried to configure this first with that software. That gave a wierd result and I checked another post on these forums that related to a similiar problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I then booted my ASA with 8.4(5) software and the NAT is now working normally. So I imagine you will have to wait for a correcting software or move to a older software to get it working in the meanwhile&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Heres the configuration I did and a "packet-tracer" output to test it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NAT CONFIGURATION&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;SERVICE-LOCAL = The actual port range on the LAN&lt;/LI&gt;&lt;LI&gt;SERVICE-MAPPED = The corresponding NATed/Mapped port range on the WAN&lt;/LI&gt;&lt;LI&gt;SERVER-LOCAL = Server IP on the LAN&lt;/LI&gt;&lt;LI&gt;SERVER-MAPPED = Server IP NATed/Mapped on the WAN&lt;/LI&gt;&lt;LI&gt;nat = The NAT configuration&lt;/LI&gt;&lt;LI&gt;Y.Y.Y.Y = One of my public IP addresses assigned to this NAT configuration&lt;/LI&gt;&lt;LI&gt;X.X.X.X = My server LAN IP address&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object service SERVICE-LOCAL&lt;/P&gt;&lt;P&gt; service tcp source range 5000 6000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object service SERVICE-MAPPED&lt;/P&gt;&lt;P&gt; service tcp source range 15000 16000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object network SERVER-LOCAL&lt;/P&gt;&lt;P&gt; host X.X.X.X&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object network SERVER-MAPPED&lt;/P&gt;&lt;P&gt; host Y.Y.Y.Y&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nat (LAN,WAN) source static SERVER-LOCAL SERVER-MAPPED service SERVICE-LOCAL SERVICE-MAPPED&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PACKET-TRACER TEST&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;WAN = My ASAs "outside" interface&lt;/LI&gt;&lt;LI&gt;1.2.3.4 = Random address behind the WAN interface&lt;/LI&gt;&lt;LI&gt;Y.Y.Y.Y = One of my public IP addresses assigned to this NAT configuration&lt;/LI&gt;&lt;LI&gt;X.X.X.X = My server LAN IP address&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASA# packet-tracer input WAN tcp 1.2.3.4 20000 Y.Y.Y.Y 15000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Phase: 1&lt;/P&gt;&lt;P&gt;Type: ACCESS-LIST&lt;/P&gt;&lt;P&gt;Subtype:&lt;/P&gt;&lt;P&gt;Result: ALLOW&lt;/P&gt;&lt;P&gt;Config:&lt;/P&gt;&lt;P&gt;Implicit Rule&lt;/P&gt;&lt;P&gt;Additional Information:&lt;/P&gt;&lt;P&gt;MAC Access list&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Phase: 2&lt;/P&gt;&lt;P&gt;Type: UN-NAT&lt;/P&gt;&lt;P&gt;Subtype: static&lt;/P&gt;&lt;P&gt;Result: ALLOW&lt;/P&gt;&lt;P&gt;Config:&lt;/P&gt;&lt;P&gt;nat (LAN,WAN) source static SERVER-LOCAL SERVER-MAPPED service SERVICE-LOCAL SERVICE-MAPPED&lt;/P&gt;&lt;P&gt;Additional Information:&lt;/P&gt;&lt;P&gt;NAT divert to egress interface LAN&lt;/P&gt;&lt;P&gt;Untranslate Y.Y.Y.Y/15000 to X.X.X.X/5000&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;STRONG&gt;Link to the dicussion with the NAT problem:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.cisco.com/thread/2196562" rel="nofollow"&gt;https://supportforums.cisco.com/thread/2196562?tstart=60&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Link to the BugID (&lt;SPAN style="color: #ff0000;"&gt;CLICK THE BUG ID AT THE END OF THE LINK&lt;/SPAN&gt;)&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="https://www.cisco.com/cisco/psn/bssprt/bss?searchType=bstbugidsearch&amp;amp;page=bstBugDetail&amp;amp;BugID=" rel="nofollow"&gt;https://www.cisco.com/cisco/psn/bssprt/bss?searchType=bstbugidsearch&amp;amp;page=bstBugDetail&amp;amp;BugID=&lt;/A&gt;&lt;A href="https://www.cisco.com/cisco/psn/bssprt/bss?searchType=bstbugidsearch&amp;amp;page=bstBugDetail&amp;amp;BugID=CSCud64705" rel="nofollow" target="_blank"&gt;CSCud64705&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Finally the same NAT configuration as above but while running ASA software 9.1(1)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;WAN = My ASAs "outside" interface&lt;/LI&gt;&lt;LI&gt;1.2.3.4 = Random address behind the WAN interface&lt;/LI&gt;&lt;LI&gt;Y.Y.Y.Y = One of my public IP addresses assigned to this NAT configuration&lt;/LI&gt;&lt;LI&gt;X.X.X.X = My ASA WAN interface IP address&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASA(config)# packet-tracer input WAN tcp 1.2.3.4 20000 Y.Y.Y.Y 15000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Phase: 1&lt;/P&gt;&lt;P&gt;Type: ROUTE-LOOKUP&lt;/P&gt;&lt;P&gt;Subtype: input&lt;/P&gt;&lt;P&gt;Result: ALLOW&lt;/P&gt;&lt;P&gt;Config:&lt;/P&gt;&lt;P&gt;Additional Information:&lt;/P&gt;&lt;P&gt;in&amp;nbsp;&amp;nbsp; X.X.X.X&amp;nbsp; 255.255.255.248 WAN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result:&lt;/P&gt;&lt;P&gt;input-interface: WAN&lt;/P&gt;&lt;P&gt;input-status: up&lt;/P&gt;&lt;P&gt;input-line-status: up&lt;/P&gt;&lt;P&gt;output-interface: WAN&lt;/P&gt;&lt;P&gt;output-status: up&lt;/P&gt;&lt;P&gt;output-line-status: up&lt;/P&gt;&lt;P&gt;Action: drop&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;Drop-reason: (no-route) No route to host&lt;/STRONG&gt;&lt;/SPAN&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;Hope the above information has been helpfull. &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt; If so please rate &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Jouni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Feb 2013 23:45:09 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pat-port-range/m-p/2196324#M356860</guid>
      <dc:creator>Jouni Forss</dc:creator>
      <dc:date>2013-02-10T23:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: PAT port range</title>
      <link>https://community.cisco.com/t5/network-security/pat-port-range/m-p/2196325#M356861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your post. TAC agrees about the bug. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a 5512X so I won't be downleveling to 8.4(5) on this platform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Time to write some generator code in Python. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2013 00:41:36 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pat-port-range/m-p/2196325#M356861</guid>
      <dc:creator>lcaruso</dc:creator>
      <dc:date>2013-02-11T00:41:36Z</dc:date>
    </item>
    <item>
      <title>Re: PAT port range</title>
      <link>https://community.cisco.com/t5/network-security/pat-port-range/m-p/2196326#M356862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would 8.6 work for you (In case it doesnt have this bug, I dont know)? Or is there perhaps some new feature in the 9.x you need to keep?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I personally dont have any of the new 5500-X models available for testing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only 5585-X models but those to my understanding dont take the 8.6 software.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Jouni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2013 00:50:48 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pat-port-range/m-p/2196326#M356862</guid>
      <dc:creator>Jouni Forss</dc:creator>
      <dc:date>2013-02-11T00:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: PAT port range</title>
      <link>https://community.cisco.com/t5/network-security/pat-port-range/m-p/2196327#M356863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Probably need to stick with 9.x and also don't know if 8.6 is without that bug. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm going to find out if all those ports are really needed or if this is just case of not doing one's homework. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What app needs 999 (consecutive) ports tcp and udp identically? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oh wait, it's an IBM server. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2013 01:03:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pat-port-range/m-p/2196327#M356863</guid>
      <dc:creator>lcaruso</dc:creator>
      <dc:date>2013-02-11T01:03:47Z</dc:date>
    </item>
  </channel>
</rss>

