<?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: Access only few Internet websites URL in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107467#M915355</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vinay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Denepnding on the version of PIX/ASA software:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-custom" href="http://www.cisco.com/en/US/customer/products/ps6120/products_configuration_example09186a0080940c5a.shtml" target="_blank"&gt;http://www.cisco.com/en/US/customer/products/ps6120/products_configuration_example09186a0080940c5a.shtml&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;8.x&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-custom" href="http://www.cisco.com/en/US/customer/products/ps6120/products_configuration_example09186a0080940e04.shtml" target="_blank"&gt;http://www.cisco.com/en/US/customer/products/ps6120/products_configuration_example09186a0080940e04.shtml&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 03 Aug 2008 15:21:48 GMT</pubDate>
    <dc:creator>andrew.prince</dc:creator>
    <dc:date>2008-08-03T15:21:48Z</dc:date>
    <item>
      <title>Access only few Internet websites URL</title>
      <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107465#M915351</link>
      <description>&lt;P&gt;Hi, I want to block the usage of internet for Inside users except few websites. Please advice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The QA testing team test some application by connecting remote servers which is connected by STS Tunnel. And I have opened IP protocol between both Sites and they test the application which is using a port 80. Here, I would say that the network must not be blocked if we make any rule for Inside Users. &lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 13:24:58 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107465#M915351</guid>
      <dc:creator>nikuhappy2010</dc:creator>
      <dc:date>2019-03-11T13:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: Access only few Internet websites URL</title>
      <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107466#M915353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vinay &lt;/P&gt;&lt;P&gt;u can block and make filtering on the application layer through MPF as with Rate limiting&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but this gonna be a bit more comlicated as u have to make some regular expretion and more class-maps&lt;/P&gt;&lt;P&gt;i will guid u through it bellow:&lt;/P&gt;&lt;P&gt;first u wanna allow only the spesified websites and any other websites will be blocked!&lt;/P&gt;&lt;P&gt;lets say u gonna allow youtube.com and yahoo.com and any other websites should be blcked&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first creat regular expretion to match those URLS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regex URLLIST1 "\.yahoo\.com"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regex URLLIST2 "\.youtube\.com"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then creat ACL matching web traffic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 101 permit ip any any eq www&lt;/P&gt;&lt;P&gt;access-list 101 permit ip any any eq https&lt;/P&gt;&lt;P&gt;access-list 101 permit ip any any eq 8080&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map web-traffic&lt;/P&gt;&lt;P&gt;match access-list 101&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;creat class-map for the regex created above(URLLIST)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map type regex match-any allowed-sites&lt;/P&gt;&lt;P&gt;match regex URLLIST1&lt;/P&gt;&lt;P&gt;match regex URLLIST2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now creat inspection class map for web traffic matched with class above&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map type inspect http match-all blocking-urls&lt;/P&gt;&lt;P&gt;match not request header host regex class allowed-sites&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;notce there is not in the comman here this mean match any thing except the urls we have match above&lt;/P&gt;&lt;P&gt;so we are exculding the match URLs and bellow we gonna mak a policy and the action we gona tak is drop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;creat http inspection policy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map type inspect http block_URLS&lt;/P&gt;&lt;P&gt;class blocking-urls&lt;/P&gt;&lt;P&gt;reset log&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now if u look above we creat ACL 101 that match web traffic and match with class-map called webtraffic&lt;/P&gt;&lt;P&gt;now we gonna apply the above http inspection policy to that traffic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map inside-policy&lt;/P&gt;&lt;P&gt;class webtraffic&lt;/P&gt;&lt;P&gt;inspect http block_URLS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now apply it to ur inside interface&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;good luck&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please, rate if helpful&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;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Aug 2008 14:14:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107466#M915353</guid>
      <dc:creator>Marwan ALshawi</dc:creator>
      <dc:date>2008-08-03T14:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: Access only few Internet websites URL</title>
      <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107467#M915355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vinay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Denepnding on the version of PIX/ASA software:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.2&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-custom" href="http://www.cisco.com/en/US/customer/products/ps6120/products_configuration_example09186a0080940c5a.shtml" target="_blank"&gt;http://www.cisco.com/en/US/customer/products/ps6120/products_configuration_example09186a0080940c5a.shtml&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;8.x&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-custom" href="http://www.cisco.com/en/US/customer/products/ps6120/products_configuration_example09186a0080940e04.shtml" target="_blank"&gt;http://www.cisco.com/en/US/customer/products/ps6120/products_configuration_example09186a0080940e04.shtml&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Aug 2008 15:21:48 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107467#M915355</guid>
      <dc:creator>andrew.prince</dc:creator>
      <dc:date>2008-08-03T15:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: Access only few Internet websites URL</title>
      <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107468#M915357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i think the config that i have sent do exactly the same thing in those files&lt;/P&gt;&lt;P&gt;anyway good luck &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 01:21:06 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107468#M915357</guid>
      <dc:creator>Marwan ALshawi</dc:creator>
      <dc:date>2008-08-04T01:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: Access only few Internet websites URL</title>
      <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107469#M915359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks everyone....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 03:21:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107469#M915359</guid>
      <dc:creator>nikuhappy2010</dc:creator>
      <dc:date>2008-08-04T03:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: Access only few Internet websites URL</title>
      <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107470#M915361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I have installed a proxy server and blocked all inside traffic (Inbound) and exempt tunnel traffic as well in inside access list and its working fine. Now I want that all inside users mail, IM,(For all users) Yahoo Messanger (Selected Machines) traffic to be allow from inside to outside. Mail Smtp port is 995 and Pop3 port is 465 and both are using SSL. Please suggest what do i need to do for the same. Please post an example, if possible. Thanks  &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 03:46:39 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107470#M915361</guid>
      <dc:creator>nikuhappy2010</dc:creator>
      <dc:date>2008-08-04T03:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Access only few Internet websites URL</title>
      <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107471#M915363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this will be useful &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/ps6120/products_configuration_example09186a00808c38a6.shtml" target="_blank"&gt;http://www.cisco.com/en/US/products/ps6120/products_configuration_example09186a00808c38a6.shtml&lt;/A&gt;&lt;/P&gt;&lt;P&gt; this one to get more ideas&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_configuration_example09186a008067cf3b.shtml" target="_blank"&gt;http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/products_configuration_example09186a008067cf3b.shtml&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;good luck &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please Rate if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 04:48:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107471#M915363</guid>
      <dc:creator>Marwan ALshawi</dc:creator>
      <dc:date>2008-08-04T04:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: Access only few Internet websites URL</title>
      <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107472#M915364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Thanks for the above links....But my query was for allowing the ports which is 465 and 995 and works on SSL (pop.gmail.com, smtp.gmail.com. I wud want that inside users e-mail traffic to be allow by inside interface (inbound) to outside. Please suggest..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using the proxy server and all internet traffic are going through proxy but I want that IM, Yahoo Messanger (Selected Machines) and E-mail (All Inside Machines) traffic forward to outide internet by Inside Interface instead of using proxy. Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 09:05:26 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107472#M915364</guid>
      <dc:creator>nikuhappy2010</dc:creator>
      <dc:date>2008-08-04T09:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: Access only few Internet websites URL</title>
      <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107473#M915365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then why are you using a proxy server, if you want to by pass it for email, IM etc - remove the proxy?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 09:12:58 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107473#M915365</guid>
      <dc:creator>andrew.prince</dc:creator>
      <dc:date>2008-08-04T09:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: Access only few Internet websites URL</title>
      <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107474#M915366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, the e-mail settings cud configure on Proxy server but if i do then users e-mail works very slow and IM, skype and yahoo we use basicaly we use for voice based calls and through proxy it doesnt work properly.  &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 09:36:38 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107474#M915366</guid>
      <dc:creator>nikuhappy2010</dc:creator>
      <dc:date>2008-08-04T09:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: Access only few Internet websites URL</title>
      <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107475#M915368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then all user machines should have a default gateway of the primary layer 3 device or ASA inside interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All I.E/Firefox brower settings should be proxied thru the proxy server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IM should be not be configured for proxy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not fool proof, anyone with any network knowledge will be able to bypass this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 09:41:59 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107475#M915368</guid>
      <dc:creator>andrew.prince</dc:creator>
      <dc:date>2008-08-04T09:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: Access only few Internet websites URL</title>
      <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107476#M915369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then all user machines should have a default gateway of the primary layer 3 device or ASA inside interface. (Thats right)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All I.E/Firefox brower settings should be proxied thru the proxy server. (Yes) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IM should be not be configured for proxy. (Yes nd traffic will be bypass through default gateway through inside interface of ASA)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not fool proof, anyone with any network knowledge will be able to bypass this.&lt;/P&gt;&lt;P&gt;(Well I know its possible but I am bit confused how i have to do setting for SSL encryted trafic for e-mail ports of 465 and 995).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 11:49:45 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107476#M915369</guid>
      <dc:creator>nikuhappy2010</dc:creator>
      <dc:date>2008-08-04T11:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: Access only few Internet websites URL</title>
      <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107477#M915371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone respond?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 12:27:24 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107477#M915371</guid>
      <dc:creator>nikuhappy2010</dc:creator>
      <dc:date>2008-08-04T12:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: Access only few Internet websites URL</title>
      <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107478#M915373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This has now become a completely differnet question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What are you trying to do now?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 12:28:17 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107478#M915373</guid>
      <dc:creator>andrew.prince</dc:creator>
      <dc:date>2008-08-04T12:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: Access only few Internet websites URL</title>
      <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107479#M915374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well just tell me that how i can allow the internal machines traffic to outside for IM, Yahoo Messanger and E-mail (Using Ports 995 and 465 used for G-mail) except all deny traffic. I dont know which of the ports get used for this. Please suggest.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 12:35:41 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107479#M915374</guid>
      <dc:creator>nikuhappy2010</dc:creator>
      <dc:date>2008-08-04T12:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: Access only few Internet websites URL</title>
      <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107480#M915376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i think u need a policy map&lt;/P&gt;&lt;P&gt;any way can u tell me what is ur topology&lt;/P&gt;&lt;P&gt;if u can post simpl graph will be better&lt;/P&gt;&lt;P&gt;i wanna know how u route ur traffic to the proxy &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 12:40:27 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107480#M915376</guid>
      <dc:creator>Marwan ALshawi</dc:creator>
      <dc:date>2008-08-04T12:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: Access only few Internet websites URL</title>
      <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107481#M915378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ASA Conf:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inside :- 192.168.12.1&lt;/P&gt;&lt;P&gt;Outside :- *.*.43.210&lt;/P&gt;&lt;P&gt;Default Gateway set on all Client machines :- 192.168.12.1&lt;/P&gt;&lt;P&gt;Proxy Server :- 192.168.12.20&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 12:51:22 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107481#M915378</guid>
      <dc:creator>nikuhappy2010</dc:creator>
      <dc:date>2008-08-04T12:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: Access only few Internet websites URL</title>
      <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107482#M915380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 14:08:35 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107482#M915380</guid>
      <dc:creator>nikuhappy2010</dc:creator>
      <dc:date>2008-08-04T14:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: Access only few Internet websites URL</title>
      <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107483#M915381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;then&lt;/P&gt;&lt;P&gt;how u route clients traffic to the porxy?&lt;/P&gt;&lt;P&gt;it looks like the traffic going only to the asa&lt;/P&gt;&lt;P&gt;?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 14:39:12 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107483#M915381</guid>
      <dc:creator>Marwan ALshawi</dc:creator>
      <dc:date>2008-08-04T14:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: Access only few Internet websites URL</title>
      <link>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107484#M915382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have denied all inside (inbound) traffic except Proxy machine traffic. Users send their request directly to proxy for using Internet but I want all e-mail, IM, Yahoo Messanger traffic to be allow by inside interface thats why i set up this IP 192.168.12.1 for gateway in client machines. Not able to understand how to do this??&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 14:51:43 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-only-few-internet-websites-url/m-p/1107484#M915382</guid>
      <dc:creator>nikuhappy2010</dc:creator>
      <dc:date>2008-08-04T14:51:43Z</dc:date>
    </item>
  </channel>
</rss>

