> iptables -P FORWARD DROP > You are only allowing packets through the forward chain in the direction eth1->eth0. There is no packet allowed in the other direction. iptables -A FORWARD -i eth0 -o eth1 -d 10.0.0.112 -m multiport --dport 3389,21,80 -m state --state NEW -j ACCEPT iptables -A FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT
Thank you for your reply, you are right.. but it didn't help..
Been looking a bit further.. again.. iptables -v -L tells that packets are forwarded to eth1, on eth1 I notice that the TX bytes is increasing but the RX are stable at the same value.
Would it be correct to assume this is not an iptables issue but an issue of the box behind the Linux box?
TIA,
B.