04/03/2014, 14:18
|
| | | Fecha de Ingreso: julio-2011 Ubicación: Coahuila
Mensajes: 320
Antigüedad: 13 años, 5 meses Puntos: 8 | |
Respuesta: de squid a squid transparente eth0 = INTERNET
eth1 = RED LOCAL(SQUID PROXY)
192.168.1.1 (IP SQUID PROXY)
esta linea te permite utilizar http = 80 vinculado a squid
iptables -t nat -A PREROUTING -i eth1 -p tcp -m tcp --dport 80 -j DNAT --to-destination 192.168.1.1:3128
y esta otra te permite utilizar el puerto https = 443
iptables -t nat -A POSTROUTING -s 192.168.1.0/24 -o eth0 -j MASQUERADE
Espero y te sirva. |