[caclmgrd] Fix application of IPv6 service ACL rules (part 2) (#4036)

This commit is contained in:
Joe LeVeque 2020-01-17 17:33:31 -08:00 committed by Ying Xie
parent 1886bdf7ad
commit aca1a86856

View File

@ -225,7 +225,9 @@ class ControlPlaneAclManager(object):
rule_cmd = "ip6tables" if table_ip_version == 6 else "iptables"
rule_cmd += " -A INPUT -p {}".format(ip_protocol)
if "SRC_IP" in rule_props and rule_props["SRC_IP"]:
if "SRC_IPV6" in rule_props and rule_props["SRC_IPV6"]:
rule_cmd += " -s {}".format(rule_props["SRC_IPV6"])
elif "SRC_IP" in rule_props and rule_props["SRC_IP"]:
rule_cmd += " -s {}".format(rule_props["SRC_IP"])
rule_cmd += " --dport {}".format(dst_port)