Hi guys, have an 1100ahx2 running 6.27.
Have it configured as a switch with a firewall to filter traffic to some web hosting servers.
I noticed that my rules for blocking were not being followed by some of my machines.
Turns out it was the machines plugged into the first switch group that were not getting filtered, I have it configured thusly;
port 1 is master for ports 2-5, port 6 is master for ports 7-10. ports 1 and 6 are in the bridge. bridge is set to use firewall. port 1 is my uplink port, tho symptoms persist if uplink is plugged into any port on switch group 1.
Any machine plugged into the first switch group does not obey firewall rules. I am using the forward chain. second port switch group works fine. here is an example line in my firewall;
30 ;;; The dude
chain=forward action=accept protocol=udp dst-address=redactedip
dst-port=5678 log=no log-prefix=“”
31 ;;; allow related connections
chain=forward action=accept connection-state=related log=no
log-prefix=“”
32 ;;; allow established connections
chain=forward action=accept connection-state=established log=no
log-prefix=“”
33 ;;; drop invalid connections
chain=forward action=drop connection-state=invalid log=no log-prefix=“”
34 ;;; Drop everything else
chain=forward action=drop dst-address=mysubnet/24 log=no
log-prefix=“”
Am I missing some fundamental architecture issue with this routerboard?