[squid-users] OpenBSD pf and Squid running on Linux.

2003-02-16 Thread Steve Keate
I am having a problem using OpenBSD as a redirector for a Linux based transparent proxy, can anyone tell me what I'm doing wrong? I'm trying to use the NAT in OpenBSD's pf on a bridging firewall to pass requests to a Linux box running squid that is configured as a transparent proxy using this l

Re: [squid-users] OpenBSD pf and Squid running on Linux.

2003-02-17 Thread Robert Collins
On Mon, 2003-02-17 at 13:46, Steve Keate wrote: > rdr proto tcp from ! 192.168.250.198 to any port 80 -> 192.168.250.198 > port 8080 This rule rewrites the TCP header as well as forwarding it to the squid box. This means squid can't tell that it was a intercepted request. I don't know if there

Re: [squid-users] OpenBSD pf and Squid running on Linux.

2003-02-17 Thread Chad Whitten
here is what i do $Int is my internal interface $SQUIDBOXIP is just the Ip of the squid server $Lan is my lan - 10.1.1.0/24 no rdr on $Int from $SQUIDBOXIP to any port 80 rdr on $Int inet proto tcp from $Lan to any port 80 -> $SQUIDBOXIP port 3128 so all port 80 requests from the lan get redirect