Blocking ALL Websites Accept 2
#1
Posted 10 January 2007 - 07:15 AM
I need to block all sites as transparently, quickly and non invasive as possible. I'd prefer not to have to install any software on the machine but will look at options. Originally I was going utilize the host file until the director came back and said that he wanted ALL sites blocked.
Any advice or solutions are welcome!
#2
Posted 10 January 2007 - 07:59 AM
one way i can think of is to not specify a DNS server on client pcs and give them 2 shortcuts;
1 for the intranet
1 for the news site (by ip address)
the practicality of this would all depend though on how many clients you are doing this for
thanks
#3
Posted 10 January 2007 - 08:36 AM
They will still need their DNS info for remote printing and other application uses.
#4
Posted 10 January 2007 - 08:52 AM
#6
Posted 10 January 2007 - 09:35 AM
#7
Posted 10 January 2007 - 09:36 AM
#8
Posted 10 January 2007 - 03:25 PM
#9
Posted 10 January 2007 - 04:44 PM
http://support.microsoft.com/kb/310401
#10
Posted 10 January 2007 - 07:04 PM
#11
Posted 11 January 2007 - 05:11 PM
#12
Posted 12 January 2007 - 04:29 AM
#13
Posted 12 January 2007 - 05:24 AM
#14
Posted 13 January 2007 - 11:42 AM
http://www.microsoft.com/technet/prodtechn...k.mspx?mfr=true
http://www.microsoft.com/technet/prodtechn...s.mspx?mfr=true
http://www.microsoft...faq/faq0599.asp
http://wp.netscape.com/eng/mozilla/2.0/rel...proxy-live.html
http://java.sun.com/j2se/1.4.2/docs/guide/...xie_config.html
A sample proxy .pac file that allows traffic to local LAN sites (for example, http://localsite), allows https traffic to all pages at mail.yourcompany.com, but blocks all other traffic (including all other http and https traffic) is listed below:
//beginning of file
function FindProxyForURL(url, host)
{
if (isPlainHostName(host))
return "DIRECT";
else
if (shExpMatch(host, "https://mail.yourcompany.com", "*/*"))
return "DIRECT";
else
if (url.substring(0, 5) == "http:")
return "PROXY 127.0.0.1:4321";
else
if (url.substring(0, 4) == "ftp:")
return "PROXY 127.0.0.1:4321";
else
if (url.substring(0, 7) == "gopher:")
return "PROXY 127.0.0.1:4321";
else
if (url.substring(0, 6) == "https:")
return "PROXY 127.0.0.1.4321";
else
return "PROXY 127.0.0.1:4321";
}
//end of file
The proxy file above simply displays a “page could not be displayed” error page when a page that is disallowed by the proxy is attempted (in the above case, this would be anything that is not local LAN traffic or https traffic to mail.yourcompany.com).
If you wish to redirect the user, or display a custom error page, you must have a proxy web server running at the address after the “PROXY” line, and at the port specified (can be any port, I used 4321 as an example).
#15
Posted 13 January 2007 - 12:45 PM
#16
Posted 14 January 2007 - 12:52 PM
- ← Can't get belking router and blkn dsktp card to work together
- Networks and the Internet
- Static Ip questions →



Help

Back to top










