Hello there!
I am very new to working with router OS and am hoping to port forward the SMB ports (specifically 445 and 139) to a File server so that it becomes publicly accessible across the internet.
My network is set up so that:
Internet -> Virgin Media Modem -> Mikrotik Router (RB2011UiAS-2HnD) -> Google Nest Wifi Mesh -> File Server
The google nest router is already setup so that it forwards these ports to the file server, so when connected to the Mikrotik router i can access the file server through the IP of the google nest router.
However, i am unable to access the file server through the public IP of the router
I have set up firewall rules on the Mikrotik router to accept connections through the SMB ports and NAT rules to forward them to the google nest router,
alas, no luck
Any help would be greatly appreciated
Thanks!
filter rules:
12 ;;; SMB:445
chain=input action=accept protocol=tcp in-interface=Internet src-port="" dst-port=445 log=no log-prefix=""
13 ;;; SMB:139
chain=input action=accept protocol=tcp in-interface=Internet dst-port=139 log=no log-prefix=""
14 ;;; SMB Test
chain=forward action=accept protocol=tcp dst-address=192.168.10.130 dst-port=445 log=no log-prefix=""
NAT rules:
5 ;;; SMB:445 Forwarding
chain=dstnat action=dst-nat to-addresses=192.168.10.130 to-ports=445 protocol=tcp in-interface=Internet dst-port=445 log=yes log-prefix="SMB:445 >> "
6 ;;; SMB:139 Forwarding
chain=dstnat action=dst-nat to-addresses=192.168.10.130 to-ports=139 protocol=tcp in-interface=Internet dst-port=139 log=yes log-prefix="SMB:139 >> "