300
This URL is used by clients of Web Proxy Autodiscovery Protocol using NetBIOS to download the configuration file and determine the proxy for a specified URL.
What is the URL http://wpad/wpad.dat?
Example of wpad.dat file:
>$ cat wpad.dat
function FindProxyForURL(url, host)
{
if (isInNet(host, 192.168.0.0 255.255.0.0)) {
return DIRECT
} else {
if (shExpMatch(url, http:*))
return PROXY 192.168.0.250:3128;
if (shExpMatch(url, https:*))
return PROXY 192.168.0.250:3128;
if (shExpMatch(url, ftp:*))
return PROXY 192.168.0.250:3128;
return DIRECT;
}
}