I am quite new to using a MikroTik router. I have managed to initialy setup my Mikrotik and setup my Lan network with some statics on my devices, I have managed to setup an l2tp VPN and have applied SSH Brute force prevention and other little bits, but i am having trouble setting up a basic port forward to one of my devices from my WAN. I have Closed http off as i have setup https on www-ssl. Can anyone please point me in the right direction, I have tried a few tutorials but do not seem to be able connect to the device. Internally can connect so i know the port on the device is correct.
There are several ways to do this. This is one example. I prefer this method so that I don’t have to keep readjusting my firewall filter.
/ip firewall filter
add action=accept chain=input comment="Accept established related" connection-state=established,related
add action=accept chain=input comment="Allow LAN access to router and Internet" in-interface=bridge-LAN
add action=drop chain=input comment="Drop all other input"
add action=accept chain=forward comment="Accept established related" connection-state=established,related
add action=accept chain=forward comment="Allow LAN access to router and Internet" connection-state=new in-interface=bridge-LAN
add action=accept chain=forward connection-nat-state=dstnat comment="Accept Port forwards"
add action=drop chain=forward comment="Drop all other forward"