端口映射问题!!!

我有三个机子
linux IP:192.168.3.15 (端口映射)
wins IP:192.168.3.160 (开启远程)
winc IP:192.168.0.164 (连接远程)
互能ping通

linux:
iptables -F
iptables -X
iptables -t nat -F
iptables -t nat -X
iptables -t nat -A PREROUTING -d 192.168.3.15 -p tcp --dport 3389 -j DNST --to-destination 192.168.3.160:3389
iptables -t nat -A POSTROUTING -d 192.168.3.160 -p tcp --dport 3389 -j SNAT --to-source 192.168.3.15:3389
为什么我用winc去连linux3389端口,不能成功映射,望大侠给出正解!!谢谢