<?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 Static NAT/PAT help in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/static-nat-pat-help/m-p/2173531#M359052</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks Jouni again for your help... 5+&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was hoping there was an easier way because in reality there are a ton of other ports that need to be done. Maybe they will come up with a way to do the group thing with some update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the link I will read it over.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Apr 2013 19:13:18 GMT</pubDate>
    <dc:creator>burleyman</dc:creator>
    <dc:date>2013-04-02T19:13:18Z</dc:date>
    <item>
      <title>Static NAT/PAT help</title>
      <link>https://community.cisco.com/t5/network-security/static-nat-pat-help/m-p/2173528#M359049</link>
      <description>&lt;P&gt;I am still new to ASA's and learning. I have the following need and listed what I think I would need to do, how bad am I? and what would I need to change?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a group of ports I need NAT/PAT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inside IP Address of 192.168.1.3&lt;/P&gt;&lt;P&gt;Outside IP Address of 10.10.1.3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ports to NAT&lt;/P&gt;&lt;P&gt;TCP 4015&lt;/P&gt;&lt;P&gt;TCP 7300&lt;/P&gt;&lt;P&gt;TCP 10067&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want these port as a one to one NAT/PAT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;192.168.1.3:4015 -----&amp;gt; 10.10.1.3:4015&lt;/P&gt;&lt;P&gt;192.168.1.3:7300 ------&amp;gt; 10.10.1.3:7300&lt;/P&gt;&lt;P&gt;192.168.1.3:10067 -------&amp;gt; 10.10.1.3:10067&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So here is what I think I need to do….&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object-group service ALLOWED_LIST_TCP tcp&lt;/P&gt;&lt;P&gt;port-object eq 4015&lt;/P&gt;&lt;P&gt;port-object eq 7300&lt;/P&gt;&lt;P&gt;port-object eq 10067&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nat (inside,outside) source static 192.168.1.3 ALLOWED_LIST_TCP destination static 10.10.1.3 ALLOWED_LIST_TCP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list ACL_OUT extended permit tcp any any object-group ALLOWED_LIST_TCP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2019 01:22:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nat-pat-help/m-p/2173528#M359049</guid>
      <dc:creator>burleyman</dc:creator>
      <dc:date>2019-03-12T01:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: Static NAT/PAT help</title>
      <link>https://community.cisco.com/t5/network-security/static-nat-pat-help/m-p/2173529#M359050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mike &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;I would suggest the following configuration to accomplish this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object network STATIC-PAT-TCP4015&lt;/P&gt;&lt;P&gt; host 192.168.1.3&lt;/P&gt;&lt;P&gt; nat (inside,outside) static 10.10.1.3 service tcp 4015 4015&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object network STATIC-PAT-TCP7300&lt;/P&gt;&lt;P&gt; host 192.168.1.3&lt;/P&gt;&lt;P&gt; nat (inside,outside) static 10.10.1.3 service tcp 7300 7300&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object network STATIC-PAT-TCP10067&lt;/P&gt;&lt;P&gt; host 192.168.1.3&lt;/P&gt;&lt;P&gt; nat (inside,outside) static 10.10.1.3 service tcp 10067 10067&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list OUTSIDE-IN permit tcp any object STATIC-PAT-TCP4015 eq 4015&lt;/P&gt;&lt;P&gt;access-list OUTSIDE-IN permit tcp any object STATIC-PAT-TCP7300 eq 7300&lt;/P&gt;&lt;P&gt;access-list OUTSIDE-IN permit tcp any object STATIC-PAT-TCP10067 eq 10067&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT: If the IP 10.10.1.3 is actually the IP address of the "outside" interface then you can replace the "10.10.1.3" with the keyword "interface" in the NAT configuration line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To my knowledge you cant use an "object-group service" in the new NAT configurations. So no way to handle this with a single NAT command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't remember if I have linked this for you before but I made a 8.3+ NAT document on the forums which gives information on the basic NAT configuration formats. Though I dont mind going through them here on the actual forums also &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;&lt;A _jive_internal="true" href="https://community.cisco.com/docs/DOC-31116" rel="nofollow"&gt;https://supportforums.cisco.com/docs/DOC-31116&lt;/A&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>Tue, 02 Apr 2013 19:04:46 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nat-pat-help/m-p/2173529#M359050</guid>
      <dc:creator>Jouni Forss</dc:creator>
      <dc:date>2013-04-02T19:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: Static NAT/PAT help</title>
      <link>https://community.cisco.com/t5/network-security/static-nat-pat-help/m-p/2173530#M359051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the other format to configure the same thing would be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object network SERVER&lt;/P&gt;&lt;P&gt; host 192.168.1.3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object network SERVER-NAT&lt;/P&gt;&lt;P&gt; host 10.10.1.3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object service TCP4015&lt;/P&gt;&lt;P&gt; service tcp source eq 4015&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object service TCP7300&lt;/P&gt;&lt;P&gt; service tcp source eq 7300&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object service TCP10067&lt;/P&gt;&lt;P&gt; service tcp source eq 10067&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nat (inside,outside) source static SERVER SERVER-NAT service TCP4015 TCP4015&lt;/P&gt;&lt;P&gt;nat (inside,outside) source static SERVER SERVER-NAT service TCP7300 TCP7300&lt;/P&gt;&lt;P&gt;nat (inside,outside) source static SERVER SERVER-NAT service TCP10067 TCP10067&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list OUTSIDE-IN permit tcp any object SERVER eq 4015&lt;/P&gt;&lt;P&gt;access-list OUTSIDE-IN permit tcp any object SERVER eq 7300&lt;/P&gt;&lt;P&gt;access-list OUTSIDE-IN permit tcp any object SERVER eq 10067&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Though I personally prefer configuring these type of NATs with the first replys Network Object NAT (Section 2 NAT) instead of Twice NAT in this reply (Section 1 NAT or Section 3 NAT)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Jouni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Apr 2013 19:12:48 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nat-pat-help/m-p/2173530#M359051</guid>
      <dc:creator>Jouni Forss</dc:creator>
      <dc:date>2013-04-02T19:12:48Z</dc:date>
    </item>
    <item>
      <title>Static NAT/PAT help</title>
      <link>https://community.cisco.com/t5/network-security/static-nat-pat-help/m-p/2173531#M359052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks Jouni again for your help... 5+&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was hoping there was an easier way because in reality there are a ton of other ports that need to be done. Maybe they will come up with a way to do the group thing with some update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the link I will read it over.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Apr 2013 19:13:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nat-pat-help/m-p/2173531#M359052</guid>
      <dc:creator>burleyman</dc:creator>
      <dc:date>2013-04-02T19:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: Static NAT/PAT help</title>
      <link>https://community.cisco.com/t5/network-security/static-nat-pat-help/m-p/2173532#M359053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Aaand since you talk about Static NAT in the topic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you actually have a spare public IP address to be used only for a single LAN server then you could simply configure a 1:1 Static NAT and just open the needed ports&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object network SERVER&lt;/P&gt;&lt;P&gt; host 192.168.1.3&lt;/P&gt;&lt;P&gt; nat (inside,outside) static 10.10.1.3 dns&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list OUTSIDE-IN permit tcp any object SERVER eq 4015&lt;/P&gt;&lt;P&gt;access-list OUTSIDE-IN permit tcp any object SERVER eq 7300&lt;/P&gt;&lt;P&gt;access-list OUTSIDE-IN permit tcp any object SERVER eq 10067&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Jouni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Apr 2013 19:15:34 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nat-pat-help/m-p/2173532#M359053</guid>
      <dc:creator>Jouni Forss</dc:creator>
      <dc:date>2013-04-02T19:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: Static NAT/PAT help</title>
      <link>https://community.cisco.com/t5/network-security/static-nat-pat-help/m-p/2173533#M359054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To my knowledge the&amp;nbsp; only way to get a smaller configuration when we are talking about Static PAT / Port Forwarding is when you are able to do it for a continuous range of ports, which is usually not possible without forwarding ports you dont really need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This has been a question every now and then on the CSC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT: As you say I guess it would be something that the people at Cisco would have to take a look at. Modify the current "object service" and "object-group service" objects to they can be used to create a huge group of service port pairs to be used in the NAT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I would have to guess then I would guess currently using a "object-group service" simply wouldnt be able to pair the real and mapped ports together correctly for the NAT configuration or there would be too much room for errors in the configuration when the contents of the "object-group service" was changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this would certainly be something that would help those people who only have the single public IP address from the ISP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Jouni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Apr 2013 19:22:58 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nat-pat-help/m-p/2173533#M359054</guid>
      <dc:creator>Jouni Forss</dc:creator>
      <dc:date>2013-04-02T19:22:58Z</dc:date>
    </item>
    <item>
      <title>Static NAT/PAT help</title>
      <link>https://community.cisco.com/t5/network-security/static-nat-pat-help/m-p/2173534#M359055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks again for you help. Have a good day.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Apr 2013 19:37:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nat-pat-help/m-p/2173534#M359055</guid>
      <dc:creator>burleyman</dc:creator>
      <dc:date>2013-04-02T19:37:04Z</dc:date>
    </item>
  </channel>
</rss>

