<?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 Will that work? Should I add in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/asa-9-x-nat-configuration/m-p/2709170#M193911</link>
    <description>&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Will that work? Should I add anything to the end?&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;That will create a manual NAT statement and will translate 10.10.10.10 to 10.10.10.10&amp;nbsp; But yes, this will be the same as the previous NAT statement.&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;Please remember to select a correct answer and rate helpful posts&lt;/P&gt;</description>
    <pubDate>Sat, 11 Jul 2015 21:06:58 GMT</pubDate>
    <dc:creator>Marius Gunnerud</dc:creator>
    <dc:date>2015-07-11T21:06:58Z</dc:date>
    <item>
      <title>ASA 9.x NAT Configuration</title>
      <link>https://community.cisco.com/t5/network-security/asa-9-x-nat-configuration/m-p/2709164#M193899</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm looking for a little help. I have a new ASA running version 9 and need to get my NAT statements back on. I see that there is quite a bit of difference between the way I know how to do NAT and the changes implemented in version 8.3. I'm a little confused with what I read. Are there no longer any global statements? I need to convert the following lines, any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;global (outside) 1 10.10.144.51-10.10.144.254 netmask 255.255.255.0&lt;BR /&gt;global (outside) 1 10.10.144.47 netmask 255.255.255.255&lt;BR /&gt;global (outside) 1 10.10.144.46 netmask 255.255.255.255&lt;BR /&gt;global (outside) 2 10.10.144.50 netmask 255.0.0.0&lt;/P&gt;&lt;P&gt;global (outside) 3 10.10.144.45 netmask 255.0.0.0&lt;BR /&gt;global (outside) 4 10.10.144.44 netmask 255.0.0.0&lt;BR /&gt;nat (inside) 0 access-list inside_nat0_outbound&lt;BR /&gt;nat (inside) 0 10.10.145.0 255.255.255.0&lt;BR /&gt;nat (inside) 0 10.10.146.0 255.255.255.0&lt;BR /&gt;nat (inside) 0 10.10.147.0 255.255.255.0&lt;BR /&gt;nat (inside) 0 10.10.148.0 255.255.255.0&lt;BR /&gt;nat (inside) 0 10.10.149.0 255.255.255.0&lt;BR /&gt;nat (inside) 0 10.10.150.0 255.255.255.0&lt;BR /&gt;nat (inside) 3 guest&amp;nbsp;255.255.255.0&lt;BR /&gt;nat (inside) 0 192.191.90.0 255.255.255.0&lt;BR /&gt;nat (inside) 2 academy 255.255.254.0&lt;BR /&gt;nat (inside) 4 mobile&amp;nbsp;255.255.252.0&lt;BR /&gt;nat (inside) 1 0.0.0.0 0.0.0.0&lt;/P&gt;&lt;P&gt;I know I now have to use the network objects command to break this out and apply nat statements. The part I don't get is how? Do I make network objects using my old global statements and then apply the nat? So confused!&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2019 06:15:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-9-x-nat-configuration/m-p/2709164#M193899</guid>
      <dc:creator>cyoung1981</dc:creator>
      <dc:date>2019-03-12T06:15:10Z</dc:date>
    </item>
    <item>
      <title>First off, why do you have</title>
      <link>https://community.cisco.com/t5/network-security/asa-9-x-nat-configuration/m-p/2709165#M193900</link>
      <description>&lt;P&gt;First off, why do you have som many Global 1 NAT statements? are some of those old?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;The part I don't get is how? Do I make network objects using my old global statements and then apply the nat? So confused!&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For the dynamic NAT statements used with global, you would create a network object for nat (inside) 1 0.0.0.0 0.0.0.0 and then nest a NAT statement under that object.&amp;nbsp; For example:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;object network ANY&lt;BR /&gt;&amp;nbsp; subnet 0.0.0.0 0.0.0.0&lt;BR /&gt;&amp;nbsp; nat (inside,outside) dynamic 10.10.144.47&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For NAT 0 / NAT exempt you would use twice NAT where you specify the source IP, translated source IP, destination IP, and translated destination IP.&amp;nbsp; So for a VPN twice NAT statement from 10.10.10.0/24 to 11.11.11.0/24 would look like this:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;object network LOCAL&lt;BR /&gt;&amp;nbsp; subnet 10.10.10.0 255.255.255.0&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;object network REMOTE&lt;BR /&gt;&amp;nbsp; subnet 11.11.11.0 255.255.255.0&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;nat (inside,outside) source static LOCAL LOCAL destination static REMOTE REMOTE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;Please remember to select a correct answer and rate helpful posts&lt;/P&gt;</description>
      <pubDate>Sat, 11 Jul 2015 18:02:30 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-9-x-nat-configuration/m-p/2709165#M193900</guid>
      <dc:creator>Marius Gunnerud</dc:creator>
      <dc:date>2015-07-11T18:02:30Z</dc:date>
    </item>
    <item>
      <title>Ok, so for my global</title>
      <link>https://community.cisco.com/t5/network-security/asa-9-x-nat-configuration/m-p/2709166#M193902</link>
      <description>&lt;P&gt;Ok, so for my global statements I could use this ?&lt;/P&gt;&lt;P&gt;object network GLOBAL_NAT&lt;BR /&gt;subnet 0.0.0.0 0.0.0.0&lt;BR /&gt;nat (inside,outside) dynamic 10.10.144.47&lt;BR /&gt;nat (inside,outside) dynamic 10.10.144.47&lt;BR /&gt;nat (inside,outside) dynamic 10.10.144.46&lt;BR /&gt;nat (inside,outside) dynamic 10.10.144.45&lt;BR /&gt;nat (inside,outside) dynamic 10.10.144.44&lt;/P&gt;&lt;P&gt;I'm also assuming&amp;nbsp;global (outside) 1 10.10.144.51-10.10.144.254 netmask 255.255.255.0 would need to be broken down into individual lines?&lt;/P&gt;&lt;P&gt;Then I'm still left with:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.3999996185303px;"&gt;nat (inside) 0 access-list inside_nat0_outbound&lt;/SPAN&gt;&lt;BR style="font-size: 14.3999996185303px;" /&gt;&lt;SPAN style="font-size: 14.3999996185303px;"&gt;nat (inside) 0 10.10.145.0 255.255.255.0&lt;/SPAN&gt;&lt;BR style="font-size: 14.3999996185303px;" /&gt;&lt;SPAN style="font-size: 14.3999996185303px;"&gt;nat (inside) 0 10.10.146.0 255.255.255.0&lt;/SPAN&gt;&lt;BR style="font-size: 14.3999996185303px;" /&gt;&lt;SPAN style="font-size: 14.3999996185303px;"&gt;nat (inside) 0 10.10.147.0 255.255.255.0&lt;/SPAN&gt;&lt;BR style="font-size: 14.3999996185303px;" /&gt;&lt;SPAN style="font-size: 14.3999996185303px;"&gt;nat (inside) 0 10.10.148.0 255.255.255.0&lt;/SPAN&gt;&lt;BR style="font-size: 14.3999996185303px;" /&gt;&lt;SPAN style="font-size: 14.3999996185303px;"&gt;nat (inside) 0 10.10.149.0 255.255.255.0&lt;/SPAN&gt;&lt;BR style="font-size: 14.3999996185303px;" /&gt;&lt;SPAN style="font-size: 14.3999996185303px;"&gt;nat (inside) 0 10.10.150.0 255.255.255.0&lt;/SPAN&gt;&lt;BR style="font-size: 14.3999996185303px;" /&gt;&lt;SPAN style="font-size: 14.3999996185303px;"&gt;nat (inside) 3 guest&amp;nbsp;255.255.255.0&lt;/SPAN&gt;&lt;BR style="font-size: 14.3999996185303px;" /&gt;&lt;SPAN style="font-size: 14.3999996185303px;"&gt;nat (inside) 0 192.191.90.0 255.255.255.0&lt;/SPAN&gt;&lt;BR style="font-size: 14.3999996185303px;" /&gt;&lt;SPAN style="font-size: 14.3999996185303px;"&gt;nat (inside) 2 academy 255.255.254.0&lt;/SPAN&gt;&lt;BR style="font-size: 14.3999996185303px;" /&gt;&lt;SPAN style="font-size: 14.3999996185303px;"&gt;nat (inside) 4 mobile&amp;nbsp;255.255.252.0&lt;/SPAN&gt;&lt;BR style="font-size: 14.3999996185303px;" /&gt;&lt;SPAN style="font-size: 14.3999996185303px;"&gt;nat (inside) 1 0.0.0.0 0.0.0.0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.3999996185303px;"&gt;Would I then just create an object for each nat # (0, 1, 2, 3, 4) and apply the statements to each? And would it still use the subnet 0.0.0.0 0.0.0.0 since there aren't any specific translations configured?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.3999996185303px;"&gt;Sorry if any of these questions seem dumb, I'm still learning.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 11 Jul 2015 18:21:09 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-9-x-nat-configuration/m-p/2709166#M193902</guid>
      <dc:creator>cyoung1981</dc:creator>
      <dc:date>2015-07-11T18:21:09Z</dc:date>
    </item>
    <item>
      <title>Ok, so for my global</title>
      <link>https://community.cisco.com/t5/network-security/asa-9-x-nat-configuration/m-p/2709167#M193904</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Ok, so for my global statements I could use this ?&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;object network GLOBAL_NAT&lt;BR /&gt;subnet 0.0.0.0 0.0.0.0&lt;BR /&gt;nat (inside,outside) dynamic 10.10.144.47&lt;BR /&gt;nat (inside,outside) dynamic 10.10.144.47&lt;BR /&gt;nat (inside,outside) dynamic 10.10.144.46&lt;BR /&gt;nat (inside,outside) dynamic 10.10.144.45&lt;BR /&gt;nat (inside,outside) dynamic 10.10.144.44&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;No, each NAT statement would overwrite the previous so you would need to configure seperate objects for each NAT statement.&amp;nbsp; But why are you doing this?&amp;nbsp; Traffic would only end up using one of these statements.&amp;nbsp; You would need to be more specific with your object group subnet.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;I'm also assuming&amp;nbsp;global (outside) 1 10.10.144.51-10.10.144.254 netmask 255.255.255.0 would need to be broken down into individual lines?&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;No, you would just create a range in the network object like this:&lt;/P&gt;&lt;P&gt;object network TEST&lt;BR /&gt;&amp;nbsp; range 10.10.155.51 10.10.144.254&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;SPAN&gt;Would I then just create an object for each nat # (0, 1, 2, 3, 4) and apply the statements to each? And would it still use the subnet 0.0.0.0 0.0.0.0 since there aren't any specific translations configured?&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;It really depends if the NAT 0 statements are just for traffic that is going between ASA interfaces.&amp;nbsp; If that is the case then this is no longer required and is obsolete. NAT 2, 3, and 4 will be fine as they seem to be specific source addresses that are being translated.&amp;nbsp; The only issue you will run into is the NAT 1 statements as only one of these will end up being matched for dynamic NAT.&amp;nbsp; What is the purpose of having all those global 1 NAT statments?&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;Please remember to select a correct answer and rate helpful posts&lt;/P&gt;</description>
      <pubDate>Sat, 11 Jul 2015 18:54:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-9-x-nat-configuration/m-p/2709167#M193904</guid>
      <dc:creator>Marius Gunnerud</dc:creator>
      <dc:date>2015-07-11T18:54:44Z</dc:date>
    </item>
    <item>
      <title>Truth be told, I'm not sure</title>
      <link>https://community.cisco.com/t5/network-security/asa-9-x-nat-configuration/m-p/2709168#M193906</link>
      <description>&lt;P&gt;Truth be told, I'm not sure of the purpose. I pulled the config off the old device and didn't want to change anything as the person who did the config is no longer at the company. So I didn't want to break anything when I install the new device.&lt;/P&gt;</description>
      <pubDate>Sat, 11 Jul 2015 18:59:16 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-9-x-nat-configuration/m-p/2709168#M193906</guid>
      <dc:creator>cyoung1981</dc:creator>
      <dc:date>2015-07-11T18:59:16Z</dc:date>
    </item>
    <item>
      <title>I think I get all that now.</title>
      <link>https://community.cisco.com/t5/network-security/asa-9-x-nat-configuration/m-p/2709169#M193907</link>
      <description>&lt;P&gt;I think I get all that now. But one more question. I have some connections to other sites that have their own firewall, but we provide internet for. We have nat entries like this...&lt;/P&gt;&lt;P&gt;static (inside,outside) 10.10.10.10 10.10.10.10 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;Converting that to the new nat would be like ....&lt;/P&gt;&lt;P&gt;object network OBJ-10.10.10.10&lt;BR /&gt;&amp;nbsp; host 10.10.10.10&lt;BR /&gt;object network OBJ-10.10.10.10&lt;BR /&gt;&amp;nbsp; host 10.10.10.10&lt;BR /&gt;nat (inside,outside) source static OBJ-10.10.10.10 OBJ-10.10.10.10&lt;/P&gt;&lt;P&gt;Will that work? Should I add anything to the end?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 11 Jul 2015 20:09:58 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-9-x-nat-configuration/m-p/2709169#M193907</guid>
      <dc:creator>cyoung1981</dc:creator>
      <dc:date>2015-07-11T20:09:58Z</dc:date>
    </item>
    <item>
      <title>Will that work? Should I add</title>
      <link>https://community.cisco.com/t5/network-security/asa-9-x-nat-configuration/m-p/2709170#M193911</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Will that work? Should I add anything to the end?&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;That will create a manual NAT statement and will translate 10.10.10.10 to 10.10.10.10&amp;nbsp; But yes, this will be the same as the previous NAT statement.&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;Please remember to select a correct answer and rate helpful posts&lt;/P&gt;</description>
      <pubDate>Sat, 11 Jul 2015 21:06:58 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-9-x-nat-configuration/m-p/2709170#M193911</guid>
      <dc:creator>Marius Gunnerud</dc:creator>
      <dc:date>2015-07-11T21:06:58Z</dc:date>
    </item>
    <item>
      <title>Last thing... The old nat</title>
      <link>https://community.cisco.com/t5/network-security/asa-9-x-nat-configuration/m-p/2709171#M193914</link>
      <description>&lt;P&gt;Last thing... The old nat config has names in the statements.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.3999996185303px;"&gt;nat (inside) 3 guest&amp;nbsp;255.255.255.0&lt;/SPAN&gt;&lt;BR style="font-size: 14.3999996185303px;" /&gt;&lt;SPAN style="font-size: 14.3999996185303px;"&gt;nat (inside) 2 academy 255.255.254.0&lt;/SPAN&gt;&lt;BR style="font-size: 14.3999996185303px;" /&gt;&lt;SPAN style="font-size: 14.3999996185303px;"&gt;nat (inside) 4 mobile&amp;nbsp;255.255.252.0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.3999996185303px;"&gt;those names are defined in the config like this&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;name 192.168.252.0 academy description Academy Range&lt;BR /&gt;name 192.168.192.0 guest description quest&lt;BR /&gt;name 192.168.248.0 mobiledescription mobile&lt;/P&gt;&lt;P&gt;And nat 2,3,4 are this...&lt;/P&gt;&lt;P&gt;global (outside) 2 10.10.144.50 netmask 255.0.0.0&lt;BR /&gt;global (outside) 3 10.10.144.45 netmask 255.0.0.0&lt;BR /&gt;global (outside) 4 10.10.144.44 netmask 255.0.0.0&lt;/P&gt;&lt;P&gt;Would this be the correct configuration....&lt;/P&gt;&lt;P&gt;Object network mobile_inside&lt;BR /&gt;subnet 192.168.248.0 255.255.0.0&lt;BR /&gt;!&lt;BR /&gt;object network mobile_outside&lt;BR /&gt;subnet 10.10.144.44 255.0.0.0&lt;BR /&gt;nat (inside,outside) source static mobile_inside mobile_outside&lt;/P&gt;&lt;P&gt;Not sure if static is right here though, since it was not on the old.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 11 Jul 2015 21:30:55 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-9-x-nat-configuration/m-p/2709171#M193914</guid>
      <dc:creator>cyoung1981</dc:creator>
      <dc:date>2015-07-11T21:30:55Z</dc:date>
    </item>
    <item>
      <title>I would suggest doing these</title>
      <link>https://community.cisco.com/t5/network-security/asa-9-x-nat-configuration/m-p/2709172#M193916</link>
      <description>&lt;P&gt;I would suggest doing these NATs as follows&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;object network mobile_outside&lt;BR /&gt;&amp;nbsp; subnet 10.10.144.44 255.0.0.0&lt;BR /&gt;&amp;nbsp; nat (inside,outside) static mobile_inside mobile_outside&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;This will place the NAT statements in object NAT (aka section 2) instead of manual NAT.&amp;nbsp; Each time you start specifying source you are placing the NAT statment in manual NAT.&amp;nbsp; So these statements will be matched top down and before object NAT.&amp;nbsp; If you specify "after-auto" this will place the NAT statment in manual NAT after object NAT.&amp;nbsp; So if you do this manual NAT and object NAT will be matched first before trying to match on the after-auto.&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;Please remember to select a correct answer and rate helpful posts&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 Jul 2015 20:04:19 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-9-x-nat-configuration/m-p/2709172#M193916</guid>
      <dc:creator>Marius Gunnerud</dc:creator>
      <dc:date>2015-07-12T20:04:19Z</dc:date>
    </item>
  </channel>
</rss>

