Hi guys!
I was browsing similar topics but none of them helped me. I’m trying to setup simple port forward and looks like everything is by the book, but it doesn’t work ![]()
Here is the info:
RB751U-2HnD, v6.46.8
I have ADSL modem that was set in bridge mode so Mikrotik does the PPPoE connection, dynamic public IP.
ether1 is a cable from ADSL modem and ports 2,3,4,5 are in bridge.
I have NAT setup on that interface, internet works fine. I have port forward for my PC for ports 44866-44868
/ip firewall nat print
Flags: X - disabled, I - invalid, D - dynamic
0 ;;; NAT for ADSL
chain=srcnat action=masquerade out-interface=ADSL log=no log-prefix=""
1 ;;; PC
chain=dstnat action=dst-nat to-addresses=10.10.10.10 to-ports=44866-44868 protocol=tcp in-interface=ADSL
dst-port=44866-44868 log=yes log-prefix=""
/ip firewall filter print
Flags: X - disabled, I - invalid, D - dynamic
0 ;;; ping
chain=input action=accept protocol=icmp src-address-list=whitelist log=no log-prefix=""
1 ;;; FTP
chain=input action=accept protocol=tcp src-address-list=whitelist dst-port=20 log=no log-prefix=""
2 ;;; FTP
chain=input action=accept protocol=tcp src-address-list=whitelist dst-port=21 log=no log-prefix=""
3 ;;; SSH
chain=input action=accept protocol=tcp src-address-list=whitelist dst-port=22 log=no log-prefix=""
4 ;;; DNS
chain=input action=accept protocol=tcp src-address-list=whitelist dst-port=53 log=no log-prefix=""
5 ;;; DNS
chain=input action=accept protocol=udp src-address-list=whitelist dst-port=53 log=no log-prefix=""
6 ;;; Web
chain=input action=accept protocol=tcp src-address-list=whitelist dst-port=8080 log=no log-prefix=""
7 ;;; WinBox
chain=input action=accept protocol=tcp src-address-list=whitelist dst-port=8291 log=no log-prefix=""
8 ;;; input / new / drop
chain=input action=drop connection-state=new log=no log-prefix=""
As you can see its only the input chain for the router itself and on the whitelist is my LAN subnet 10.10.10.0/24
When I try with open port checker tool it showed that port is closed (and yes I have application running on that port, I even changed between to application just to be sure).
I enabled the logging and I see 3 TCP (SYN) packages, counters move up as well, but that’s it.
dstnat: in:ADSL out:(unknown 0), proto TCP (SYN), 198.199.98.246:55844->MY_PUBLIC_IP:44866, len 60
dstnat: in:ADSL out:(unknown 0), proto TCP (SYN), 198.199.98.246:55849->MY_PUBLIC_IP:44866, len 60
dstnat: in:ADSL out:(unknown 0), proto TCP (SYN), 198.199.98.246:55854->MY_PUBLIC_IP:44866, len 60
I tested if I remove whitelist requirements for 8080 port tool show that its open (I’m using online tools, not local port scanners).
I also tried to add different forward rules in filters but nothing helped.
I would appreciate some help. Thnx!