ok heres my problem i'm runnning iptables on my linux box which is connected to the net and is the server for 2 client computers, is wat i wanna do is be able to run a game server on a client computer and be able to connect remotely from on the net. i'v tryed the following!
[root@L133 root]# iptables -t nat -A PREROUTING -i eh -p tcp --dport 27005:27015 -j DNAT --to-dest 10.0.0.46
[root@L133 root]# iptables -t nat -A PREROUTING -i eh1 -p tcp --dport 27005:27015 -d 10.0.0.46 -j ACCEPT
i just hit enter after each
10.0.0.46 is the client address
the game port are 27015 for the server and 27005 for the client it uses tcp
would some one beable to do a rule or tell me wat i did wrong