This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Accessing Astaro using Auto Pac / WPAD

I have just implemented WPAD into our network, browsers are now being assigned the proxy details and can access web pages however im unable to access the astaro admin. When manually configuring the browsers i could add the ip address as an exception and it worked great however it no longer does. Obviously the PAC file is configured incorrectly so i was hoping someone could give me some insight into this. Pac file below:

function FindProxyForURL(url, host) {


// If URL has no dots in host name, send traffic direct.
if (isPlainHostName(host))
return "DIRECT";

// If IP address is internal or hostname resolves to internal IP, send direct.

var resolved_ip = dnsResolve(host);

if (isInNet(resolved_ip, "10.0.0.0", "255.0.0.0") ||
isInNet(resolved_ip, "172.16.0.0",  "255.240.0.0") ||
isInNet(resolved_ip, "192.168.0.0", "255.255.0.0") ||
isInNet(resolved_ip, "127.0.0.0", "255.255.255.0"))
return "DIRECT";

// All other traffic uses below proxies, in fail-over order.
return "PROXY 192.168.y.z:8080; DIRECT";

}


Thanks
Chris


This thread was automatically locked due to age.
Parents
  • The first thing that stands out for me as being potentially problematic are the "||" marks.  

    Not related to your issue, but you're being too broad in the scope of networks that are allowed to bypass the proxy, unless your internal IP addressing scheme covers the 10.0.0.0, 192.168.0.0, and 172.16.0.0 network ranges.

    In WebAdmin, go to the web proxy area.  On the Advanced Tab, scroll down to the Proxy Auto Configuration section to see a good short PAC file.
    __________________
    ACE v8/SCA v9.3

    ...still have a v5 install disk in a box somewhere.

    http://xkcd.com
    http://www.tedgoff.com/mb
    http://www.projectcartoon.com/cartoon/1
Reply
  • The first thing that stands out for me as being potentially problematic are the "||" marks.  

    Not related to your issue, but you're being too broad in the scope of networks that are allowed to bypass the proxy, unless your internal IP addressing scheme covers the 10.0.0.0, 192.168.0.0, and 172.16.0.0 network ranges.

    In WebAdmin, go to the web proxy area.  On the Advanced Tab, scroll down to the Proxy Auto Configuration section to see a good short PAC file.
    __________________
    ACE v8/SCA v9.3

    ...still have a v5 install disk in a box somewhere.

    http://xkcd.com
    http://www.tedgoff.com/mb
    http://www.projectcartoon.com/cartoon/1
Children
No Data