Hello!
I recently bought the game Planetside for my PC (wow what a great game!

) I am playing it behind a Linux machine using IP Masquerading. To host a voice conference, it likes port 37000. I tried to add it, but it didn't work. Here is what I added (It only requires TCP, but I added UDP for the heck of it):
iptables -A PREROUTING -t nat -p tcp -d $extip --dport 37000 -j DNAT --to 192.168.0.2
iptables -A PREROUTING -t nat -p udp -d $extip --dport 37000 -j DNAT --to 192.168.0.2
Any ideas/suggestions are GREATLY appreciated!!!