? Автоматическая настройка прокси ?
Исходные данные:
1) Windows 7 RC x64, ie8
2) Имеется локальный файл *.pac автоматической ностройки прокси, например:
file://localhost/диск:/путь/к/файлу/файл.pac
Содержимое файла:
Код: //
http://en.wikipedia.org/wiki/Proxy_auto-config function FindProxyForURL(url, host) {
// Localhost and loopback should always bypass the proxy. Put this near the top of your PAC file:
if ((host == "localhost") || (shExpMatch(host, "localhost.*")) || (host == "127.0.0.1"))
{return "DIRECT";}
// URLs from the domains below don't need a proxy:
if (shExpMatch(url,"*.MyProvider.com/*"))
{return "DIRECT";}
// local URLs from the IPs below need a proxy:
hostip=dnsResolve(host);
if (isInNet(hostip, "192.168.0.0", "255.255.0.0"))
{return "PROXY 192.168.0.1:3128";}
// All other requests go through proxies:
{return "PROXY 11.11.11.11:11; 22.22.22.22:22; 33.33.33.33:33";}
}