I am using RouterOS 7.11.2
I need to perform multiple actions AFTER an ACCEPT rule is matched.
For example:
/ip firewall filter add chain=input protocol=tcp dst-port=1234 src-address=10.0.90.10 action=accept
/ip firewall filter add chain=input protocol=tcp dst-port=1234 src-address=10.0.90.10 action=add-src-to-address-list address-list=test_list
The problem in the above example is that if the first rule is matched and the packet is accepted, the following rule not evaluated.
I remember in RouterOS 6, there use to be a passthrough=yes parameter that allows the following rule to be evaluated.
I tried jumping to a user defined chain, but the same issue still there.
Can someone help please?
Thanks