小弟所寫的,看的懂就用看看吧
#starting Port Forwarding
#aoc & aok type
# tcp 1100:7000 , 47624
# udp 1100:7000 , 47624
/sbin/iptables -t nat -A PREROUTING -d $youripordns -p udp --dport 1100:7000 -j DNAT --to-destination $mobile
/sbin/iptables -t nat -A PREROUTING -d $youripordns -p tcp --dport 1100:7000 -j DNAT --to-destination $mobile
/sbin/iptables -t nat -A PREROUTING -d $youripordns -p udp --dport 47624 -j DNAT --to-destination $mobile
/sbin/iptables -t nat -A PREROUTING -d $youripordns -p tcp --dport 47624 -j DNAT --to-destination $mobile
$mobile是nat底下的ip。
相關用法和資訊可以到www.linuxdoc.org抓advance routing
http://www.ibiblio.org/pub/Linux/docs/H ... tml.tar.gz
我以較建議看原文啦。