Hi,
I'm having problems with my configuration of a transparent squid proxy
+ squidguard.
Without transparent mode squidguard is blocking all requested sites nicely.
On the other hand transparent mode for squid is working fine. But
squidguard is not blocking anything in transparent mode. All running
on a Debian sarge server.
What am I doing wrong?
My squid.conf looks like this:
----------------------------------------------------------------------------------------
hierarchy_stoplist cgi-bin ?
acl QUERY urlpath_regex cgi-bin \?
cache_dir ufs /data/squid/cache 9000 16 256
emulate_httpd_log on
hosts_file /etc/hosts
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern . 0 20% 4320
acl all src 0.0.0.0/0.0.0.0
acl manager proto cache_object
acl localhost src 127.0.0.1/255.255.255.255
acl to_localhost dst 127.0.0.0/8
acl SSL_ports port 443 563 # https, snews
acl SSL_ports port 873 # rsync
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 563 # https, snews
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # wais
acl Safe_ports port 1025-65535 # unregistered ports
acl Safe_ports port 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 777 # multiling http
acl Safe_ports port 631 # cups
acl Safe_ports port 873 # rsync
acl Safe_ports port 901 # SWAT
acl purge method PURGE
acl CONNECT method CONNECT
acl my_net src 192.168.151.1-192.168.151.255
no_cache deny QUERY
http_access allow my_net
http_access allow manager localhost
http_access deny manager
http_access allow purge localhost
http_access deny purge
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost
http_access deny all
http_reply_access allow all
icp_access allow all
cache_effective_user proxy
cache_effective_group proxy
http_port 8080
httpd_accel_port 80
httpd_accel_single_host off
httpd_accel_with_proxy on
httpd_accel_uses_host_header off
coredump_dir /var/spool/squid
visible_hostname my-proxy
httpd_accel_host virtual
redirect_program /usr/bin/squidGuard -c /etc/squid/squidGuard.conf
----------------------------------------------------------------------------------------
My squidguard.conf is very simple:
----------------------------------------------------------------------------------------
dbhome /data/squidguard/db
logdir /var/log/squidGuard
dest porn {
domainlist adult/domains
urllist adult/urls
}
acl {
default {
pass !porn all
redirect http://xxxxxxxxxxxxxxxxx/stop-squidguard.html
}
}
----------------------------------------------------------------------------------------
My iptables script for transparant mode:
----------------------------------------------------------------------------------------
iptables -t nat -A PREROUTING -i br0 -p tcp --dport 80 -j REDIRECT
--to-port 8080
----------------------------------------------------------------------------------------
Any help would be appreciated.
P.