Tammar K. Ajam wrote: > Dose any body install squid under fedora core 3. > I'm trying to use it in my FC3 Box as a web cache transperent proxy. I'm using squid on fc3 and here are my settings: # set as transparent proxy for all clients in local network iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 \ -j REDIRECT --to-port 3128 # set as transparent proxy also for users with a account *on* the # server running squid iptables -t nat -A OUTPUT -p tcp --dport 80 -m owner \ ! --uid-owner squid -j REDIRECT --to-ports 3128 Olaf