Make sure you replace wlan1 with the correct name of your WAN(internet) interface.. If you need to forward udp instead of tcp them change that also.
Hope that helps..
-Gerard
Its about a game(warcraft) that required forwarding port to enable creating room.
I have
chain=dstnat dst-address=219.83.12.146 action=dst-nat
to-addresses=192.168.11.5 to-ports=6500 << its run well
but when I added more configuration
chain=dstnat dst-address=219.83.12.146 action=dst-nat
to-addresses=192.168.11.6 to-ports=6501 it doesnt work at all
thanks 4 gerard
l’ve tried Ure Config but still doesnt worked
first rule was to forward everything that is coming from 219.83.12.146 to 192.168.11.5 port 6500
so firewall rule was accomplished and it will not go to second rule! Understand?
The only way it can work is like this
chain=dstnat dst-address=219.83.12.146 dst-port=6500 action=dst-nat
to-addresses=192.168.11.5 to-ports=6500
but when I added more configuration
chain=dstnat dst-address=219.83.12.146 dst-port=6501 action=dst-nat
to-addresses=192.168.11.6 to-ports=6501
You can’t tell router to forward same port to two different addresses!