Ok. Pon como proxi el pc bajo Linux SuSe .
Y asegurate que el puerto a su servicio de proxi sea el puerto 8080 . También ten cuidado , ya que ese servicio va asociado a de firewall .
mirate
-----------------------------------------------
Cita: en el archivo .pac, en // Default traffic: tendira que haver: return "PROXY 10.82.63.79:8080;" ????
-------------------
yo lo intentaria:
Código:
function FindProxyForURL(url, host)
{
// Direct connections to internal domains inside the proxy
if ( dnsDomainIs( host, ".vwg" ) ||
dnsDomainIs( host, ".vaesa.cpn.vwg" ) ) {
//return "DIRECT";
//Nos vamos por el proxy de Volskwagen
return "PROXY 10.83.1.20:8080; PROXY 10.83.1.21:8080";
}
// Direct connections to non-FQDN hosts
if (isPlainHostName(host)) {
//return "DIRECT";
//Nos vamos por el proxy de linux
return "PROXY 10.82.63.79:8080;"
}
// 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;";
//Nos vamos por el proxy de Volskwagen
return "PROXY 10.83.1.20:8080; PROXY 10.83.1.21:8080";
}
// Default traffic:
//Nos vamos por el proxy de linux
return "PROXY 10.82.63.79:8080;"
}