We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57a0b41 commit af1bb47Copy full SHA for af1bb47
acl_loader/main.py
@@ -539,7 +539,7 @@ def deny_rule(self, table_name):
539
rule_props["PRIORITY"] = str(self.min_priority)
540
rule_props["PACKET_ACTION"] = "DROP"
541
if 'v6' in table_name.lower():
542
- rule_props["ETHER_TYPE"] = str(self.ethertype_map["ETHERTYPE_IPV6"])
+ rule_props["IP_TYPE"] = "IPV6ANY" # ETHERTYPE is not supported for DATAACLV6
543
else:
544
rule_props["ETHER_TYPE"] = str(self.ethertype_map["ETHERTYPE_IPV4"])
545
return rule_data
0 commit comments