<?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 Multiple Inside Subnets in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/nat-multiple-inside-subnets/m-p/1713315#M529261</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Joe,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you see is the correct behavior, because for multiple subnets you need to use a object-group, which includes all three subnets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 25 Jun 2011 05:52:49 GMT</pubDate>
    <dc:creator>varrao</dc:creator>
    <dc:date>2011-06-25T05:52:49Z</dc:date>
    <item>
      <title>NAT Multiple Inside Subnets</title>
      <link>https://community.cisco.com/t5/network-security/nat-multiple-inside-subnets/m-p/1713314#M529257</link>
      <description>&lt;P&gt;Can anyone help me with the NAT command on 8.4? I am trying to PAT multipule Inside subnets to an IP address. With the example I found I can only PAT one subnet. If I do it the way I have below, it will end up with the last subnet (3.3.3.0) stay in the config. What is the best way of doing it? I have about 20 inside subnets I need to PAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object network obj-Inside-sub1&lt;/P&gt;&lt;P&gt;subnet 1.1.1.0 255.255.255.0&lt;BR /&gt;subnet 2.2.2.0 255.255.0.0&lt;BR /&gt;subnet 3.3.3.0 255.255.0.0&lt;BR /&gt;nat (inside,outside) dynamic 199.246.5.2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help &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;</description>
      <pubDate>Mon, 11 Mar 2019 20:50:37 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-multiple-inside-subnets/m-p/1713314#M529257</guid>
      <dc:creator>joe.ho</dc:creator>
      <dc:date>2019-03-11T20:50:37Z</dc:date>
    </item>
    <item>
      <title>NAT Multiple Inside Subnets</title>
      <link>https://community.cisco.com/t5/network-security/nat-multiple-inside-subnets/m-p/1713315#M529261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Joe,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you see is the correct behavior, because for multiple subnets you need to use a object-group, which includes all three subnets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Jun 2011 05:52:49 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-multiple-inside-subnets/m-p/1713315#M529261</guid>
      <dc:creator>varrao</dc:creator>
      <dc:date>2011-06-25T05:52:49Z</dc:date>
    </item>
    <item>
      <title>NAT Multiple Inside Subnets</title>
      <link>https://community.cisco.com/t5/network-security/nat-multiple-inside-subnets/m-p/1713316#M529264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The config would look something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object-group network all_subnets&lt;/P&gt;&lt;P&gt; network-object 1.1.1.0 255.255.255.0&lt;/P&gt;&lt;P&gt; network-object 2.2.2.0 255.255.0.0&lt;/P&gt;&lt;P&gt; network-object 3.3.3.0 255.255.0.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object network patted_ip&lt;/P&gt;&lt;P&gt;host 199.246.5.2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nat (inside,outside) source dynamic all_subnet patted_ip&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And it shoudl work for all the subnets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Jun 2011 05:57:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-multiple-inside-subnets/m-p/1713316#M529264</guid>
      <dc:creator>varrao</dc:creator>
      <dc:date>2011-06-25T05:57:28Z</dc:date>
    </item>
    <item>
      <title>NAT Multiple Inside Subnets</title>
      <link>https://community.cisco.com/t5/network-security/nat-multiple-inside-subnets/m-p/1713317#M529265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks Varun, the command works. Now I am a bit confuse with the command. Would you able to point out why we do it this way?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I put in the NAT any command like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object network obj_any &lt;/P&gt;&lt;P&gt; subnet 0.0.0.0 0.0.0.0&lt;/P&gt;&lt;P&gt;nat (inside,outside) dynamic 199.246.5.1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will give me something like this in show run. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object network obj_any &lt;/P&gt;&lt;P&gt; subnet 0.0.0.0 0.0.0.0&lt;/P&gt;&lt;P&gt;object network obj_any &lt;/P&gt;&lt;P&gt;nat (inside,outside) dynamic 199.246.5.1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I put in the command you provide for NATing the specific inside subnet it doesn't turn out the same way as above. Show run only show me this line by itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nat (inside,outside) source dynamic all_subnet patted_ip&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looks like the source keyword made a different. I did see some examples use the source keyword to NAT everything to outside. Which is a cleaner way of doing things? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Jun 2011 23:01:36 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-multiple-inside-subnets/m-p/1713317#M529265</guid>
      <dc:creator>joe.ho</dc:creator>
      <dc:date>2011-06-25T23:01:36Z</dc:date>
    </item>
    <item>
      <title>NAT Multiple Inside Subnets</title>
      <link>https://community.cisco.com/t5/network-security/nat-multiple-inside-subnets/m-p/1713318#M529266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joe.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are two different types of nat in 8.4, Manual NAT(Twice NAT) and Auto NAT(Object NAT), the one that you were doing earler was Auto NAT (Object NAT) and the configuration that I gave you was for Manual NAT. There is no such difference, just what you are comfortable with. Manual NAT always takes precedence over Auto NAT. Here is a doc,kindly go through it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.cisco.com/en/US/customer/docs/security/asa/asa84/configuration/guide/nat_objects.html"&gt;http://www.cisco.com/en/US/customer/docs/security/asa/asa84/configuration/guide/nat_objects.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jun 2011 00:28:50 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-multiple-inside-subnets/m-p/1713318#M529266</guid>
      <dc:creator>varrao</dc:creator>
      <dc:date>2011-06-26T00:28:50Z</dc:date>
    </item>
    <item>
      <title>NAT Multiple Inside Subnets</title>
      <link>https://community.cisco.com/t5/network-security/nat-multiple-inside-subnets/m-p/1713319#M529268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks for clarifying.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 04:10:43 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-multiple-inside-subnets/m-p/1713319#M529268</guid>
      <dc:creator>joe.ho</dc:creator>
      <dc:date>2011-06-29T04:10:43Z</dc:date>
    </item>
    <item>
      <title>It worked for me as well.</title>
      <link>https://community.cisco.com/t5/network-security/nat-multiple-inside-subnets/m-p/1713320#M529270</link>
      <description>&lt;P&gt;It worked for me as well.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2016 14:22:56 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-multiple-inside-subnets/m-p/1713320#M529270</guid>
      <dc:creator>Stefan Amstutz</dc:creator>
      <dc:date>2016-08-25T14:22:56Z</dc:date>
    </item>
  </channel>
</rss>

