<?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: Pix Firewall with Proxy Server in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435554#M532829</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again Patrick,&lt;/P&gt;&lt;P&gt;What is the difference in your first configuration and 2nd one?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the first one you have given "access-list proxy permit any any" &lt;/P&gt;&lt;P&gt;whereas&lt;/P&gt;&lt;P&gt;In the 2nd one you have given "access-list proxy deny ip any any"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do I need to combine both of them? or just follow the 2nd one to accomplish my task? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Sep 2005 03:17:29 GMT</pubDate>
    <dc:creator>lasani</dc:creator>
    <dc:date>2005-09-26T03:17:29Z</dc:date>
    <item>
      <title>Pix Firewall with Proxy Server</title>
      <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435550#M532819</link>
      <description>&lt;P&gt;I need to allow only one IP address (the one for proxy server) to browse through Pix firewall to Internet.&lt;/P&gt;&lt;P&gt;What will be the commands in PIX firewall to block the traffic to Internet from all the inside network 10.2.1.x but only allow 10.2.1.10 (Proxy server).&lt;/P&gt;&lt;P&gt;All other computers will use proxy server address to use Internet.&lt;/P&gt;&lt;P&gt;Please let me know the correct commands and 2ndly let me know if other computer can browse Internet if they are using this particular Proxy server address?&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 08:25:02 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435550#M532819</guid>
      <dc:creator>lasani</dc:creator>
      <dc:date>2020-02-21T08:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: Pix Firewall with Proxy Server</title>
      <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435551#M532821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could be something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object-group service Proxy-TCP tcp &lt;/P&gt;&lt;P&gt;  port-object eq 80 &lt;/P&gt;&lt;P&gt;  port-object eq 443 &lt;/P&gt;&lt;P&gt;  port-object eq 21&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list proxy permit tcp host 10.2.1.10 any host   object-group Proxy-TCP &lt;/P&gt;&lt;P&gt;access-list proxy deny tcp 10.2.1.0 255.255.255.0 any object-group Proxy-TCP   &lt;/P&gt;&lt;P&gt;access-list proxy permit any any &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-group proxy in interface inside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will block http, https and ftp for all inside host other than the Proxy server. Object group will be more flexible if you want to configure multiple TCP ports.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sincerely&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Sep 2005 17:07:09 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435551#M532821</guid>
      <dc:creator>Patrick Iseli</dc:creator>
      <dc:date>2005-09-25T17:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: Pix Firewall with Proxy Server</title>
      <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435552#M532824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Patrick,&lt;/P&gt;&lt;P&gt;Is it possible to make the configuration more STRICT such that all traffic to block from inside network (not only http, https and ftp) and allow all traffic from Proxy server.&lt;/P&gt;&lt;P&gt;What change do I have to make in this configuration?&lt;/P&gt;&lt;P&gt;I like the idea of object group here.&lt;/P&gt;&lt;P&gt;What if I have to use access-list without object group? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Sep 2005 17:18:57 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435552#M532824</guid>
      <dc:creator>lasani</dc:creator>
      <dc:date>2005-09-25T17:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: Pix Firewall with Proxy Server</title>
      <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435553#M532826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Follow this example and all inside traffic will be blocked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;object-group service Proxy-TCP tcp&lt;/P&gt;&lt;P&gt;port-object eq 80&lt;/P&gt;&lt;P&gt;port-object eq 443&lt;/P&gt;&lt;P&gt;port-object eq 21&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list proxy permit tcp host 10.2.1.10 any object-group Proxy-TCP&lt;/P&gt;&lt;P&gt;access-list proxy deny ip any any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-group proxy in interface inside &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like this only the Proxy server can access the internet with http, https and ftp all other traffic will be blocked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sincerely&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Sep 2005 17:24:56 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435553#M532826</guid>
      <dc:creator>Patrick Iseli</dc:creator>
      <dc:date>2005-09-25T17:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: Pix Firewall with Proxy Server</title>
      <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435554#M532829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again Patrick,&lt;/P&gt;&lt;P&gt;What is the difference in your first configuration and 2nd one?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the first one you have given "access-list proxy permit any any" &lt;/P&gt;&lt;P&gt;whereas&lt;/P&gt;&lt;P&gt;In the 2nd one you have given "access-list proxy deny ip any any"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do I need to combine both of them? or just follow the 2nd one to accomplish my task? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2005 03:17:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435554#M532829</guid>
      <dc:creator>lasani</dc:creator>
      <dc:date>2005-09-26T03:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: Pix Firewall with Proxy Server</title>
      <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435555#M532830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the reason for pat to change "permit ip any any" to "deny ip any any" is due to your requirement as stated: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to make the configuration more STRICT such that all traffic to block from inside network (not only http, https and ftp) and allow all traffic from Proxy server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in fact, you don't even need to put the "deny ip any any" as all acl by default would have this statement at the end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so all you need are:&lt;/P&gt;&lt;P&gt;object-group service Proxy-TCP tcp&lt;/P&gt;&lt;P&gt;port-object eq 80&lt;/P&gt;&lt;P&gt;port-object eq 443&lt;/P&gt;&lt;P&gt;port-object eq 21&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list proxy permit tcp host 10.2.1.10 any object-group Proxy-TCP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plus a proper nat/global statement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2005 03:55:54 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435555#M532830</guid>
      <dc:creator>jackko</dc:creator>
      <dc:date>2005-09-26T03:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: Pix Firewall with Proxy Server</title>
      <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435556#M532831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Will Object group command be work on IOS 6.1(4)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2005 04:28:39 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435556#M532831</guid>
      <dc:creator>kthned</dc:creator>
      <dc:date>2005-09-26T04:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: Pix Firewall with Proxy Server</title>
      <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435557#M532833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;First purpose is solved.&lt;/P&gt;&lt;P&gt;I am able to permit only Proxy server to go to the Internet and all other traffic is blocked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, next step is that I need to allow some traffic like port 110, 25, citrix etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I make a new object group to open some ports and what will be the access-list for this new object group?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2005 10:03:38 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435557#M532833</guid>
      <dc:creator>lasani</dc:creator>
      <dc:date>2005-09-28T10:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: Pix Firewall with Proxy Server</title>
      <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435558#M532834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I am giving the below mentioned ACLs, my purpose is solved:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list myproxy permit tcp host 10.2.1.10 any eq www&lt;/P&gt;&lt;P&gt;access-list myproxy permit tcp host 10.2.1.10 any eq https&lt;/P&gt;&lt;P&gt;access-list myproxy permit tcp host 10.2.1.10 any eq ftp-data&lt;/P&gt;&lt;P&gt;access-list myproxy permit tcp host 10.2.1.10 any eq ftp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I need to open smpt and pop3 for my email server, is the given below configuration correct:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list myproxy permit tcp any any eq smtp&lt;/P&gt;&lt;P&gt;access-list myproxy permit tcp any any eq pop3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-group myproxy in interface inside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it should be OK, but I am not getting communication from outlook to the mail server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please assist.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2005 12:03:24 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435558#M532834</guid>
      <dc:creator>lasani</dc:creator>
      <dc:date>2005-09-28T12:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: Pix Firewall with Proxy Server</title>
      <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435559#M532836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you just want to open outgoing smtp and pop connections from any to any YES. From inside out outside (Internet)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to allow smtp and pop connection from Internet to your Email server you need to create an access-list on the outside interface and a static for NAT for address translation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list outside permit tcp any host PublicIP-MailServer eq 25&lt;/P&gt;&lt;P&gt;access-list outside permit tcp any host PublicIP-MailServer eq 110&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-group outside in interface outside &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adress translation with a static public IP:&lt;/P&gt;&lt;P&gt;static (inside,outside) PublicIP-MailServer PrivateIP-MailServer netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reset all connection - Address translation:&lt;/P&gt;&lt;P&gt;clear xlate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sincerely&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2005 13:16:57 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435559#M532836</guid>
      <dc:creator>Patrick Iseli</dc:creator>
      <dc:date>2005-09-28T13:16:57Z</dc:date>
    </item>
    <item>
      <title>Re: Pix Firewall with Proxy Server</title>
      <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435560#M532838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, object groups are just available on the 6.2.x release but not for 6.1.x.&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/products/hw/vpndevc/ps2030/products_tech_note09186a0080094885.shtml" target="_blank"&gt;http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/products_tech_note09186a0080094885.shtml&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sincerely&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2005 13:22:58 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435560#M532838</guid>
      <dc:creator>Patrick Iseli</dc:creator>
      <dc:date>2005-09-28T13:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: Pix Firewall with Proxy Server</title>
      <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435561#M532840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Patrick,&lt;/P&gt;&lt;P&gt;I just need to allow outgoing smtp/pop3 (inside to outside) and only allow www traffic from proxy server i.e. 10.2.1.10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I have following configurations:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp any any eq smtp&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp any any eq pop3&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp host 10.2.1.10 any eq www&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-group 100 in interface inside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does it make any difference if I write the access lists in this way (below)&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp host 10.2.1.10 any eq www&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp any any eq smtp&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp any any eq pop3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-group 100 in interface inside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I am noticing is that, most of the time Internet and smtp/pop traffic goes fine but sometime Internet does not work and emails do not go and come to us.&lt;/P&gt;&lt;P&gt;I am confused a bit.&lt;/P&gt;&lt;P&gt;First of all check the configuration and then tell me if any suggestion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lasani&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2005 14:23:26 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435561#M532840</guid>
      <dc:creator>lasani</dc:creator>
      <dc:date>2005-09-28T14:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: Pix Firewall with Proxy Server</title>
      <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435562#M532841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The access-list follows its order, line 1 then line 2 ..., it does not really matter. Both of your examples are OK. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the more important protocols access-list lines in the beginning.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on Rate this Post to help identify the most useful NetPro content. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sincerely&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2005 15:19:25 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435562#M532841</guid>
      <dc:creator>Patrick Iseli</dc:creator>
      <dc:date>2005-09-28T15:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: Pix Firewall with Proxy Server</title>
      <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435563#M532842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why sometime Internet stops and emails going out or coming in stop working?&lt;/P&gt;&lt;P&gt;Any idea?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2005 15:48:19 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435563#M532842</guid>
      <dc:creator>lasani</dc:creator>
      <dc:date>2005-09-28T15:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: Pix Firewall with Proxy Server</title>
      <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435564#M532843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Difficult to say like this !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Might be a config problem, performance issue, internet problems ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.) How many internal users have you and what is your user license. See in &amp;lt; show version&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.) Troubleshooting guide: &lt;A class="jive-link-custom" href="http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/products_tech_note09186a008009491c.shtml" target="_blank"&gt;http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/products_tech_note09186a008009491c.shtml&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.) Enable logging to syslog or buffer to see whats going on:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;logging on&lt;/P&gt;&lt;P&gt;logging buffered debugging&lt;/P&gt;&lt;P&gt;logging trap debugging&lt;/P&gt;&lt;P&gt;logging host SyslogIP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syslog software can be found in:&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-custom" href="http://www.ncat.co.uk/Download/3cdv2r10.exe" target="_blank"&gt;http://www.ncat.co.uk/Download/3cdv2r10.exe&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-custom" href="http://www.ncat.co.uk/Download/" target="_blank"&gt;http://www.ncat.co.uk/Download/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sincerely&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2005 16:58:38 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435564#M532843</guid>
      <dc:creator>Patrick Iseli</dc:creator>
      <dc:date>2005-09-28T16:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: Pix Firewall with Proxy Server</title>
      <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435565#M532844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just wondering what model of pix have you got? if you've got a pix501, then the issue maybe related to the user licence.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do "sh ver" on pix to verify the internal user licence. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2005 12:30:00 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435565#M532844</guid>
      <dc:creator>jackko</dc:creator>
      <dc:date>2005-09-29T12:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: Pix Firewall with Proxy Server</title>
      <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435566#M532845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;I have Pix 515E in my network and there is no restruction for user licenses.&lt;/P&gt;&lt;P&gt;I have opened Port 80 and 443 only for Proxy server and port 25 and 110 for all network.&lt;/P&gt;&lt;P&gt;Sometime everything works fine, Internet users can browse, emails come and go without any problem. BUT sometime nothing works, browsing stops, emails send/receive also stop. When I do show xlat in PIX it shows no translation. &lt;/P&gt;&lt;P&gt;As soon as I remove access-list from the interface (no interface-group command), traffic starts flowing, Internet browsing and email traffic becomes normal. And if I re-apply the access-list on the interface on pix, it works for sometime but stops again till I remove the access-list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am really confused with this behavior. &lt;/P&gt;&lt;P&gt;What could be the problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Sep 2005 13:10:22 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435566#M532845</guid>
      <dc:creator>lasani</dc:creator>
      <dc:date>2005-09-30T13:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: Pix Firewall with Proxy Server</title>
      <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435567#M532846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;I have this configuration on my PIX 515E:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp any any eq smtp&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp any any eq pop3&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp host 10.2.1.10 any eq www&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp host 10.2.1.10 any eq 8080&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp host 10.2.1.10 any eq https&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-group 100 in interface inside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is passing web traffic but emails are not going through until I removed access-group command.&lt;/P&gt;&lt;P&gt;When I remove access-group command, things work but if I apply, sometime emails doesn't work, sometime web traffic doesn't work.&lt;/P&gt;&lt;P&gt;Please check and let me know what could be done&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Oct 2005 07:15:16 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435567#M532846</guid>
      <dc:creator>lasani</dc:creator>
      <dc:date>2005-10-01T07:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: Pix Firewall with Proxy Server</title>
      <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435568#M532847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try adding: access-list 100 permit ip any any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 100 permit tcp any any eq smtp &lt;/P&gt;&lt;P&gt;access-list 100 permit tcp any any eq pop3 &lt;/P&gt;&lt;P&gt;access-list 100 permit tcp host 10.2.1.10 any eq www &lt;/P&gt;&lt;P&gt;access-list 100 permit tcp host 10.2.1.10 any eq 8080 &lt;/P&gt;&lt;P&gt;access-list 100 permit tcp host 10.2.1.10 any eq https &lt;/P&gt;&lt;P&gt;access-list 100 permit ip any any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-group 100 in interface inside &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save with: write mem and also issue: clear xlate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let us know how you get on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Oct 2005 07:43:23 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435568#M532847</guid>
      <dc:creator>jmia</dc:creator>
      <dc:date>2005-10-01T07:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: Pix Firewall with Proxy Server</title>
      <link>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435569#M532848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for outgoing email access, you are permitting smtp and pop3. how about imap? you need to permit this as well if you are using outlook to retrieve email.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with web traffic, i assume 10.2.1.10 is the proxy since it's the only host permited to browse the internet. maybe try to verify whether the pc is pointing the 10.2.1.10 as a proxy for internet.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Oct 2005 07:57:34 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-firewall-with-proxy-server/m-p/435569#M532848</guid>
      <dc:creator>jackko</dc:creator>
      <dc:date>2005-10-01T07:57:34Z</dc:date>
    </item>
  </channel>
</rss>

