<?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 Accessing webserver behind an ASA 5505 (newbie) in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/accessing-webserver-behind-an-asa-5505-newbie/m-p/854087#M963314</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have not been able to figure out how to setup PAT/ACLs or anything else to get an outside web browser to hit my webserver.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Setup:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cable modem -&amp;gt; ASA 5505 -&amp;gt; PC&lt;/P&gt;&lt;P&gt;                        -&amp;gt; webserver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like everyone on the outside to be able to hit the webserver.  I've tried all kinds of different security policies with no luck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I must not understand the policies and NAT/PAT stuff very well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Coming from an old Linksys router you told it what port to watch for and then forward it to a host on the inside.  The ASA seems MUCH more complicated than that...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Public IP:  1.1.1.1&lt;/P&gt;&lt;P&gt;Inside IP:  192.168.1.1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look for the general rules that set this access up.  I'll try to use the CLI if you can show the actual commands, otherwise I'm fumbling around in the GUI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be appreciated.&lt;/P&gt;</description>
    <pubDate>Mon, 11 Mar 2019 11:10:57 GMT</pubDate>
    <dc:creator>kcaporaso</dc:creator>
    <dc:date>2019-03-11T11:10:57Z</dc:date>
    <item>
      <title>Accessing webserver behind an ASA 5505 (newbie)</title>
      <link>https://community.cisco.com/t5/network-security/accessing-webserver-behind-an-asa-5505-newbie/m-p/854087#M963314</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have not been able to figure out how to setup PAT/ACLs or anything else to get an outside web browser to hit my webserver.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Setup:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cable modem -&amp;gt; ASA 5505 -&amp;gt; PC&lt;/P&gt;&lt;P&gt;                        -&amp;gt; webserver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like everyone on the outside to be able to hit the webserver.  I've tried all kinds of different security policies with no luck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I must not understand the policies and NAT/PAT stuff very well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Coming from an old Linksys router you told it what port to watch for and then forward it to a host on the inside.  The ASA seems MUCH more complicated than that...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Public IP:  1.1.1.1&lt;/P&gt;&lt;P&gt;Inside IP:  192.168.1.1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look for the general rules that set this access up.  I'll try to use the CLI if you can show the actual commands, otherwise I'm fumbling around in the GUI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be appreciated.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 11:10:57 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/accessing-webserver-behind-an-asa-5505-newbie/m-p/854087#M963314</guid>
      <dc:creator>kcaporaso</dc:creator>
      <dc:date>2019-03-11T11:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing webserver behind an ASA 5505 (newbie)</title>
      <link>https://community.cisco.com/t5/network-security/accessing-webserver-behind-an-asa-5505-newbie/m-p/854088#M963315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's more complicated for good reason. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In it's simplest form, these commands will do the trick.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) interface &lt;WEB.SERVER.IP&gt; netmask 255.255.255.255&lt;/WEB.SERVER.IP&gt;&lt;/P&gt;&lt;P&gt;access-list outside_access_in permit tcp any interface outside eq 80&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;This is if you are using the outside interface ip of your ASA to access the webserver.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also do this which would allow you to use the outside interface ip for other services to other servers...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) tcp interface 80 &lt;WEB.SERVER.IP&gt; 80 netmask 255.255.255.255&lt;/WEB.SERVER.IP&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2007 19:17:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/accessing-webserver-behind-an-asa-5505-newbie/m-p/854088#M963315</guid>
      <dc:creator>acomiskey</dc:creator>
      <dc:date>2007-09-13T19:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing webserver behind an ASA 5505 (newbie)</title>
      <link>https://community.cisco.com/t5/network-security/accessing-webserver-behind-an-asa-5505-newbie/m-p/854089#M963316</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;What is the private IP address of the web server and what is the public IP address you want to present it as eg. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if private IP = 192.168.5.1&lt;/P&gt;&lt;P&gt;public IP = 217.22.1.10 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then config would be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) 217.22.1.10 192.168.5.1 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list acl_inbound permit tcp any host 217.22.1.10 eq 80 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-group acl_inbound in interface outside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2007 19:20:02 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/accessing-webserver-behind-an-asa-5505-newbie/m-p/854089#M963316</guid>
      <dc:creator>Jon Marshall</dc:creator>
      <dc:date>2007-09-13T19:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing webserver behind an ASA 5505 (newbie)</title>
      <link>https://community.cisco.com/t5/network-security/accessing-webserver-behind-an-asa-5505-newbie/m-p/854090#M963317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see where I went wrong...  I was setting the source port to 80.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2007 19:26:12 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/accessing-webserver-behind-an-asa-5505-newbie/m-p/854090#M963317</guid>
      <dc:creator>kcaporaso</dc:creator>
      <dc:date>2007-09-13T19:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing webserver behind an ASA 5505 (newbie)</title>
      <link>https://community.cisco.com/t5/network-security/accessing-webserver-behind-an-asa-5505-newbie/m-p/854091#M963318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here are the commands:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) 1.1.1.1 192.168.1.1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list aclout permit tcp any host 1.1.1.1 eq 80&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-group aclout in interface outside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case 1.1.1.1 is the IP address of the outside interface of ASA, then here are the commands:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) tcp interface 80 192.168.1.1 80&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list aclout permit tcp any interface outside eq 80&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-group aclout in interface outside&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, 13 Sep 2007 19:29:17 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/accessing-webserver-behind-an-asa-5505-newbie/m-p/854091#M963318</guid>
      <dc:creator>hsajwan</dc:creator>
      <dc:date>2007-09-13T19:29:17Z</dc:date>
    </item>
  </channel>
</rss>

