I would like to block/disable the option for being able to connect to my RouterOS config from my Public/external IP.
I would want to only be able to login from my internal IP.
As I am seeing a lot of connections trying to login into my RouterOS by the Public IP I have.
Build your firewall rules something like this
/ip firewall filter
add chain=input connection-state=invalid action=block comment=âBlock invalid packetsâ
add chain=input connection-state=established comment=âAllow packets for established connectionsâ
add chain=input connection-state=related comment=âAllow packets for related connectionsâ
add chain=input in-interface= comment=âAllow packets coming from your local/internal lanâ
add chain=input action=block comment=âBlock all other trafficâ