hi everyone im new hear.i would like to get some help on how to port forward on mikrotik router v6.30.4. The router has been fed with a pppoE connection by the isp and i cant access it remotely using internet from another isp.
Hello,
Port forwarding docs and examples can be found here:
https://wiki.mikrotik.com/wiki/Manual:IP/Firewall/NAT#Port_forwarding_to_internal_FTP_server
About access your MikroTik Router from Internet, it’s possible if you have a public IP address. If not, you can ask your ISP for a port forwarding to your private IP. Otherwise, you can read this
are you on public ip. export your firewall filter configuration.
/ip firwall filter export
paste here
I am facing a similar challenge. The router has been fed with a pppoE connection by the isp and i cant access it remotely using internet from another isp
RouterOS 7.8
model = CCR2116-12G-4S+
/ip firewall filter
add action=accept chain=input comment=“"Allow Estab & Related"”
connection-state=established,related
add action=accept chain=input comment=“"Allow VLAN"” in-interface=ADMIN
add action=accept chain=forward comment=“Allow Estab & Related”
connection-state=established,related
add action=drop chain=input comment=Drop
add action=accept chain=forward comment=“"VLAN Internet Access only"”
connection-state=new in-interface=all-vlan out-interface=pppoe-wan
add action=drop chain=forward comment=Drop
/ip firewall nat
add action=masquerade chain=srcnat comment=“Link To ISP” out-interface=
pppoe-wan
add action=dst-nat chain=dstnat comment=“Remote Desktop” dst-port=3389
protocol=tcp to-addresses=10.10.10.2 to-ports=3389