Hello List!
I'm a little new in the world of iptables and could need some advice
concerning a simple Port Forwarding. I created s basic rule set as described
in common howtos and the internet:
# iptables -A FORWARD -i eth0 -p tcp --dport port -j ACCEPT
# iptables -t nat -A PREROUTING -i eth0 -p tcp --dport port -j DNAT --to
local_ip:port
My FORWARD CHAIN contains two further entries (they actually don't affect
the above rules):
# iptables -A FORWARD -i eth1 -o eth0 -j ACCEPT
# iptables -A FORWARD -i eth0 -o eth1 -m state --state ESTABLISHED,RELATED
-j ACCEPT