<?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: ASA URL filtering without Websense in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/asa-url-filtering-without-websense/m-p/877979#M969229</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;uri never contains host's name.&lt;/P&gt;&lt;P&gt;Use some sniffer for better understanding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you find posts helpful rate it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Sep 2007 03:39:21 GMT</pubDate>
    <dc:creator>a.alekseev</dc:creator>
    <dc:date>2007-09-19T03:39:21Z</dc:date>
    <item>
      <title>ASA URL filtering without Websense</title>
      <link>https://community.cisco.com/t5/network-security/asa-url-filtering-without-websense/m-p/877976#M969226</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am attempting to implement a basic URL filtering setup - without&lt;/P&gt;&lt;P&gt;WebSense as the requirements are pretty static.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically I want to allow certain inside host access to only a select&lt;/P&gt;&lt;P&gt;list of URL's.  This docs show how in a round about fashion:&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-custom" href="http://www.cisco.com/en/US/customer/docs/security/asa/asa72/configuration/guide/inspect.html#wp1479354" target="_blank"&gt;http://www.cisco.com/en/US/customer/docs/security/asa/asa72/configuration/guide/inspect.html#wp1479354&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I apply the below config the hosts with restricted Internet&lt;/P&gt;&lt;P&gt;access can't get to the two URL's allowed.  I suspect the problem is&lt;/P&gt;&lt;P&gt;that my regular expressions don't seem to match as the ASA is seeing&lt;/P&gt;&lt;P&gt;(well is logging anyway) &lt;A class="jive-link-custom" href="http://203.36.59.1/blah" target="_blank"&gt;http://203.36.59.1/blah&lt;/A&gt;....   rather than&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-custom" href="http://www.yellowpages.com.au/blah" target="_blank"&gt;http://www.yellowpages.com.au/blah&lt;/A&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example from the log:&lt;/P&gt;&lt;P&gt;Sep 14 2007 10:54:01: %ASA-5-304001: 192.168.101.88 Accessed URL&lt;/P&gt;&lt;P&gt;38.96.182.20:/mb/text_group.php?sid=218169&amp;amp;zs=3732385f3930&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would have thought that the unresolved hostname would be logged&lt;/P&gt;&lt;P&gt;rather than the IP.  Not sure if this is my problem but is the theory&lt;/P&gt;&lt;P&gt;at present.  Anyone done this before?  Turned on DNS on the ASA, still&lt;/P&gt;&lt;P&gt;no good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe the Plus license is needed for this feature?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parts of the config:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regex YELLOWPAGES "*yellowpages.com.au"&lt;/P&gt;&lt;P&gt;regex WHITEPAGES "*whitepages.com.au"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list INTERNET-RESTRICTED remark Hosts that have restricted&lt;/P&gt;&lt;P&gt;Internet access&lt;/P&gt;&lt;P&gt;access-list INTERNET-RESTRICTED extended permit ip host&lt;/P&gt;&lt;P&gt;192.168.101.110 any&lt;/P&gt;&lt;P&gt;access-list INTERNET-RESTRICTED remark Head Office LAN has open&lt;/P&gt;&lt;P&gt;Internet access&lt;/P&gt;&lt;P&gt;access-list INTERNET-RESTRICTED extended deny ip 192.168.101.0&lt;/P&gt;&lt;P&gt;255.255.255.0 any&lt;/P&gt;&lt;P&gt;access-list INTERNET-RESTRICTED remark Shops have restricted Internet&lt;/P&gt;&lt;P&gt;access&lt;/P&gt;&lt;P&gt;access-list INTERNET-RESTRICTED extended permit ip 192.168.0.0&lt;/P&gt;&lt;P&gt;255.255.0.0 any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;class-map type regex match-any RESTRICTED-URL&lt;/P&gt;&lt;P&gt; match regex YELLOWPAGES&lt;/P&gt;&lt;P&gt; match regex WHITEPAGES&lt;/P&gt;&lt;P&gt;class-map type inspect http match-all INTERNET-RESTRICTED-SITES&lt;/P&gt;&lt;P&gt; match not request uri regex class RESTRICTED-URL&lt;/P&gt;&lt;P&gt;class-map inspection_default&lt;/P&gt;&lt;P&gt; match default-inspection-traffic&lt;/P&gt;&lt;P&gt;class-map INTERNET-RESTRICTED&lt;/P&gt;&lt;P&gt; match access-list INTERNET-RESTRICTED&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;policy-map type inspect http POLICY-INTERNET-RESTRICTED&lt;/P&gt;&lt;P&gt; parameters&lt;/P&gt;&lt;P&gt; class INTERNET-RESTRICTED-SITES&lt;/P&gt;&lt;P&gt; drop-connection log&lt;/P&gt;&lt;P&gt;policy-map type inspect dns migrated_dns_map_1&lt;/P&gt;&lt;P&gt; parameters&lt;/P&gt;&lt;P&gt; message-length maximum 2048&lt;/P&gt;&lt;P&gt;policy-map global_policy&lt;/P&gt;&lt;P&gt; class inspection_default&lt;/P&gt;&lt;P&gt; inspect dns migrated_dns_map_1&lt;/P&gt;&lt;P&gt; inspect ftp&lt;/P&gt;&lt;P&gt; inspect h323 h225&lt;/P&gt;&lt;P&gt; inspect h323 ras&lt;/P&gt;&lt;P&gt; inspect netbios&lt;/P&gt;&lt;P&gt; inspect pptp&lt;/P&gt;&lt;P&gt; inspect rsh&lt;/P&gt;&lt;P&gt; inspect rtsp&lt;/P&gt;&lt;P&gt; inspect skinny&lt;/P&gt;&lt;P&gt; inspect sqlnet&lt;/P&gt;&lt;P&gt; inspect sunrpc&lt;/P&gt;&lt;P&gt; inspect tftp&lt;/P&gt;&lt;P&gt; inspect sip&lt;/P&gt;&lt;P&gt; inspect xdmcp&lt;/P&gt;&lt;P&gt; inspect http&lt;/P&gt;&lt;P&gt; inspect snmp&lt;/P&gt;&lt;P&gt; inspect esmtp&lt;/P&gt;&lt;P&gt;policy-map INTERNET-OUTBOUND&lt;/P&gt;&lt;P&gt; class INTERNET-RESTRICTED&lt;/P&gt;&lt;P&gt; inspect http POLICY-INTERNET-RESTRICTED&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;service-policy global_policy global&lt;/P&gt;&lt;P&gt;service-policy INTERNET-OUTBOUND interface inside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 11:12:34 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-url-filtering-without-websense/m-p/877976#M969226</guid>
      <dc:creator>otn-cco</dc:creator>
      <dc:date>2019-03-11T11:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: ASA URL filtering without Websense</title>
      <link>https://community.cisco.com/t5/network-security/asa-url-filtering-without-websense/m-p/877977#M969227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You must use another class for doing this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;match not request header host regex RESTRICTED-URL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 12:00:01 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-url-filtering-without-websense/m-p/877977#M969227</guid>
      <dc:creator>a.alekseev</dc:creator>
      <dc:date>2007-09-18T12:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: ASA URL filtering without Websense</title>
      <link>https://community.cisco.com/t5/network-security/asa-url-filtering-without-websense/m-p/877978#M969228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.  This seems to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not at all mentioned in any of the doco on cisco.com.  The command lookup tool doesn't even have anything on the "host" option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 01:29:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-url-filtering-without-websense/m-p/877978#M969228</guid>
      <dc:creator>kent.plummer</dc:creator>
      <dc:date>2007-09-19T01:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: ASA URL filtering without Websense</title>
      <link>https://community.cisco.com/t5/network-security/asa-url-filtering-without-websense/m-p/877979#M969229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;uri never contains host's name.&lt;/P&gt;&lt;P&gt;Use some sniffer for better understanding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you find posts helpful rate it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 03:39:21 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-url-filtering-without-websense/m-p/877979#M969229</guid>
      <dc:creator>a.alekseev</dc:creator>
      <dc:date>2007-09-19T03:39:21Z</dc:date>
    </item>
  </channel>
</rss>

