mal wieder ein kleines Problemchen: Ich möchte die Proxy Auto config Funktion unserer ASG nutzen.
Dazu habe ich folgenden Text unter Web Security/Erweitert/Automatische Proxy-Konfiguration eingefügt:
function FindProxyForURL(url, host)
{
//The following URLs will not be proxied
if (shExpMatch(url, "*unseredomain.local*"))
{return "DIRECT";}
if (shExpMatch(url, "*192.168.x.206*"))
{return "DIRECT";}
// Set the desired proxy server for local addresses
if (isInNet(myIpAddress(), "192.168.x.0", "255.255.255.0"))
{return "PROXY 192.168.x.206:8080" ;}
if (isInNet(myIpAddress(), "192.168.xx.0", "255.255.255.0"))
{return "PROXY 192.168.x.206:8080" ;}
if (isInNet(myIpAddress(), "192.168.***.0", "255.255.255.0"))
{return "PROXY 192.168.x.206:8080" ;}
// For all other networks, do not proxy
return "DIRECT" ;
}
Dann hab ich in den IE-Settings den Haken bei "Atomatisches Konfigurationsskript verwenden" gesetzt und die folgende URL eingetragen:
192.168.x.206:8080/wpad.dat
Nun läuft der Browser sich tot aber Webseiten werden trotzdem nicht geöffnet. Fehlt noch irgendwo etwas?
This thread was automatically locked due to age.