05/05/2006, 11:05
|
| | Fecha de Ingreso: mayo-2005
Mensajes: 48
Antigüedad: 19 años, 6 meses Puntos: 0 | |
bueno te pongo todo el archivo .pac porque tampoco veo que contenga informacion confidencial ni nada que no se pueda usar
/*
*
* Proxy Autoconfig file
*
* 2002.04.12 - Carlos Diaz
* 2002.05.07 - Carlos Diaz Direct connection to dealers local net
* 2002.06.12 - Carlos Diaz Direct connection to dealers local net
*/
function FindProxyForURL(url, host)
{
// Direct connections to internal domains inside the proxy
if ( dnsDomainIs( host, ".vwg" ) ||
dnsDomainIs( host, ".vaesa.cpn.vwg" ) ) {
return "DIRECT";
}
// Direct connections to non-FQDN hosts
if (isPlainHostName(host)) {
return "DIRECT";
}
// Direct connection to dealers local net
if (shExpMatch(host,"192.168.*") ||
shExpMatch(host,"10.52.*") ||
shExpMatch(host,"audi.gec.es")||
shExpMatch(host,"10.112.198.34")||
shExpMatch(host,"catalunyawagen.es")||
shExpMatch(host,"cajamadrid.es")||
shExpMatch(host,"cajamadridempresas.es")||
shExpMatch(host,"195.47.21.38")||
shExpMatch(host,"10.32.204.*")) {
return "DIRECT;";
}
// Default traffic:
return "PROXY 10.83.1.20:8080; PROXY 10.83.1.21:8080";
} |