<?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 Re: NATing two public IPs to one private IP: HOWTO? in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/nating-two-public-ips-to-one-private-ip-howto/m-p/1132231#M915109</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The policy nat is also an alternative, say rdp and http example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex.&lt;/P&gt;&lt;P&gt;Public IPs    200.200.200.1&lt;/P&gt;&lt;P&gt;              200.200.200.2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Private IP   192.168.1.1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) 200.200.200.1 access-list policy_nat_http1 &lt;/P&gt;&lt;P&gt;static (inside,outside) 200.200.200.2 access-list policy_nat_rdp1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list policy_nat_http1 extended permit ip host 192.168.1.1 any &lt;/P&gt;&lt;P&gt;access-list policy_nat_rdp1  extended permit ip host 192.168.1.1 any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list outside_access_in extended permit tcp any host 200.200.200.1 eq 80 log &lt;/P&gt;&lt;P&gt;access-list outside_access_in extended permit tcp any host 200.200.200.2 eq 3389 log &lt;/P&gt;&lt;P&gt;access-group outside_access_in in interface outside &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[edit]&lt;/P&gt;&lt;P&gt;for your smtp &lt;/P&gt;&lt;P&gt;replace the acl PNAT name as something like:&lt;/P&gt;&lt;P&gt;policy_nat_smtp1, policy_nat_smpt2, and the respective TCP port 25 in the inbound acl, it should work.. make sure the public Ips are not currently being used by any other system otherwise you will get errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Aug 2008 15:17:10 GMT</pubDate>
    <dc:creator>JORGE RODRIGUEZ</dc:creator>
    <dc:date>2008-08-06T15:17:10Z</dc:date>
    <item>
      <title>NATing two public IPs to one private IP: HOWTO?</title>
      <link>https://community.cisco.com/t5/network-security/nating-two-public-ips-to-one-private-ip-howto/m-p/1132226#M915100</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an email server hosting two email domains e.g. @sisco.com and @neatco.com each resolved to two different public IPs (MX records etc)&lt;/P&gt;&lt;P&gt;I have a Cisco 5510 ASA firewall at my perimter and now I have the challenge of mapping the two public IPs to my mail server on the internal side.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I over come this without having to give the server two separate private IPs for each email domain???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Edd.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 13:27:02 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nating-two-public-ips-to-one-private-ip-howto/m-p/1132226#M915100</guid>
      <dc:creator>edwardwaithaka</dc:creator>
      <dc:date>2019-03-11T13:27:02Z</dc:date>
    </item>
    <item>
      <title>Re: NATing two public IPs to one private IP: HOWTO?</title>
      <link>https://community.cisco.com/t5/network-security/nating-two-public-ips-to-one-private-ip-howto/m-p/1132227#M915102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Edd,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mmmmmm I'm pretty sure you cannot do this with a static NAT statements, they would overlap.....but you could try using an alias and see if that would work:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) w.w.w.w x.x.x.x netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;alias (inside) y.y.y.y z.z.z.z 255.255.255.255&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; w.w.w.w = 1st external IP address&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; x.x.x.x = Internal Server IP&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; y.y.y.y = Internal Server IP&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; z.z.z.z = 2ns external IP address#&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;This is a guess - you will have to test, and it may not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Aug 2008 14:35:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nating-two-public-ips-to-one-private-ip-howto/m-p/1132227#M915102</guid>
      <dc:creator>andrew.prince</dc:creator>
      <dc:date>2008-08-06T14:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: NATing two public IPs to one private IP: HOWTO?</title>
      <link>https://community.cisco.com/t5/network-security/nating-two-public-ips-to-one-private-ip-howto/m-p/1132228#M915103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;lets say ur internal server is in the inside network with ip 192.168.1.1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and u have two public ips&lt;/P&gt;&lt;P&gt;1.1.1.1 and 2.2.2.2&lt;/P&gt;&lt;P&gt;now we gonna map any connection to these ips to that server&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside, outisde) 1.1.1.1 192.168.1.1 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;static (inside, outisde) 2.2.2.2 192.168.1.1 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u wanna map only smtp port for example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside, outisde)tcp 1.1.1.1 25 192.168.1.1 25 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;static (inside, outisde)tcp 25 2.2.2.2 192.168.1.1 25 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this case only connections for tcp 25 will be maped while the first exampel everything will be maped&lt;/P&gt;&lt;P&gt;and if u wanna make for more ports like tcp 25 and other oorts do the same command like for each port&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUT DONT FORGET to make access list that permit traffic coming to ur public ip address and apply it to the outside interface&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for the first example here do the forllowing acl&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 100 permit ip any host 1.1.1.1&lt;/P&gt;&lt;P&gt;access-list 100 permit ip any host 2.2.2.2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-group 100 in interface outside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for the second example we gonna allow only spesific port or ports&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp any host 2.2.2.2 eq 25&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp any host 1.1.1.1 eq 25&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-group 100 in interface outside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;good luck &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please, if helpful Rate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Aug 2008 14:43:22 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nating-two-public-ips-to-one-private-ip-howto/m-p/1132228#M915103</guid>
      <dc:creator>Marwan ALshawi</dc:creator>
      <dc:date>2008-08-06T14:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: NATing two public IPs to one private IP: HOWTO?</title>
      <link>https://community.cisco.com/t5/network-security/nating-two-public-ips-to-one-private-ip-howto/m-p/1132229#M915105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try try the below URL - policy based NAT:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-custom" href="http://www.cisco.com/en/US/customer/products/ps6120/products_configuration_example09186a00807d2874.shtml" target="_blank"&gt;http://www.cisco.com/en/US/customer/products/ps6120/products_configuration_example09186a00807d2874.shtml&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Aug 2008 14:52:38 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nating-two-public-ips-to-one-private-ip-howto/m-p/1132229#M915105</guid>
      <dc:creator>andrew.prince</dc:creator>
      <dc:date>2008-08-06T14:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: NATing two public IPs to one private IP: HOWTO?</title>
      <link>https://community.cisco.com/t5/network-security/nating-two-public-ips-to-one-private-ip-howto/m-p/1132230#M915106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi marwanshawi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont think this can happen. I get the error;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR: duplicate of existing static&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We tried policy nat but that also doesnt work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Aug 2008 15:03:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nating-two-public-ips-to-one-private-ip-howto/m-p/1132230#M915106</guid>
      <dc:creator>edwardwaithaka</dc:creator>
      <dc:date>2008-08-06T15:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: NATing two public IPs to one private IP: HOWTO?</title>
      <link>https://community.cisco.com/t5/network-security/nating-two-public-ips-to-one-private-ip-howto/m-p/1132231#M915109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The policy nat is also an alternative, say rdp and http example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex.&lt;/P&gt;&lt;P&gt;Public IPs    200.200.200.1&lt;/P&gt;&lt;P&gt;              200.200.200.2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Private IP   192.168.1.1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) 200.200.200.1 access-list policy_nat_http1 &lt;/P&gt;&lt;P&gt;static (inside,outside) 200.200.200.2 access-list policy_nat_rdp1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list policy_nat_http1 extended permit ip host 192.168.1.1 any &lt;/P&gt;&lt;P&gt;access-list policy_nat_rdp1  extended permit ip host 192.168.1.1 any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list outside_access_in extended permit tcp any host 200.200.200.1 eq 80 log &lt;/P&gt;&lt;P&gt;access-list outside_access_in extended permit tcp any host 200.200.200.2 eq 3389 log &lt;/P&gt;&lt;P&gt;access-group outside_access_in in interface outside &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[edit]&lt;/P&gt;&lt;P&gt;for your smtp &lt;/P&gt;&lt;P&gt;replace the acl PNAT name as something like:&lt;/P&gt;&lt;P&gt;policy_nat_smtp1, policy_nat_smpt2, and the respective TCP port 25 in the inbound acl, it should work.. make sure the public Ips are not currently being used by any other system otherwise you will get errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Aug 2008 15:17:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nating-two-public-ips-to-one-private-ip-howto/m-p/1132231#M915109</guid>
      <dc:creator>JORGE RODRIGUEZ</dc:creator>
      <dc:date>2008-08-06T15:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: NATing two public IPs to one private IP: HOWTO?</title>
      <link>https://community.cisco.com/t5/network-security/nating-two-public-ips-to-one-private-ip-howto/m-p/1132232#M915110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have you tried placing two IPs on the Email servers Ethernet card?  NAT one external to each Internal IP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Aug 2008 16:36:12 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nating-two-public-ips-to-one-private-ip-howto/m-p/1132232#M915110</guid>
      <dc:creator>dwgrow</dc:creator>
      <dc:date>2008-08-06T16:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: NATing two public IPs to one private IP: HOWTO?</title>
      <link>https://community.cisco.com/t5/network-security/nating-two-public-ips-to-one-private-ip-howto/m-p/1132233#M915112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok lets do a work around&lt;/P&gt;&lt;P&gt;lets say u ur internal mail server ip address is 192.168.1.1&lt;/P&gt;&lt;P&gt;make static nat for this ip to one of the public IPs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then go to ur server give it a secondary IP lets say 192.168.1.10&lt;/P&gt;&lt;P&gt;and then mak another sattic nat maping the second public ip address to that secondary IP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this case will for sure&lt;/P&gt;&lt;P&gt;good lcuk &lt;/P&gt;&lt;P&gt;and let know &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Aug 2008 09:35:30 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nating-two-public-ips-to-one-private-ip-howto/m-p/1132233#M915112</guid>
      <dc:creator>Marwan ALshawi</dc:creator>
      <dc:date>2008-08-07T09:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: NATing two public IPs to one private IP: HOWTO?</title>
      <link>https://community.cisco.com/t5/network-security/nating-two-public-ips-to-one-private-ip-howto/m-p/1132234#M915113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Marwan &amp;amp; Dennis solution is effective as well and probably the easiest way to go around it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Aug 2008 14:25:09 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nating-two-public-ips-to-one-private-ip-howto/m-p/1132234#M915113</guid>
      <dc:creator>JORGE RODRIGUEZ</dc:creator>
      <dc:date>2008-08-07T14:25:09Z</dc:date>
    </item>
  </channel>
</rss>

