<?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 Single Public PAT to multiple Internal in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/single-public-pat-to-multiple-internal/m-p/1177567#M861004</link>
    <description>&lt;P&gt;ASA 5510&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Need to NAT single public IP to multiple internal IPs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Outside:1.1.1.1/25 -&amp;gt; DMZ:192.168.1.10/25&lt;/P&gt;&lt;P&gt;while...&lt;/P&gt;&lt;P&gt;Outside:1.1.1.1/443 -&amp;gt; Inside:192.168.2.10/443&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;Outside:1.1.1.1/1352 -&amp;gt; Inside:192.168.2.10/1352&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Initially tried (via ASDM) static P/NAT from DMZ to Outside using Port Address Translation with port 25 both in and out.&lt;/P&gt;&lt;P&gt;Then adding static P/NAT from Inside to Outside using Port Address Translation for port 443.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem arises when I want to specify the third static P/NAT for port 1352, or when I leave PAT on for DMZ host, but turn it off for the Inside host.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ultimate goal is for port 25 on the public IP to go to the DMZ host while 443 and 1352 get sent to the Inside host.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I accomplish this?  It's OK to say the ASDM won't let you do this, but I won't be so happy to hear that the ASA cannot accomplish this knowing that there are a bunch of half-assed appliances out there that DO handle this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for helpin  me out yet again!&lt;/P&gt;</description>
    <pubDate>Mon, 11 Mar 2019 15:16:31 GMT</pubDate>
    <dc:creator>bsisco</dc:creator>
    <dc:date>2019-03-11T15:16:31Z</dc:date>
    <item>
      <title>Single Public PAT to multiple Internal</title>
      <link>https://community.cisco.com/t5/network-security/single-public-pat-to-multiple-internal/m-p/1177567#M861004</link>
      <description>&lt;P&gt;ASA 5510&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Need to NAT single public IP to multiple internal IPs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Outside:1.1.1.1/25 -&amp;gt; DMZ:192.168.1.10/25&lt;/P&gt;&lt;P&gt;while...&lt;/P&gt;&lt;P&gt;Outside:1.1.1.1/443 -&amp;gt; Inside:192.168.2.10/443&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;Outside:1.1.1.1/1352 -&amp;gt; Inside:192.168.2.10/1352&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Initially tried (via ASDM) static P/NAT from DMZ to Outside using Port Address Translation with port 25 both in and out.&lt;/P&gt;&lt;P&gt;Then adding static P/NAT from Inside to Outside using Port Address Translation for port 443.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem arises when I want to specify the third static P/NAT for port 1352, or when I leave PAT on for DMZ host, but turn it off for the Inside host.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ultimate goal is for port 25 on the public IP to go to the DMZ host while 443 and 1352 get sent to the Inside host.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I accomplish this?  It's OK to say the ASDM won't let you do this, but I won't be so happy to hear that the ASA cannot accomplish this knowing that there are a bunch of half-assed appliances out there that DO handle this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for helpin  me out yet again!&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 15:16:31 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/single-public-pat-to-multiple-internal/m-p/1177567#M861004</guid>
      <dc:creator>bsisco</dc:creator>
      <dc:date>2019-03-11T15:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Single Public PAT to multiple Internal</title>
      <link>https://community.cisco.com/t5/network-security/single-public-pat-to-multiple-internal/m-p/1177568#M861007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cisco ASA does support that. Please try from CLI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static(dmz,outside) tcp 1.1.1.1 25 192.168.1.1 25&lt;/P&gt;&lt;P&gt;static(inside,outside) tcp 1.1.1.1 443 192.168.2.1 443&lt;/P&gt;&lt;P&gt;static(inside,outside) tcp 1.1.1.1 1352 192.168.2.1 1352&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also add these access-list in outside interface access-list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list outside_in extended permit tcp any host 1.1.1.1 eq smtp&lt;/P&gt;&lt;P&gt;access-list outside_in extended permit tcp any host 1.1.1.1 eq https&lt;/P&gt;&lt;P&gt;access-list outside_in extended permit tcp any host 1.1.1.1 1352&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>Thu, 09 Apr 2009 00:06:09 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/single-public-pat-to-multiple-internal/m-p/1177568#M861007</guid>
      <dc:creator>roshan.maskey</dc:creator>
      <dc:date>2009-04-09T00:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: Single Public PAT to multiple Internal</title>
      <link>https://community.cisco.com/t5/network-security/single-public-pat-to-multiple-internal/m-p/1177569#M861011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I should've known that even though the GUI ASDM complained about it and even though the CLI (via the GUI) complains about it but let's it go that it was possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Spoiled by yet another GUI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Roshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Apr 2009 16:08:14 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/single-public-pat-to-multiple-internal/m-p/1177569#M861011</guid>
      <dc:creator>bsisco</dc:creator>
      <dc:date>2009-04-09T16:08:14Z</dc:date>
    </item>
  </channel>
</rss>

