hello
port forwarding is much easier with iptables. the commands for it are for example
iptables -t nat -A PREROUTING -d dest_ip -p tcp --dport dest_port -j DNAT
the most important here as you might see, is the target speciefied by the -j switch which tells iptables to DESTINATION-NAT to some port.
hope this works.
if you need assistance in setting up a iptables firewall, an you understand german, you might visit
raven.eplay.ch
i wrote a pretty fine tutorial about how to set up an iptables firewall.
cya
|