Am trying to compile squid to allow transparency using this command

./configure --enable-ipf-transparent 

on a MAC mini running 10.5.8

am getting a error

WARNING: Cannot find necessary IP-Filter header files 
         Transparent Proxy support WILL NOT be enabled

How can i solve this, how can I install the IP headers file, I already have the installer (IP Filter 4.1.33) but which distribution do I use for a mac

link|improve this question

39% accept rate
feedback

1 Answer

up vote 1 down vote accepted

First Mac OS X uses ipfw and not ipf (I know it looks the same but it's not)

So use this command to configure your build. It's only available with Squid 3.0 and up.

./configure --enable-ipfw-transparent

I'd suggest enabling SSL support as well

./configure --enable-ipfw-transparent --enable-ssl
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.