On 2006.10.04 06:06, Brent Clark - bclark@xxxxxxxxxxxxxxx wrote:
Hey all
Ive been trying to redirect all HTTP traffic to my newly built proxy
(squid).
But I cant seem to get it working.
This is what I have
$IPT -t nat -A PREROUTING -i eth1 -s 192.168.111.0/24 -p tcp --dport 80 -j
DNAT --to 192.168.111.9:3128
$IPT -t nat -A POSTROUTING -o eth1 -s 192.168.111.0/24 -j SNAT --to
192.168.111.10
and
$IPT -t filter -A FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT
$IPT -t filter -A FORWARD -i eth1 -o eth1 -p tcp --dport 80 -m state --state
NEW -j ACCEPT
The prerouting rule changed the destination port from 80 to 3128.
Try accepting new traffic on 3128 in the filter table.
--
Jim Laurino
nfcan.x.jimlaur@xxxxxxxx
Please reply to the list.
Only mail from the listserver reaches this address.