Hi;
I am using Proxy.pac file for my proxy, it works fine but I found that it does not bypass the traffic for my two another web page on another VLAN, without using proxy.pac file, I have no problem access to a web page on my another VLAN. This web page
is a NAS device web admin page. In my proxy.pac file, I have this setting. When I enter http://192.168.0.100, I got time out message from my proxy server. If the syntax is incorrect or something else?
if
(isPlainHostName(host) ||
shExpMatch(host,
"*.local"
) ||
shExpMatch(url, "http://192.168.0.100") ||
isInNet(dnsResolve(host),
"10.0.0.0"
,
"255.0.0.0"
) ||
isInNet(dnsResolve(host),
"172.16.0.0"
,
"255.240.0.0"
) ||
isInNet(dnsResolve(host),
"192.168.0.0"
,
"255.255.0.0"
) ||
isInNet(dnsResolve(host),
"127.0.0.0"
,
"255.255.255.0"
))
return
"DIRECT"
;
KW - CNE,MCSE,VCP5