mrt181
Goto Top

Proxy.pac korrekt - funktioniert dennoch nicht

Diese Skript:

function FindProxyForURL(url, host)
{
var proxy_yes = "PROXY 10.1.50.181:8080";  
var proxy_no = "DIRECT";  

if (shExpMatch(host, "127.0.0.1")) { return proxy_no; }  
if (shExpMatch(host, "localhost")) { return proxy_no; }  
if (shExpMatch(url, "*.domain.local/*")) { return proxy_no; }  
if (shExpMatch(url, "*.domain.local:*/*")) { return proxy_no; }  
if (shExpMatch(url, "http://intranet*")) { return proxy_no; }  
if (shExpMatch(url, "http://c1*")) { return proxy_no; }  
if (shExpMatch(url, "http://abc*")) { return proxy_no; }  

if (isInNet(myIpAddress(), "172.20.0.0", "255.255.0.0"))  
return proxy_yes;
else
return proxy_no;
}

Das Skript funktioniert bei einigen PCs, bei anderen, identischen Geräte wieder nicht.

Sobald man im LAN ist, kommt man nicht mehr in das Internet. Anscheinend wird der Proxy Eintrag nicht gesetzt. Ausserhalb des LANs gibt es kein Problem.

Jemand ein Idee?

Content-ID: 109279

Url: https://administrator.de/contentid/109279

Ausgedruckt am: 22.11.2024 um 21:11 Uhr

32067
32067 17.02.2009 um 16:37:27 Uhr
Goto Top
Helfen vielleicht die Kommentare zu Problem mit Proxy.pac ?
Dani
Dani 17.02.2009 um 18:54:38 Uhr
Goto Top
Hi,
also so habe ich das noch nie gesehen. Probier es mal so:
function FindProxyForURL(url, host)
{
	if (isInNet(host, "127.0.0.1", "255.255.255.255")) return "DIRECT";  

	if (shExpMatch(url, "*.domain.local/*")) return "DIRECT";  
	
	if (shExpMatch(url, "*.domain.local:*/*")) return "DIRECT";  
	
	if (shExpMatch(url, "http://intranet*")) return "DIRECT";  
	
	if (shExpMatch(url, "http://c1*")) return "DIRECT";  
	
	if (shExpMatch(url, "http://abc*")) return "DIRECT";  

	if (isInNet(host, "172.20.0.0", "255.255.0.0")) return "PROXY 10.1.50.181:8080";  
	
	
	return "DIRECT";;  
}
Wie hast du die Datei eingebunden?! Manuell hinterlegt im Browser oder hast du es entsprechend mit DHCP gelöst?


Grüße,
Dani
mrt181
mrt181 17.02.2009 um 19:07:04 Uhr
Goto Top
Hallo, werde ich morgen mal probieren. Ist direkt im Browser eingestellt. Kann ich das auch über DHCP lösen, auch mit Notebook Benutzern, die selten in der Domäne sind?
Dani
Dani 17.02.2009 um 19:25:30 Uhr
Goto Top
Klaro...so machen wir das auch. Siehe hier...
mrt181
mrt181 18.02.2009 um 10:53:37 Uhr
Goto Top
So, habe das überarbeitet Skript versucht. Funktioniert nicht, ich muss nach wie vor den Proxy manuell eintragen, sonst gibt es im LAN kein Internet.

EDIT:

Habe das Skript mal verändert und zwar an dieser Stelle:

if (isInNet(myIpAddress(), "172.20.0.0", "255.255.0.0")) return "PROXY 10.1.50.181:8080";  

Es hat anschliessend bis zum neutstart des PCs funktioniert, jetzt nicht mehr. Ich muss den Proxy wieder manuell setzen.