Hi,
New to Mikrotik and to this level of gear and configuration.
I found some firewall rules to stealth all ports from internet. It was from this post:
ShieldsUp Stealth All ports
The rules were:
Change the in-interface to match your bridge name.
/ip firewall filter
add action=accept chain=input connection-state=established,related comment="Accept established related"
add action=accept chain=input in-interface=bridge-LAN comment="Allow LAN access to router and Internet"
add action=drop chain=input comment="Drop all other input"
add action=accept chain=forward connection-state=established,related comment="Accept established related"
add action=accept chain=forward connection-state=new in-interface=bridge-LAN comment="Allow LAN access to router and Internet"
add action=accept chain=forward connection-nat-state=dstnat comment="Accept Port forwards"
add action=drop chain=forward comment="Drop all other forward"
What is the purpose of the last line? I found it blocked internet access for me from my VLANs. When I disabled that last rule the internet access from VLAN machines was reinstated. I also found that the ports were still stealth without that last rule. I'd like to understand whether it's really needed and how to enable VLAN internet access with it if needed.