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
  • Chris, I don't see anything wrong there.  Have you checked the Proxy Settings in your browser to confirm that the proper configuration was done?  Have you confirmed in the 'Content Filter (HTTP/S)' log that the proxy sees these accesses?  If it's not seeing them, then check the 'Intrusion Prevention' log.

    Cheers - Bob
     
    Sophos UTM Community Moderator
    Sophos Certified Architect - UTM
    Sophos Certified Engineer - XG
    Gold Solution Partner since 2005
    MediaSoft, Inc. USA
Reply
  • Chris, I don't see anything wrong there.  Have you checked the Proxy Settings in your browser to confirm that the proper configuration was done?  Have you confirmed in the 'Content Filter (HTTP/S)' log that the proxy sees these accesses?  If it's not seeing them, then check the 'Intrusion Prevention' log.

    Cheers - Bob
     
    Sophos UTM Community Moderator
    Sophos Certified Architect - UTM
    Sophos Certified Engineer - XG
    Gold Solution Partner since 2005
    MediaSoft, Inc. USA
Children
No Data