Having Trouble with Port Forwarding
Posted: Fri Aug 14, 2020 5:32 pm
Hello,
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
Whenever I try to connect to my external ip (let's call it 1.2.3.4), I see the forwarding rule on my RouterOS WebFig page go up by a single packet. So I am assuming that the packet is going to my IP, my router is receiving it, and it is sending it to this forwarding rule... and then... nothing.
The server never responds and a connection is never established.
The port is also opened by using UFW.
I have no problems connecting to this server from within my local network.
Any nudge in the right direction would be helpful. Thank you for your time.
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.