We have a Game server that is on Local IP Address (for example : 192.168.0.15).
Players from outside must be first connect to REALM Authentication server then connect to game server trough the REALM (realm want clients connect to Local Address (192.168.0.15) )
to access other players from outside the network I forward the game server port to local network :
Code: Select all
1 X ;;; Port-Forwarding -Game server [Non-Intranet]
chain=dstnat action=dst-nat to-addresses=192.168.0.15 to-ports=8085 protocol=tcp dst-port=8085
2 X ;;; Port-Forwarding -Game server [Non-Intranet]
chain=dstnat action=dst-nat to-addresses=192.168.0.15 to-ports=3724 protocol=tcp dst-port=3724
Players from outside network can be easly to connect my forwarded REALM , when they want to connect to game server too REALM want to connect to that local server too , then can't connect to server .
what's the best solution without changing the game server IP Address from local to Public IP ?
Thanks