I have a MikroTIk router running RouterOS6 and I am trying to do a simple port forwarding, but keep failing.
I have an application that runs on port 7777. I would like any communication to my external IP on port 7777 to be forwarded back to this system located on 192.168.88.247.
I added a forwarding rule with
Code: Select all
/ip firewall nat add action=dst-nat chain=dstnat dst-port=7777 protocol=tcp to-addresses=192.168.88.247 to-ports=7777
The server never responds and a connection is never established.
The port is also opened by using UFW.
Code: Select all
sudo ufw allow in 7777
Any nudge in the right direction would be helpful. Thank you for your time.