<?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 ASA Keep host address the same while NATing the network address in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/asa-keep-host-address-the-same-while-nating-the-network-address/m-p/3694033#M12713</link>
    <description>&lt;P&gt;Does anyone know a way to easily, statically NAT one /24 address to another /24 address, while keeping the host addresses the same.&amp;nbsp; I was thinking something like this, but it doesn't seem to work.&amp;nbsp; I'm trying to avoid configuring a static NAT translation for all 254 addresses on one subnet to the matching 254 addresses on the other subnet.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;object network Subnet-inside&lt;BR /&gt; host 10.1.1.0 255.255.255.0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;object network Subnet-outside&lt;BR /&gt; host 10.20.1.0 255.255.255.0&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;object network Subnet-inside&lt;/P&gt;
&lt;P&gt;&amp;nbsp; nat (inside,outside)&amp;nbsp; static Subnet-outside&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 21 Feb 2020 16:08:42 GMT</pubDate>
    <dc:creator>derek.small</dc:creator>
    <dc:date>2020-02-21T16:08:42Z</dc:date>
    <item>
      <title>ASA Keep host address the same while NATing the network address</title>
      <link>https://community.cisco.com/t5/network-security/asa-keep-host-address-the-same-while-nating-the-network-address/m-p/3694033#M12713</link>
      <description>&lt;P&gt;Does anyone know a way to easily, statically NAT one /24 address to another /24 address, while keeping the host addresses the same.&amp;nbsp; I was thinking something like this, but it doesn't seem to work.&amp;nbsp; I'm trying to avoid configuring a static NAT translation for all 254 addresses on one subnet to the matching 254 addresses on the other subnet.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;object network Subnet-inside&lt;BR /&gt; host 10.1.1.0 255.255.255.0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;object network Subnet-outside&lt;BR /&gt; host 10.20.1.0 255.255.255.0&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;object network Subnet-inside&lt;/P&gt;
&lt;P&gt;&amp;nbsp; nat (inside,outside)&amp;nbsp; static Subnet-outside&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 16:08:42 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-keep-host-address-the-same-while-nating-the-network-address/m-p/3694033#M12713</guid>
      <dc:creator>derek.small</dc:creator>
      <dc:date>2020-02-21T16:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: ASA Keep host address the same while NATing the network address</title>
      <link>https://community.cisco.com/t5/network-security/asa-keep-host-address-the-same-while-nating-the-network-address/m-p/3694493#M12714</link>
      <description>&lt;P&gt;This should work. You have to change your object to:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;object network Subnet-inside&lt;BR /&gt;&lt;STRONG&gt;subnet&lt;/STRONG&gt;&amp;nbsp;10.1.1.0 255.255.255.0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;object network Subnet-outside&lt;BR /&gt;&lt;STRONG&gt;subnet&lt;/STRONG&gt;&amp;nbsp;10.20.1.0 255.255.255.0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also add an ACL on the outside interface like below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;access-list outside-in extended permit ip any object Subnet-inside&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A Sample packet-tracer:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;packet-tracer input outside tcp 4.2.2.2 12345 10.20.1.5 4$&lt;/P&gt;
&lt;P&gt;Phase: 1&lt;BR /&gt;Type: UN-NAT&lt;BR /&gt;Subtype: static&lt;BR /&gt;Result: ALLOW&lt;BR /&gt;Config:&lt;BR /&gt;object network Subnet-inside&lt;BR /&gt; nat (inside,outside) static Subnet-outside&lt;BR /&gt;Additional Information:&lt;BR /&gt;NAT divert to egress interface inside&lt;BR /&gt;&lt;STRONG&gt;Untranslate 10.20.1.5/443 to 10.1.1.5/443&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;packet-tracer input outside tcp 4.2.2.2 12345 10.20.1.50 $&lt;/P&gt;
&lt;P&gt;Phase: 1&lt;BR /&gt;Type: UN-NAT&lt;BR /&gt;Subtype: static&lt;BR /&gt;Result: ALLOW&lt;BR /&gt;Config:&lt;BR /&gt;object network Subnet-inside&lt;BR /&gt; nat (inside,outside) static Subnet-outside&lt;BR /&gt;Additional Information:&lt;BR /&gt;NAT divert to egress interface inside&lt;BR /&gt;&lt;STRONG&gt;Untranslate 10.20.1.50/443 to 10.1.1.50/443&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Aug 2018 12:39:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-keep-host-address-the-same-while-nating-the-network-address/m-p/3694493#M12714</guid>
      <dc:creator>Rahul Govindan</dc:creator>
      <dc:date>2018-08-24T12:39:18Z</dc:date>
    </item>
  </channel>
</rss>

