Hi.
We have installed the UTM version 9.351-3 with an active web protection. (Should replace the old TMG)
Now, after upgrade Win10 to Win10 Threshold 2, the Edge browser hang/freeze on many websites.
If we use the old ISA with wpad, edge works fine.
If we use the UTM with wpad, Edge freeze since Threshold 2.
If we use the UTM with the manual proxy settings, also everthing works fine.
Do somebody know what is wrong with our wpad script?
Here is it:
function FindProxyForURL(url, host) {
//Don't proxy connections to the UTM web interface
if (shExpMatch(url, "https://${asg_hostname}*")) return "DIRECT";
if (shExpMatch(url, "https://" + dnsResolve(host) + "*")) return "DIRECT";
//Exclude non-fqdn hosts from being proxied
if (isPlainHostName(host)) return "DIRECT";
//Don't proxy connections to the exempted URL matches
if (shExpMatch(url, "*.local/*")) return "DIRECT";
if (shExpMatch(url, "*xx.intern*")) return "DIRECT";
if (shExpMatch(url, "*xx.xx.de*")) return "DIRECT";
--- 7 more lines like this ---
if (isInNet(dnsResolve(host), "127.0.0.0", "255.0.0.0")) return "DIRECT";
if (isInNet(dnsResolve(host), "xxx.xx.xx.0", "255.255.0.0")) return "DIRECT";
if (isInNet(dnsResolve(host), "xxx.xx.xx.0", "255.255.255.224")) return "DIRECT";
if (isInNet(dnsResolve(host), "xxx.xx.xx.32", "255.255.255.224")) return "DIRECT";
--- 36 more lines like this ---
return "PROXY ${asg_hostname}:8080";
}
Thank you for help!
This thread was automatically locked due to age.