my firewall looks like this, please forgive wraparound, spelling,... eth1 net eth0 local
$IPT -t nat -A PREROUTING -i eth1 -p tcp --dport 9100 -j DNAT --net-dest 192.168.0.49
$IPT -t nat -A POSTROUTING -o eth1 -j MASQUERADE
$IPT -A FORWARD -i eth0 state --state INVALID -j DROP
Do I have mangle the packet first to get rid of the push flag? how? Is this a feature if iptables?
shaun