!!! Installazione configurazione squid
Trasparent mode

/etc/squid.conf

%%prettify 
{{{
#Modificare 

http_port 3128 transparent

#Aggiungere le linee 
acl our_networks src __$IP_LAN__/__$NETMASK__ 
http_access allow our_networks
}}}
/%


3) iptables NAT
iptables -t nat -A PREROUTING -i __$ETHLAN __-p tcp -m tcp --dport 80 -j DNAT --to-destination __$IP_SERVER_PROXY__:3128 

per controllo 
/var/log/squid/access.log


[http://forum.ubuntu-it.org/index.php?topic=159885.msg1067530]

[dansguardian]