Sehef
Diskussionsleiter
Profil anzeigen
Private Nachricht
Link kopieren
Lesezeichen setzen
dabei seit 2015
Profil anzeigen
Private Nachricht
Link kopieren
Lesezeichen setzen
automatische Proxy Konfiguration
28.05.2015 um 12:21Hallo zusammen,
Wir verteilen bei uns in Unternehmen Proxy einstellungen per gpo. Das funktioniert allerdings nicht so richtig also suche ich eine Alternative. Ich habe jetzt die Möglichkeit gefunden das ganze mit einer .pac Datei zu machen. Leider funktioniert es nicht so richtig. Könnte sich bitte jemand den Code meiner .pac Datei anschauen und ihn überprüfen?
Schon mal vielen Dank.
function FindProxyForURL(url, host) {
if (shExpMatch(host,"*netz.intern")) {
return "DIRECT";
}
if (shExpMatch(host,"172.xx.*.*")) {
return "DIRECT";
}
if (shExpMatch(host,"*.xxx.domain")) {
return "DIRECT";
}
if (shExpMatch(host,"localhost")) {
return "DIRECT";
}
if (shExpMatch(host,"172.xx.x.xx")) {
return "DIRECT";
}
if (shExpMatch(host,"10.xxx.xx.xx")) {
return "DIRECT";
}
if (shExpMatch(host,"10.xxx.xx.xx")) {
return "DIRECT";
}
if (shExpMatch(host,"*.xx.domain.de")) {
return "DIRECT";
}
if (shExpMatch(host,"SXXX02")) {
return "DIRECT";
}
if (shExpMatch(host,"SXXXTest01")) {
return "DIRECT";
}
if (shExpMatch(host,"kh.google.com")) {
return "DIRECT";
}
if (shExpMatch(host,"geo.kryhole.com")) {
return "DIRECT";
}
if (shExpMatch(host,"maps.google.com")) {
return "DIRECT";
}
return "PROXY 192.xxx.x.x:xxxx; DIRECT";
Wir verteilen bei uns in Unternehmen Proxy einstellungen per gpo. Das funktioniert allerdings nicht so richtig also suche ich eine Alternative. Ich habe jetzt die Möglichkeit gefunden das ganze mit einer .pac Datei zu machen. Leider funktioniert es nicht so richtig. Könnte sich bitte jemand den Code meiner .pac Datei anschauen und ihn überprüfen?
Schon mal vielen Dank.
function FindProxyForURL(url, host) {
if (shExpMatch(host,"*netz.intern")) {
return "DIRECT";
}
if (shExpMatch(host,"172.xx.*.*")) {
return "DIRECT";
}
if (shExpMatch(host,"*.xxx.domain")) {
return "DIRECT";
}
if (shExpMatch(host,"localhost")) {
return "DIRECT";
}
if (shExpMatch(host,"172.xx.x.xx")) {
return "DIRECT";
}
if (shExpMatch(host,"10.xxx.xx.xx")) {
return "DIRECT";
}
if (shExpMatch(host,"10.xxx.xx.xx")) {
return "DIRECT";
}
if (shExpMatch(host,"*.xx.domain.de")) {
return "DIRECT";
}
if (shExpMatch(host,"SXXX02")) {
return "DIRECT";
}
if (shExpMatch(host,"SXXXTest01")) {
return "DIRECT";
}
if (shExpMatch(host,"kh.google.com")) {
return "DIRECT";
}
if (shExpMatch(host,"geo.kryhole.com")) {
return "DIRECT";
}
if (shExpMatch(host,"maps.google.com")) {
return "DIRECT";
}
return "PROXY 192.xxx.x.x:xxxx; DIRECT";