<?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 Problems Configuring Pix 501 for SBS 2003 in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/problems-configuring-pix-501-for-sbs-2003/m-p/403857#M533047</link>
    <description>&lt;P&gt;I am new to cisco equipment.  My company recently purchased a Pix 501 unlimited users firewall, it is connected to a cable internet connection with a dynamic ip address. The internet works great and so does the dhcp server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a Windows small business server 2003 on our network.  I need to configure the firewall to forward ports to the SBS server for remote web workplace.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also about a week ago I lost connectivity to the PDM GUI through my web browser.  Telnet and console work perfectly fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am attaching my config file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help will be appreciated.  Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 21 Feb 2020 08:24:05 GMT</pubDate>
    <dc:creator>neden51420</dc:creator>
    <dc:date>2020-02-21T08:24:05Z</dc:date>
    <item>
      <title>Problems Configuring Pix 501 for SBS 2003</title>
      <link>https://community.cisco.com/t5/network-security/problems-configuring-pix-501-for-sbs-2003/m-p/403857#M533047</link>
      <description>&lt;P&gt;I am new to cisco equipment.  My company recently purchased a Pix 501 unlimited users firewall, it is connected to a cable internet connection with a dynamic ip address. The internet works great and so does the dhcp server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a Windows small business server 2003 on our network.  I need to configure the firewall to forward ports to the SBS server for remote web workplace.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also about a week ago I lost connectivity to the PDM GUI through my web browser.  Telnet and console work perfectly fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am attaching my config file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help will be appreciated.  Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 08:24:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/problems-configuring-pix-501-for-sbs-2003/m-p/403857#M533047</guid>
      <dc:creator>neden51420</dc:creator>
      <dc:date>2020-02-21T08:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problems Configuring Pix 501 for SBS 2003</title>
      <link>https://community.cisco.com/t5/network-security/problems-configuring-pix-501-for-sbs-2003/m-p/403858#M533050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Firt off, you do not have an access-group statement defined for any of your ACL's. This means you are blocking all inbound traffic. You also have your static statements incorrect. You can start by cleaning up your config then enter the correct commands, you should be able to paste this to your firewall in config mode:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no access-list acl-out permit gre host 192.168.1.1 host 192.168.1.1 &lt;/P&gt;&lt;P&gt;no access-list acl_outside permit tcp any any eq www &lt;/P&gt;&lt;P&gt;no access-list acl_inside permit tcp any any eq www &lt;/P&gt;&lt;P&gt;no access-list inbound permit icmp any any &lt;/P&gt;&lt;P&gt;no access-list inbound permit tcp any host 24.50.241.113 eq https &lt;/P&gt;&lt;P&gt;no access-list acl-in permit gre host 192.168.1.1 host 192.168.1.1 &lt;/P&gt;&lt;P&gt;no access-list outside_in permit tcp any host 24.50.241.113 eq www &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no static (inside,outside) tcp interface www sbsserver www netmask 255.255.255.255 0 0 &lt;/P&gt;&lt;P&gt;no static (inside,outside) tcp interface https sbsserver https netmask 255.255.255.255 0 0 &lt;/P&gt;&lt;P&gt;no static (outside,inside) tcp interface www sbsserver www netmask 255.255.255.255 0 0 &lt;/P&gt;&lt;P&gt;no static (outside,inside) tcp interface https sbsserver https netmask 255.255.255.255 0 0 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) tcp 24.50.241.113 80 192.168.1.69 80 netmask 255.255.255.255 0 0&lt;/P&gt;&lt;P&gt;static (inside,outside) tcp 24.50.241.113 443 192.168.1.69 443 netmask 255.255.255.255 0 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list OUT-IN permit tcp any host 24.50.241.113 eq https&lt;/P&gt;&lt;P&gt;access-list OUT-IN permit tcp any host 24.50.241.113 eq www&lt;/P&gt;&lt;P&gt;access-list OUT-IN permit icmp any any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-group OUT-IN in interface outside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What ip are you trying to access your pdm from? the http config looks correct, unless your coming from an ip other than 192.168.1.x&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know if this works&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2005 14:28:17 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/problems-configuring-pix-501-for-sbs-2003/m-p/403858#M533050</guid>
      <dc:creator>bigchoice75</dc:creator>
      <dc:date>2005-09-16T14:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problems Configuring Pix 501 for SBS 2003</title>
      <link>https://community.cisco.com/t5/network-security/problems-configuring-pix-501-for-sbs-2003/m-p/403859#M533051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That worked perfectly.  Thank You very much for all your help.  I can now access PDM from web browser also.  I need to setup remote desktop using port 3389 now and a few others.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you don't mind I have an additional question.  I can not connect to our remote location's vpn.  It's also a SBS, connecting to it with windows vpn client.  I was able to before installing the firewall.  I can connect but when verifying username and password it stops and returns an error.  Is there something else that needs opened up on the firewall. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once again thank you for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2005 15:08:36 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/problems-configuring-pix-501-for-sbs-2003/m-p/403859#M533051</guid>
      <dc:creator>neden51420</dc:creator>
      <dc:date>2005-09-16T15:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problems Configuring Pix 501 for SBS 2003</title>
      <link>https://community.cisco.com/t5/network-security/problems-configuring-pix-501-for-sbs-2003/m-p/403860#M533053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the problem is that you are using PAT on your outside interface and the vpn uses GRE which is an IP protocol. PAT will not forward GRE. Does your other site have a firewall? if so, you can setup VPN tunnel to terminate between your PIX and other site's firewall. Let me know...and we'll figure something out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2005 16:57:40 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/problems-configuring-pix-501-for-sbs-2003/m-p/403860#M533053</guid>
      <dc:creator>bigchoice75</dc:creator>
      <dc:date>2005-09-16T16:57:40Z</dc:date>
    </item>
  </channel>
</rss>

