<?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: Static PAT using Auto-NAT vs. Manual-NAT in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/static-pat-using-auto-nat-vs-manual-nat/m-p/3824844#M31169</link>
    <description>&lt;P&gt;The main difference between manual NAT and after-auto manual NAT versus object NAT is the way NAT statements are matched.&amp;nbsp; In manual NAT and after-auto manual NAT statements are matched in a top down fashion, while in object NAT, NAT statements are matched on the longest prefix match.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As for your configuration examples.&amp;nbsp; I am not sure why you are creating two objectes for both 200.200.200.200 and 192.168.1.4.&amp;nbsp; the object just needs to be created once and then you can reuse them in several NAT statements if wanted.&amp;nbsp; But your configuration look correct.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your manual NAT statement, here I disagree with using outside NAT statements unless there is a very good reason for doing so.&amp;nbsp; Your NAT statements should be sourced from inside to outside.&amp;nbsp; If you have configured outside NAT incorrectly you could also see some unexpected behavior depending on how you network is set up.&lt;/P&gt;</description>
    <pubDate>Sat, 23 Mar 2019 15:17:05 GMT</pubDate>
    <dc:creator>Marius Gunnerud</dc:creator>
    <dc:date>2019-03-23T15:17:05Z</dc:date>
    <item>
      <title>Static PAT using Auto-NAT vs. Manual-NAT</title>
      <link>https://community.cisco.com/t5/network-security/static-pat-using-auto-nat-vs-manual-nat/m-p/3824210#M31142</link>
      <description>&lt;P&gt;Hi to all,&lt;/P&gt;&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN&gt;on the basis of a re-certification I am dealing with the NAT topic more intensively the last few days and I`d like to ask the following question. &lt;/SPAN&gt;&lt;SPAN&gt;I want to implement the following static PAT for Telnet Access&lt;/SPAN&gt; from external to Outside-&lt;SPAN&gt;IP:&amp;nbsp; 200.200.200.200 (Inside-IP Server01 = 192.168.1.4) &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;because in object NAT (Auto-NAT) only a single NAT statement can be used per object.&lt;/SPAN&gt; &lt;SPAN&gt;I'd have to create an object for each port to be forwarded - it is for the same internal host&lt;/SPAN&gt;, &lt;SPAN class=""&gt;so i'd like to know if I can accomplish that task with the respective configurations and if there are any advantages or disadvantages between them...&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class=""&gt;&lt;STRONG&gt;(1)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;object network obj-host-200.200.200.200_TCP-23&lt;/P&gt;&lt;P&gt;host 200.200.200.200&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;object network obj-host-200.200.200.200_TCP-2323&lt;/P&gt;&lt;P&gt;host 200.200.200.200&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;object network obj-host-192.168.1.4_TCP-23&lt;/P&gt;&lt;P&gt;host 192.168.1.4&lt;/P&gt;&lt;P&gt;nat (inside,outside) static obj-host-200.200.200.200_TCP-23 service tcp 23 23&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;object network obj-host-192.168.1.4_TCP-2323&lt;/P&gt;&lt;P&gt;host 192.168.1.4&lt;/P&gt;&lt;P&gt;nat (inside,outside) static obj-host-200.200.200.200_TCP-2323 service tcp 2323 23&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;or maybe this works also?&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;object network obj-host-200.200.200.200&lt;/P&gt;&lt;P&gt;host 200.200.200.200&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;object network obj-host-192.168.1.4_TCP-23&lt;/P&gt;&lt;P&gt;host 192.168.1.4&lt;/P&gt;&lt;P&gt;nat (inside,outside) static obj-host-200.200.200.200 service tcp 23 23&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;object network obj-host-192.168.1.4_TCP-2323&lt;/P&gt;&lt;P&gt;host 192.168.1.4&lt;/P&gt;&lt;P&gt;nat (inside,outside) static obj-host-200.200.200.200 service tcp 2323 23&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;versus&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(2)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;object service TCP-23&lt;/P&gt;&lt;P&gt;service tcp destination eq 23&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;object service TCP-2323&lt;/P&gt;&lt;P&gt;service tcp destination eq 2323&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;object network obj-host-192.168.1.4&lt;/P&gt;&lt;P&gt;host 192.168.1.4&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;object network obj-host-200.200.200.200&lt;/P&gt;&lt;P&gt;host 200.200.200.200&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;nat (outside,inside) source static any any destination static obj-host-200.200.200.200 obj-host-192.168.1.4 service TCP-23 TCP-23&lt;/P&gt;&lt;P&gt;nat (outside,inside) source static any any destination static obj-host-200.200.200.200 obj-host-192.168.1.4 service TCP-2323 TCP-23&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 16:58:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-pat-using-auto-nat-vs-manual-nat/m-p/3824210#M31142</guid>
      <dc:creator>whistleblower14</dc:creator>
      <dc:date>2020-02-21T16:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: Static PAT using Auto-NAT vs. Manual-NAT</title>
      <link>https://community.cisco.com/t5/network-security/static-pat-using-auto-nat-vs-manual-nat/m-p/3824844#M31169</link>
      <description>&lt;P&gt;The main difference between manual NAT and after-auto manual NAT versus object NAT is the way NAT statements are matched.&amp;nbsp; In manual NAT and after-auto manual NAT statements are matched in a top down fashion, while in object NAT, NAT statements are matched on the longest prefix match.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As for your configuration examples.&amp;nbsp; I am not sure why you are creating two objectes for both 200.200.200.200 and 192.168.1.4.&amp;nbsp; the object just needs to be created once and then you can reuse them in several NAT statements if wanted.&amp;nbsp; But your configuration look correct.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your manual NAT statement, here I disagree with using outside NAT statements unless there is a very good reason for doing so.&amp;nbsp; Your NAT statements should be sourced from inside to outside.&amp;nbsp; If you have configured outside NAT incorrectly you could also see some unexpected behavior depending on how you network is set up.&lt;/P&gt;</description>
      <pubDate>Sat, 23 Mar 2019 15:17:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-pat-using-auto-nat-vs-manual-nat/m-p/3824844#M31169</guid>
      <dc:creator>Marius Gunnerud</dc:creator>
      <dc:date>2019-03-23T15:17:05Z</dc:date>
    </item>
    <item>
      <title>Re: Static PAT using Auto-NAT vs. Manual-NAT</title>
      <link>https://community.cisco.com/t5/network-security/static-pat-using-auto-nat-vs-manual-nat/m-p/3829223#M31189</link>
      <description>&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Hi &lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/319690"&gt;@Marius Gunnerud&lt;/a&gt;&amp;nbsp;&amp;nbsp;,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;first of all - thank you for responding to my questions!&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;of course the first statement according the two objectes for both 200.200.200.200 and 192.168.1.4 would`t be necessary but for the second one (see as follows), the Object NAT-PAT (200.200.200.200 is pointing back with two different TCP/Ports it is, or not?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;object network obj-host-192.168.1.4_TCP-23&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;host 192.168.1.4&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;nat (inside,outside) static obj-host-200.200.200.200 service tcp 23 23&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;!&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;object network obj-host-192.168.1.4_TCP-2323&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;host 192.168.1.4&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;nat (inside,outside) static obj-host-200.200.200.200 service tcp 2323 23&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;about the Manual-NAT... is there any official Cisco recommendation for doing only NAT sourced from inside-&amp;gt;outside or is this your personal experience? Maybe you can point me out some unexpected behaviors from your Knowledge which could be caused?&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 30 Mar 2019 06:11:16 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-pat-using-auto-nat-vs-manual-nat/m-p/3829223#M31189</guid>
      <dc:creator>whistleblower14</dc:creator>
      <dc:date>2019-03-30T06:11:16Z</dc:date>
    </item>
  </channel>
</rss>

