Dear Ricky
Sorry to disturb u, but my problem remains same, I wont start my transparent proxy , as told by u the given code cat /proc/sys/net/ipv4/ip_forward returns 1, someone tell me the following solution, pls tell me is this correct ?
Without httpd running on your squid-box you need this line in your iptables-script:
iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 3128
If you have a httpd running on your squid box, these are the lines you need to insert into your iptables-script:
iptables -t nat -A PREROUTING -p tcp -d localhost --dport 80 -j ACCEPT
iptables -t nat -A PREROUTING -p tcp -d / --dport 80 -j ACCEPT
iptables -t nat -A PREROUTING -p tcp -s ppp0 --dport 80 -j REDIRECT --to-port 3128