<?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 Static Nate Rule in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/static-nate-rule/m-p/1436613#M733119</link>
    <description>&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I try to add a second item to the source of a static nat rule, it replaces the original source item. Even if I try to add an extra static nat rule with a different source natted to the same destination IP, it asks me to replace the original rule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also tried to expand the source from one ip to /24 network but in this case I get an error the subnetmask of source and destination (/32) are not equal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea how I can allow two source ip addresses translated to one Ipadress over one interface?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The firewall is a Cisco ASA5520 running software version 8.0(3)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help really appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kenny&lt;/P&gt;</description>
    <pubDate>Mon, 11 Mar 2019 17:54:25 GMT</pubDate>
    <dc:creator>KennyAlsic</dc:creator>
    <dc:date>2019-03-11T17:54:25Z</dc:date>
    <item>
      <title>Static Nate Rule</title>
      <link>https://community.cisco.com/t5/network-security/static-nate-rule/m-p/1436613#M733119</link>
      <description>&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I try to add a second item to the source of a static nat rule, it replaces the original source item. Even if I try to add an extra static nat rule with a different source natted to the same destination IP, it asks me to replace the original rule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also tried to expand the source from one ip to /24 network but in this case I get an error the subnetmask of source and destination (/32) are not equal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea how I can allow two source ip addresses translated to one Ipadress over one interface?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The firewall is a Cisco ASA5520 running software version 8.0(3)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help really appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kenny&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 17:54:25 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nate-rule/m-p/1436613#M733119</guid>
      <dc:creator>KennyAlsic</dc:creator>
      <dc:date>2019-03-11T17:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Static Nate Rule</title>
      <link>https://community.cisco.com/t5/network-security/static-nate-rule/m-p/1436614#M733138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kenny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot translate the same internal IP address to two different IP address statically, for example, the below command won't work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (in,out) 200.1.1.1 10.1.1.1&lt;/P&gt;&lt;P&gt;static (in,out) 200.1.1.2 10.1.1.1&amp;nbsp; --&amp;gt; you will get an overlapping error here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason it does not work is because the ASA won't know to which address translate 10.1.1.1 (because you have two static rules).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you can do though is use static PAT:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (in,out) tcp 200.1.1.1 80 10.1.1.1 80&lt;/P&gt;&lt;P&gt;static (in,out) tcp 200.1.1.2 25 10.1.1.1 25&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first line you're translating the internal 10.1.1.1 to 200.1.1.1 when using TCP port 80&lt;/P&gt;&lt;P&gt;The second line you're translating the same internal 10.1.1.1 to 200.1.1.2 when using TCP port 25... and so on...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Federico.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jun 2010 13:23:33 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nate-rule/m-p/1436614#M733138</guid>
      <dc:creator>Federico Coto Fajardo</dc:creator>
      <dc:date>2010-06-03T13:23:33Z</dc:date>
    </item>
    <item>
      <title>Re: Static Nate Rule</title>
      <link>https://community.cisco.com/t5/network-security/static-nate-rule/m-p/1436615#M733160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Federico,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the quick reply, but that was not the thing I am looking for ... maybe my question was not clear. Here it comes again:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to translate two different internal ipaddresses to another ipaddress.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kenny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jun 2010 13:34:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nate-rule/m-p/1436615#M733160</guid>
      <dc:creator>KennyAlsic</dc:creator>
      <dc:date>2010-06-03T13:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: Static Nate Rule</title>
      <link>https://community.cisco.com/t5/network-security/static-nate-rule/m-p/1436616#M733172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kenny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for the misunderstanding, but the same rule applies.&lt;/P&gt;&lt;P&gt;You cannot translate two different internal IP addresses to the same outside IP adress statically (only using STATIC PAT)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Normally this is desired when say, you have two internal servers and one listens on one port and the other one on a different port and you want to map them both to the same outside IP.&lt;/P&gt;&lt;P&gt;This can be done with static PAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Federico.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jun 2010 13:56:50 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/static-nate-rule/m-p/1436616#M733172</guid>
      <dc:creator>Federico Coto Fajardo</dc:creator>
      <dc:date>2010-06-03T13:56:50Z</dc:date>
    </item>
  </channel>
</rss>

