<?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 port-forwarding using manual nat (not auto-nat) not working in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/port-forwarding-using-manual-nat-not-auto-nat-not-working/m-p/2268802#M357390</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;I would still not configure in such a way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tend to avoid using the "any" keyword in the NAT configurations unless its used to define source addresses for the default Dynamic PAT rule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You seem to have flipped the NAT rules the other way around also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are using the "outside" as the source and "inside" as the destination.&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, 28 May 2013 21:03:26 GMT</pubDate>
    <dc:creator>Jouni Forss</dc:creator>
    <dc:date>2013-05-28T21:03:26Z</dc:date>
    <item>
      <title>port-forwarding using manual nat (not auto-nat) not working</title>
      <link>https://community.cisco.com/t5/network-security/port-forwarding-using-manual-nat-not-auto-nat-not-working/m-p/2268799#M357386</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am running &lt;SPAN style="font-size: 10pt;"&gt;8.6(1)2 on my ASA&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;It's a lab environment and I am trying to figure out how to do &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;port-forwarding using manual nat&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;For e.g. I tried following but none of them work (Only one of the following was activated on the FW at a time)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; nat (outside,inside) source static any any destination static h-3.3.3.3 local_ip service tcp-www tcp-8080&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; nat (outside,inside) source static&amp;nbsp; h-3.3.3.3 6.3.3.6&amp;nbsp; service tcp-www tcp-8080&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; nat (inside,outside) source static local_ip h-3.3.3.3 destination static any any service 8080 80&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have anyone one of you been able to do port forwarding using manual nat on post 8.2?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2019 01:50:19 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/port-forwarding-using-manual-nat-not-auto-nat-not-working/m-p/2268799#M357386</guid>
      <dc:creator>abcdrohan</dc:creator>
      <dc:date>2019-03-12T01:50:19Z</dc:date>
    </item>
    <item>
      <title>port-forwarding using manual nat (not auto-nat) not working</title>
      <link>https://community.cisco.com/t5/network-security/port-forwarding-using-manual-nat-not-auto-nat-not-working/m-p/2268800#M357387</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;A very basic Static PAT / Port Forward on the new software could be something like this (though I personally use Network Object NAT for this)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;object network HOST-REAL&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; host 10.10.10.10&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;object network HOST-MAPPED&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; host 1.1.1.1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;object service RDP&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; service tcp source eq 3389&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;nat (inside,outside) source static HOST-REAL HOST-MAPPED service RDP RDP&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;access-list OUTSIDE-IN permit any object HOST-REAL eq 3389&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;access-group OUTSIDE-IN in interface outside&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That should pretty much be it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Naturally there is always a change that some existing other NAT configuration overrides this NAT configuration and traffic will therefore never get matched against this Static PAT configuration&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Naturally you can confirm which NAT rule is hit with the "packet-tracer" command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example considering my above Static PAT configuration I could try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;packet-tracer input outside tcp 1.2.3.4 12345 1.1.1.1 3389&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/4.5.4/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Remember to mark the reply as the correct answer if it answered your question. Or ask more&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also I made a NAT 8.3+ document earlier here on the forums if you want to take a look. Though at the moment it only gives examples of some very basic NAT setups&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-wiki-small" href="https://community.cisco.com/docs/DOC-31116"&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, 28 May 2013 20:38:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/port-forwarding-using-manual-nat-not-auto-nat-not-working/m-p/2268800#M357387</guid>
      <dc:creator>Jouni Forss</dc:creator>
      <dc:date>2013-05-28T20:38:10Z</dc:date>
    </item>
    <item>
      <title>port-forwarding using manual nat (not auto-nat) not working</title>
      <link>https://community.cisco.com/t5/network-security/port-forwarding-using-manual-nat-not-auto-nat-not-working/m-p/2268801#M357388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I actually figured it out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I was doing was that I had created tcp-8080 with&lt;/P&gt;&lt;P&gt; &lt;SPAN style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;service tcp &lt;STRONG&gt;source &lt;/STRONG&gt;eq 808&lt;/SPAN&gt;&lt;SPAN style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;0 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;while the predifned tcp-www is of type &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; service tcp &lt;STRONG&gt;destination &lt;/STRONG&gt;eq www&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had to change &lt;/P&gt;&lt;P&gt; tcp-8080 to &lt;/P&gt;&lt;P&gt;service tcp &lt;STRONG style="font-size: 10pt;"&gt;destination &lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt;"&gt;eq 8080 and got it working using&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nat (outside,inside) source static any any destination static 6.3.3.6 local_ip service tcp-8080 tcp-www&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 May 2013 20:59:52 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/port-forwarding-using-manual-nat-not-auto-nat-not-working/m-p/2268801#M357388</guid>
      <dc:creator>abcdrohan</dc:creator>
      <dc:date>2013-05-28T20:59:52Z</dc:date>
    </item>
    <item>
      <title>port-forwarding using manual nat (not auto-nat) not working</title>
      <link>https://community.cisco.com/t5/network-security/port-forwarding-using-manual-nat-not-auto-nat-not-working/m-p/2268802#M357390</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;I would still not configure in such a way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tend to avoid using the "any" keyword in the NAT configurations unless its used to define source addresses for the default Dynamic PAT rule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You seem to have flipped the NAT rules the other way around also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are using the "outside" as the source and "inside" as the destination.&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, 28 May 2013 21:03:26 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/port-forwarding-using-manual-nat-not-auto-nat-not-working/m-p/2268802#M357390</guid>
      <dc:creator>Jouni Forss</dc:creator>
      <dc:date>2013-05-28T21:03:26Z</dc:date>
    </item>
  </channel>
</rss>

