Hi, i have doing transparent proxy with squid and this port redirect rule:
 
iptables -t nat -A PREROUTING -i eth1 -p TCP --dport 80 -j REDIRECT --to-port 8080
 
and works fine. Now, i want dont't redirect some request to destination dirs like 192.168.0.0/24 and 192.168.1.0/24 (for example). How i can do this?
 
Thanks.