Hi Frank, please see below an example for EDP, ELRP and a Deny_all rule:
entry Allow_EDP { if {
          ethernet-source-address 00:e0:2b:00:00:01;
          ethernet-destination-address 00:e0:2b:00:00:00;
    } then {
          permit;
          count permit_EDP;
       }
}
entry Allow_ELRP {
if {
          ethernet-source-address 00:04:96:01:01:01 mask ff:ff:ff:00:00:00;
          ethernet-destination-address 01:04:96:01:01:01 mask ff:ff:ff:00:00:00;
     } then {
          permit;
          count permit_ELRP;
       }
}
For deny_all rule, it also affects ARP packets. That means If you have to allow ARP packets into that vlan you should add a permit rule for "ethernet-type 0x0806".
I would recommend you to try this rules in a lab first.