!!! 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
}}}
/%

NAT Porta
%%prettify 
{{{
iptables -t nat -A PREROUTING -i $ETH_LAN -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]