<?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 NAT 8.0 in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/nat-8-0/m-p/1932300#M457592</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, you can do this in 8.0, give this a try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;These access list define what to NAT&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;access-list outnat extended permit ip host 192.168.1.1 192.168.10.0 255.255.255.0&lt;/P&gt;&lt;P&gt;access-list innat extended permit tcp 172.16.10.0 255.255.255.0 host 192.168.100.1 eq telnet&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Here is your pool of addresses and NAT statement for it&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;global (inside) 1 192.168.10.1-192.168.10.100&lt;/P&gt;&lt;P&gt;nat (extranet) 1 access-list innat outside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Here is the Static NAT statement to map 192.168.1.1 to 192.168.100.1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;static (inside,extranet) 192.168.100.1&amp;nbsp; access-list outnat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 Mar 2012 10:15:50 GMT</pubDate>
    <dc:creator>malikyounas</dc:creator>
    <dc:date>2012-03-30T10:15:50Z</dc:date>
    <item>
      <title>NAT 8.0</title>
      <link>https://community.cisco.com/t5/network-security/nat-8-0/m-p/1932298#M457585</link>
      <description>&lt;P&gt;Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a strange question here please bare&amp;nbsp; with me if it is funny but it is woking live with thirdparty firewall&amp;nbsp; which is going to be replaced by the ASA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Third party firewall is working with below policy and i want to do it in ASA 8.0:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i&amp;nbsp; have a server in my internal network 192.168.1.1 which accepts only&amp;nbsp; specific IP's as a source addresses (192.168.10.1 to 192.168.10.100) on a&amp;nbsp; port 2445 . The connection is initiating from extranet with source ip&amp;nbsp; address&amp;nbsp; 172.16.10.0/24 to destination virtual IP 192.168.100.1 on a&amp;nbsp; port 2445 which is then directing traffic to inside server 192.168.1.1&amp;nbsp; with a source ip address from the pool mentioned above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This&amp;nbsp; means the thirdy party firewall is doing&amp;nbsp; the destination NAT and the&amp;nbsp; source NAT which are both merged togther to one flow to achieve the&amp;nbsp; customer requirement,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody write for me the configs pls.i hope it is a concept of twice nat but how to achieve this in 8.0&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 22:48:49 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-8-0/m-p/1932298#M457585</guid>
      <dc:creator>jack samuel</dc:creator>
      <dc:date>2019-03-11T22:48:49Z</dc:date>
    </item>
    <item>
      <title>NAT 8.0</title>
      <link>https://community.cisco.com/t5/network-security/nat-8-0/m-p/1932299#M457590</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;It seems to me that you would need 8.3 software at minimum to achieve that with a single NAT configuration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I mean when the change of ASA software went from 8.2 -&amp;gt; 8.3 you were now able to NAT both the source and destination IP/network&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Heres an example configuration&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object network REAL-SOURCE&lt;/P&gt;&lt;P&gt; subnet 172.16.10.0 255.255.255.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object network MAPPED-SOURCE&lt;/P&gt;&lt;P&gt; subnet 192.168.10.0 255.255.255.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object network REAL-DESTINATION&lt;/P&gt;&lt;P&gt; host 192.168.1.1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object network MAPPED-DESTINATION&lt;/P&gt;&lt;P&gt; host 192.168.100.1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nat (USERS,SERVER) source static REAL-SOURCE MAPPED-SOURCE destination static MAPPED-DESTINATION REAL-DESTINATION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To my understanding that would mean that while connecting from interface USERS (172.16.10.0/24) to the MAPPED-DESTINATION host on interface SERVER (192.168.100.1) the ASA firewall would NAT your traffic from network 172.16.10.0/24 to network 192.168.10.0/24 while connecting to the actual REAL-DESTINATION address (192.168.1.1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sure if theres any way to do it in older software.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gotta get my morning coffee and think about it after that &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; My head doesnt always work in the morning&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps &lt;SPAN __jive_emoticon_name="plain" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/4.5.4/images/tiny_mce3/plugins/jiveemoticons/images/spacer.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>Fri, 30 Mar 2012 05:33:42 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-8-0/m-p/1932299#M457590</guid>
      <dc:creator>Jouni Forss</dc:creator>
      <dc:date>2012-03-30T05:33:42Z</dc:date>
    </item>
    <item>
      <title>NAT 8.0</title>
      <link>https://community.cisco.com/t5/network-security/nat-8-0/m-p/1932300#M457592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, you can do this in 8.0, give this a try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;These access list define what to NAT&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;access-list outnat extended permit ip host 192.168.1.1 192.168.10.0 255.255.255.0&lt;/P&gt;&lt;P&gt;access-list innat extended permit tcp 172.16.10.0 255.255.255.0 host 192.168.100.1 eq telnet&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Here is your pool of addresses and NAT statement for it&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;global (inside) 1 192.168.10.1-192.168.10.100&lt;/P&gt;&lt;P&gt;nat (extranet) 1 access-list innat outside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Here is the Static NAT statement to map 192.168.1.1 to 192.168.100.1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;static (inside,extranet) 192.168.100.1&amp;nbsp; access-list outnat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2012 10:15:50 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-8-0/m-p/1932300#M457592</guid>
      <dc:creator>malikyounas</dc:creator>
      <dc:date>2012-03-30T10:15:50Z</dc:date>
    </item>
  </channel>
</rss>

