<?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 PIX 525 Block HTTP Access to Certain Subnets in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/pix-525-block-http-access-to-certain-subnets/m-p/1222180#M876344</link>
    <description>&lt;P&gt;I am having trouble blocking HTTP/HTTPS access to just certain subnets within my network.  The following is what I have tried and it doesn't seem to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list acl_insideint permit tcp object-group Servers object-group WebProtocols any&lt;/P&gt;&lt;P&gt;access-list acl_insideint deny tcp any object-group WebProtocols any&lt;/P&gt;&lt;P&gt;access-list acl_insideint permit ip any any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Servers group contains the following:&lt;/P&gt;&lt;P&gt;object-group network Servers&lt;/P&gt;&lt;P&gt;  description All subnets that contain servers&lt;/P&gt;&lt;P&gt;  network-object 172.20.1.0 255.255.255.0&lt;/P&gt;&lt;P&gt;  network-object 172.24.0.0 255.255.0.0&lt;/P&gt;&lt;P&gt;  network-object 172.22.0.0 255.255.0.0&lt;/P&gt;&lt;P&gt;  network-object 172.23.7.0 255.255.255.0&lt;/P&gt;&lt;P&gt;  network-object 172.27.1.0 255.255.255.0&lt;/P&gt;&lt;P&gt;  network-object 172.26.0.0 255.255.0.0&lt;/P&gt;&lt;P&gt;  network-object 172.20.40.0 255.255.255.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Web Ports group contains just HTTP and HTTPS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I put these rules in and then try to browse with 172.20.45.60 and browsing still works....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 11 Mar 2019 14:51:01 GMT</pubDate>
    <dc:creator>tplier</dc:creator>
    <dc:date>2019-03-11T14:51:01Z</dc:date>
    <item>
      <title>PIX 525 Block HTTP Access to Certain Subnets</title>
      <link>https://community.cisco.com/t5/network-security/pix-525-block-http-access-to-certain-subnets/m-p/1222180#M876344</link>
      <description>&lt;P&gt;I am having trouble blocking HTTP/HTTPS access to just certain subnets within my network.  The following is what I have tried and it doesn't seem to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list acl_insideint permit tcp object-group Servers object-group WebProtocols any&lt;/P&gt;&lt;P&gt;access-list acl_insideint deny tcp any object-group WebProtocols any&lt;/P&gt;&lt;P&gt;access-list acl_insideint permit ip any any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Servers group contains the following:&lt;/P&gt;&lt;P&gt;object-group network Servers&lt;/P&gt;&lt;P&gt;  description All subnets that contain servers&lt;/P&gt;&lt;P&gt;  network-object 172.20.1.0 255.255.255.0&lt;/P&gt;&lt;P&gt;  network-object 172.24.0.0 255.255.0.0&lt;/P&gt;&lt;P&gt;  network-object 172.22.0.0 255.255.0.0&lt;/P&gt;&lt;P&gt;  network-object 172.23.7.0 255.255.255.0&lt;/P&gt;&lt;P&gt;  network-object 172.27.1.0 255.255.255.0&lt;/P&gt;&lt;P&gt;  network-object 172.26.0.0 255.255.0.0&lt;/P&gt;&lt;P&gt;  network-object 172.20.40.0 255.255.255.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Web Ports group contains just HTTP and HTTPS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I put these rules in and then try to browse with 172.20.45.60 and browsing still works....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 14:51:01 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-525-block-http-access-to-certain-subnets/m-p/1222180#M876344</guid>
      <dc:creator>tplier</dc:creator>
      <dc:date>2019-03-11T14:51:01Z</dc:date>
    </item>
    <item>
      <title>Re: PIX 525 Block HTTP Access to Certain Subnets</title>
      <link>https://community.cisco.com/t5/network-security/pix-525-block-http-access-to-certain-subnets/m-p/1222181#M876348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The 'WebProtocols' group is your service group?  If so, you have specified it in the destination address portion of the ACE instead of the destination services portion.  I believe the ACL's should read:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list acl_insideint permit tcp object-group Servers any object-group WebProtocols&lt;/P&gt;&lt;P&gt;access-list acl_insideint deny tcp any any object-group WebProtocols&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would also strongly recommend removal/revision of the permit ip any any statement at the bottom of the ACL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2009 14:10:34 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-525-block-http-access-to-certain-subnets/m-p/1222181#M876348</guid>
      <dc:creator>eddie.mitchell</dc:creator>
      <dc:date>2009-02-16T14:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: PIX 525 Block HTTP Access to Certain Subnets</title>
      <link>https://community.cisco.com/t5/network-security/pix-525-block-http-access-to-certain-subnets/m-p/1222182#M876350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That did it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Feb 2009 14:36:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-525-block-http-access-to-certain-subnets/m-p/1222182#M876350</guid>
      <dc:creator>tplier</dc:creator>
      <dc:date>2009-02-16T14:36:29Z</dc:date>
    </item>
  </channel>
</rss>

