Merge "NSX|V: Do not add NAT rules in router firewall with FWAAS"
This commit is contained in:
commit
bb07367c0c
@ -3619,15 +3619,14 @@ class NsxVPluginV2(addr_pair_db.AllowedAddressPairsMixin,
|
|||||||
fw_rules += nsx_v_md_proxy.get_router_fw_rules()
|
fw_rules += nsx_v_md_proxy.get_router_fw_rules()
|
||||||
|
|
||||||
# Add fw rules if FWaaS is enabled
|
# Add fw rules if FWaaS is enabled
|
||||||
allow_external = True
|
router_with_firewall = False
|
||||||
if (self.fwaas_callbacks.should_apply_firewall_to_router(
|
if (self.fwaas_callbacks.should_apply_firewall_to_router(
|
||||||
context, router, router_id)):
|
context, router, router_id)):
|
||||||
fw_rules.extend(self.fwaas_callbacks.get_fwaas_rules_for_router(
|
fw_rules.extend(self.fwaas_callbacks.get_fwaas_rules_for_router(
|
||||||
context, router['id']))
|
context, router['id']))
|
||||||
# If we have a firewall we shouldn't add the default
|
router_with_firewall = True
|
||||||
# allow-external rule
|
|
||||||
allow_external = False
|
|
||||||
|
|
||||||
|
if not router_with_firewall:
|
||||||
# Add FW rule to open dnat firewall flows
|
# Add FW rule to open dnat firewall flows
|
||||||
_, dnat_rules = self._get_nat_rules(context, router)
|
_, dnat_rules = self._get_nat_rules(context, router)
|
||||||
dnat_cidrs = [rule['dst'] for rule in dnat_rules]
|
dnat_cidrs = [rule['dst'] for rule in dnat_rules]
|
||||||
@ -3663,6 +3662,9 @@ class NsxVPluginV2(addr_pair_db.AllowedAddressPairsMixin,
|
|||||||
|
|
||||||
fw = {'firewall_rule_list': fw_rules}
|
fw = {'firewall_rule_list': fw_rules}
|
||||||
try:
|
try:
|
||||||
|
# If we have a firewall we shouldn't add the default
|
||||||
|
# allow-external rule
|
||||||
|
allow_external = False if router_with_firewall else True
|
||||||
edge_utils.update_firewall(self.nsx_v, context, router_id, fw,
|
edge_utils.update_firewall(self.nsx_v, context, router_id, fw,
|
||||||
allow_external=allow_external)
|
allow_external=allow_external)
|
||||||
except vsh_exc.ResourceNotFound:
|
except vsh_exc.ResourceNotFound:
|
||||||
|
Loading…
Reference in New Issue
Block a user