Buckminster
(usa Debian)
Enviado em 29/05/2013 - 16:42h
Vamos fazer um teste.
No Squid comente todas estas últimas linhas:
http_reply_access allow all
icp_access allow all
coredump_dir /var/spool/squid3
#sqstat
acl manager proto cache_object
# replace 192.168.1.0 with your webserver IP
acl webserver src
http_access allow manager webserver
http_access deny manager
No iptables, estas linhas:
# Proxy
iptables -t nat -A PREROUTING -p tcp -i eth0 --dport 80 -s 192.168.4.0/24 -j DNAT --to-destination 192.168..:3128
# NAT
iptables -t nat -A POSTROUTING -o eth1 -s 192.168../24 -j MASQUERADE
deixe assim:
# Proxy
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
#
# NAT
iptables -t nat -A PREROUTING -i eth1 -p tcp --dport 80 -j REDIRECT --to-port 3128
Reinicia os dois e testa.