acl icon indicating copy to clipboard operation
acl copied to clipboard

Add support for "vrrp" protocol keyword in Juniper firewall filters

Open jathanism opened this issue 9 years ago • 0 comments

Currently the ACL parser only supports the numeric form (112) to specify vrrp as a protocol. Example:

term permit-vrrp {
            from {
                destination-address {
                    224.0.0.18/32;
                }
                protocol vrrp;
            }
            then accept;
        }
}

Enhance the parser to support either form. This was explicitly disabled in the past because it breaks parsing of certain Cisco access-lists. We can find a way!

jathanism avatar May 10 '16 19:05 jathanism