Open fako1024 opened 6 months ago
There probably are a couple of simple conditions that could benefit from an alias / shorthand to reduce typing / complexity:
RFC1918
(net eq rfc1918)
(net eq private)
(net eq 10.0.0.0/8 or net eq 172.16.0.0/12 or net eq 192.168.0.0/16)
IN
<attribute> IN a,b,...
<attribute> eq a or <attribute> eq b ...
Important: The DeMorgan rules have to be honored, especially for the first item.
There probably are a couple of simple conditions that could benefit from an alias / shorthand to reduce typing / complexity:
RFC1918
(private network ranges):(net eq rfc1918)
/(net eq private)
->(net eq 10.0.0.0/8 or net eq 172.16.0.0/12 or net eq 192.168.0.0/16)
IN
expansion:<attribute> IN a,b,...
-><attribute> eq a or <attribute> eq b ...
Important: The DeMorgan rules have to be honored, especially for the first item.