Is there any way to select filter rules by fields exact match?
By example, I tried to select only one rule with chain=forward action=accept
/ip firewall filter print where action=accept chain=forward
Flags: X - disabled, I - invalid, D - dynamic
0 ;;; Ansible managed: 1
chain=forward action=accept log=no log-prefix=""
1 ;;; Ansible managed: 2
chain=forward action=accept connection-state=established,related log=no log-prefix=""
As you can see, there is 2 rules match expression, but I want to select only one. When I try to select more common rule, there is more specific rule in output.
Nope, by default ROS searches rules by incomplete match. What I need to do to tell ROS, that I want exact match?
In previous example, I want to get just first resul, not second. Is it posible?