This is the pac file I have, but it isn't working.
Anyone see an error?
function FindProxyForURL(url, host)
{
// variable strings to return
//var proxy_yes = "PROXY 156.127.55.122:8080";
var proxy_no = "DIRECT";
// Minneapolis
if (isInNet(myIpAddress(), "156.126.221.0", "255.255.255.0"))
return "PROXY 156.127.121.222:8080";
//Minneapolis2
if (isInNet(myIpAddress(), "156.xxx.xx.x", "255.255.254.0"))
return "PROXY 156.127.xx.xxx:xxx";
else
return "DIRECT";
}