<?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: URL Filtering in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616824#M580523</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;Few days ago I've found this nice document:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-wiki-small" href="https://community.cisco.com/docs/DOC-1268"&gt;https://supportforums.cisco.com/docs/DOC-1268&lt;/A&gt;&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;Pavel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Mar 2011 07:05:04 GMT</pubDate>
    <dc:creator>Pavel Pokorny</dc:creator>
    <dc:date>2011-03-07T07:05:04Z</dc:date>
    <item>
      <title>URL Filtering</title>
      <link>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616822#M580521</link>
      <description>&lt;P&gt;Dear Support-Team,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had ASA-CSC-10-PLUS device and i want to implement URL filtering.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will give me example CLI configuration guide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to filter URLs with regular expressions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will you give me example documentation for all these????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How many URLs will blocl ASA noramally?????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And Finally, Will you give me example for blocking " facebook" website..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;&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;MJR&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 20:01:51 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616822#M580521</guid>
      <dc:creator>Janardhan Meesala</dc:creator>
      <dc:date>2019-03-11T20:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: URL Filtering</title>
      <link>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616823#M580522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your ASA seems to have a CSC module, so no CLI configuration is&amp;nbsp; needed on the ASA firewall in order to block url sites (Only if you plan&amp;nbsp; to use regex, but if you are using the module there is no need for&amp;nbsp; that).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the configuration guide for the CSC module, how to redirect the traffic to the Content filtering&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.cisco.com/en/US/products/ps6120/products_configuration_example09186a00808dea62.shtml"&gt;http://www.cisco.com/en/US/products/ps6120/products_configuration_example09186a00808dea62.shtml&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will find examples of how to block URLs and how to filter&amp;nbsp; URLs, plus how to restrict files in FTP and so on with the capabilities&amp;nbsp; of the module per se.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since you are using this CSC module, there is no need to block urls using regular expresions, however, here is a quick example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Layer 7 class map configuration&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regex domainlist1 "\.yahoo\.com"&lt;/P&gt;&lt;P&gt;regex domainlist2 "\.myspace\.com"&lt;/P&gt;&lt;P&gt;regex domainlist3 "\.youtube\.com"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map type regex match-any DomainBlockList&lt;/P&gt;&lt;P&gt; match regex domainlist1&lt;/P&gt;&lt;P&gt; match regex domainlist2&lt;/P&gt;&lt;P&gt; match regex domainlist3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map type inspect http match-all BlockDomainsClass&lt;/P&gt;&lt;P&gt; match request header host regex class DomainBlockList&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map httptraffic&lt;/P&gt;&lt;P&gt; match access-list inside_mpc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map type inspect http http_inspection_policy&lt;/P&gt;&lt;P&gt;&amp;nbsp; class BlockDomainsClass&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; reset log&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;L3/4 class maps and Policy maps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list inside_mpc extended permit tcp any any eq www&lt;/P&gt;&lt;P&gt;access-list inside_mpc extended permit tcp any any eq 8080&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map httptraffic&lt;/P&gt;&lt;P&gt; match access-list inside_mpc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map inside-policy&lt;/P&gt;&lt;P&gt; class httptraffic&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect http http_inspection_policy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;service-policy inside-policy interface inside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you see, we are looking for the host field on the header where&amp;nbsp; normally the name of the url is located.In that example, yahoo, myspace&amp;nbsp; and youtube are going to be dropped. For reference you can go to the&amp;nbsp; following link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.cisco.com/en/US/products/ps6120/products_configuration_example09186a0080940c5a.shtml"&gt;http://www.cisco.com/en/US/products/ps6120/products_configuration_example09186a0080940c5a.shtml&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Locally, the ASA is limited to a 100 urls, please refer to the TAC security podcast episode 13, filtering http&lt;/P&gt;&lt;P&gt;services&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.cisco.com/en/US/solutions/ns170/tac/security_tac_podcasts.html"&gt;http://www.cisco.com/en/US/solutions/ns170/tac/security_tac_podcasts.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The example for youtube and yahoo will help you to create the one for facebook. Keep in mind that if the packet&lt;/P&gt;&lt;P&gt;comes encrypted (HTTPS) the way to go would be filtering the DNS request.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2011 06:59:58 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616823#M580522</guid>
      <dc:creator>Maykol Rojas</dc:creator>
      <dc:date>2011-03-07T06:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: URL Filtering</title>
      <link>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616824#M580523</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;Few days ago I've found this nice document:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-wiki-small" href="https://community.cisco.com/docs/DOC-1268"&gt;https://supportforums.cisco.com/docs/DOC-1268&lt;/A&gt;&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;Pavel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2011 07:05:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616824#M580523</guid>
      <dc:creator>Pavel Pokorny</dc:creator>
      <dc:date>2011-03-07T07:05:04Z</dc:date>
    </item>
    <item>
      <title>Re: URL Filtering</title>
      <link>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616825#M580524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mike,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for quick response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here I had one query that is why no need regex if using CSC module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to do URL filtering wthout CSC module i.e standalone ASA&lt;/P&gt;&lt;P&gt;5510.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I studied for doing URL filtering CSC module is needed with PLUS license.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;MJR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Mon, Mar 7, 2011 at 12:30 PM, mayrojas &amp;lt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2011 08:24:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616825#M580524</guid>
      <dc:creator>Janardhan Meesala</dc:creator>
      <dc:date>2011-03-07T08:24:04Z</dc:date>
    </item>
    <item>
      <title>Re: URL Filtering</title>
      <link>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616826#M580525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mike,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for quick response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here I had one query that is why no need regex if using CSC module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to do URL filtering wthout CSC module i.e standalone ASA&lt;/P&gt;&lt;P&gt;5510.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I studied for doing URL filtering CSC module is needed with PLUS license.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;MJR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2011 14:12:46 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616826#M580525</guid>
      <dc:creator>Janardhan Meesala</dc:creator>
      <dc:date>2011-03-07T14:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: URL Filtering</title>
      <link>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616827#M580526</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;Here I had one query that is why no need regex if using CSC module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to do URL filtering wthout CSC module i.e standalone ASA&lt;/P&gt;&lt;P&gt;5510.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I studied for doing URL filtering CSC module is needed with PLUS license.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;MJR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2011 04:17:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616827#M580526</guid>
      <dc:creator>Janardhan Meesala</dc:creator>
      <dc:date>2011-03-08T04:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: URL Filtering</title>
      <link>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616828#M580527</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;Yes of course there is a chance to do it without the CSC, I put an example to block youtube, myspace and yahoo. Let me The regex configuration that I did is on the ASA and not on the CSC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you have questions!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2011 04:35:31 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616828#M580527</guid>
      <dc:creator>Maykol Rojas</dc:creator>
      <dc:date>2011-03-08T04:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: URL Filtering</title>
      <link>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616829#M580528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mike,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your respone and i got clarrified now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally  one more query i.e i am implementing secured LAN with ASA&lt;/P&gt;&lt;P&gt;5510-CSC-10-PLUS and i implemented all Content Filtering, URL blocking ,&lt;/P&gt;&lt;P&gt;File blocking and FTP filtering for all users.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here i need to to give full permissions to the specific users(&lt;/P&gt;&lt;P&gt;Administrators).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to do this????&lt;/P&gt;&lt;P&gt;&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;MJR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Tue, Mar 8, 2011 at 10:05 AM, mayrojas &amp;lt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2011 05:11:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616829#M580528</guid>
      <dc:creator>Janardhan Meesala</dc:creator>
      <dc:date>2011-03-08T05:11:05Z</dc:date>
    </item>
    <item>
      <title>Re: URL Filtering</title>
      <link>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616830#M580529</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;&lt;/P&gt;&lt;SPAN&gt;Excellent question, on the Link&lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.cisco.com/en/US/products/ps6120/products_configuration_example09186a00808dea62.shtml"&gt;http://www.cisco.com/en/US/products/ps6120/products_configuration_example09186a00808dea62.shtml&lt;/A&gt;&lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a part where it exaplains how to send traffic to the CSC module,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list csc-acl permit tcp any any eq www&lt;/P&gt;&lt;P&gt;access-list csc-acl permit tcp any any eq smtp&lt;/P&gt;&lt;P&gt;access-list csc-acl permit tcp any any eq pop3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map csc-class&lt;/P&gt;&lt;P&gt;match access-list csc-acl&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map global_policy&lt;/P&gt;&lt;P&gt;class csc-class&lt;/P&gt;&lt;P&gt;csc fail-open&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to exclude people from being scanned you can just put a deny on the csc-acl, for example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list csc-acl line 1 deny tcp host x.x.x.x any eq www&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That way the traffic from host x.x.x.x wont be inspected on port 80 by the CSC module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope you catch it, if you have any questions let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2011 05:33:14 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616830#M580529</guid>
      <dc:creator>Maykol Rojas</dc:creator>
      <dc:date>2011-03-08T05:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: URL Filtering</title>
      <link>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616831#M580530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mike,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your response...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here  i want send my administrator traffic to the CSC where i want to do&lt;/P&gt;&lt;P&gt;configure everything(Content filtering, anto-spam) except  URL blocking.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think uderstood my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And Finally, after entering licenses to my firewall how to take back-up of&lt;/P&gt;&lt;P&gt;licenses info for future reference.. Is it enoug to take sh run backup????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;MJR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Tue, Mar 8, 2011 at 11:03 AM, mayrojas &amp;lt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2011 07:03:37 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616831#M580530</guid>
      <dc:creator>Janardhan Meesala</dc:creator>
      <dc:date>2011-03-08T07:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: URL Filtering</title>
      <link>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616832#M580531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your response...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here  i want send my administrator traffic to the CSC where i want to do&lt;/P&gt;&lt;P&gt;configure everything(Content filtering, anto-spam) except  URL blocking.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think uderstood my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And Finally, after entering licenses to my firewall how to take back-up of&lt;/P&gt;&lt;P&gt;licenses info for future reference.. Is it enoug to take sh run backup????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;MJR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Mar 2011 05:23:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/url-filtering/m-p/1616832#M580531</guid>
      <dc:creator>Janardhan Meesala</dc:creator>
      <dc:date>2011-03-09T05:23:28Z</dc:date>
    </item>
  </channel>
</rss>

