I have an OpenBSD gateway which share the Internet and use Squid.
Squid proxy work transparent, OpenBSD PF allow this thing :
rdr pass on fxp0 proto tcp to port www -> 127.0.0.1 port 3128
I use Squid to filter web content like ad and pop-up (adzaper), I don't
use Squid for cache.
The problem is, when i use Squid many webpage open slow, for example
sometimes i wait much in Firefox at "Waiting for www.pagexy.com..."
message. Without Squid all page open faster.
I use named on gateway. I have this settings in /var/named/etc/named.conf
acl clients {
192.168.10.0/24;
::1;
};
options {
forward only;
forwarders { 193.231.249.1; };
version ""; // remove this to allow version queries
listen-on { any; };
listen-on-v6 { any; };
allow-recursion { clients; };
};
I hear Squid don't really like named, is true? or anyone use Squid with
named and don't have problems, any idea?
Thank you very much !