ops:
ops:
Call me anal but I wanted to make sure our staff were protected on staff laptops at home as well as in work.
So I
1. Disabled the proxy setting for staff,
2. Created a AD deploayable CMAK connection which installs tyo the machine at startup via a startup script.
That staff just needed to double click on and VPN icon on the desktop to VPN into the school.
3. the school proxy then became available and web access was then logged.
;-)
Just a different route you can go down.....
I will probably get slapped for digging up old topics - but do you have the code for that pac file?Originally Posted by mortstar
![]()

Code:function FindProxyForURL(url, host) { var proxy_yes = "PROXY 192.168.0.1:8080"; var proxy_no = "DIRECT"; if (shExpMatch(url, "http://internal/*")) { return proxy_no; } if (shExpMatch(url, "http://intranet/*")) { return proxy_no; } if (shExpMatch(url, "https://intranet/*")) { return proxy_no; } return proxy_yes; }

missed the IP bit:
Code:if (isInNet(host, "10.0.0.0", "255.255.248.0")) { return "PROXY fastproxy.foo.com:8080"; }
from:
http://en.wikipedia.org/wiki/Proxy_auto-config
thanks!![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)