I am just building a small network on 1100AHx4, and have encountered a weird issue with Firewall:
if I define a list for all local interfaces, and use it in the firewall it doesn’t see to catch anything. Only if I define input for a bridge interface it catches something.
Doesn’t work:
/ip firewall filter
add action=accept chain=input comment="Allow DNS UDP from all LANs" dst-port=53 in-interface-list="LANS" protocol=udp
Works:
/ip firewall filter
add action=accept chain=input comment="Allow DNS UDP from LAN1" dst-port=53 in-interface=LAN1 protocol=udp
I don’t remember having issues with this before? Or I am doing something wrong?