From 77172b9f032f8df0564e33026178acd579c23cd4 Mon Sep 17 00:00:00 2001 From: Rohit Yadav Date: Tue, 1 May 2018 20:06:12 +0530 Subject: [PATCH] vr: create tables before applying egress iptables rules This fixes the issue that post-upgrade egress rules are not applied on VR, restarting the network with cleanup used to be the workaround. Signed-off-by: Rohit Yadav --- systemvm/debian/opt/cloud/bin/configure.py | 1 + 1 file changed, 1 insertion(+) diff --git a/systemvm/debian/opt/cloud/bin/configure.py b/systemvm/debian/opt/cloud/bin/configure.py index f9247ad852e..e023a9fb94e 100755 --- a/systemvm/debian/opt/cloud/bin/configure.py +++ b/systemvm/debian/opt/cloud/bin/configure.py @@ -957,6 +957,7 @@ class IpTablesExecutor: acls.process() acls = CsAcl('firewallrules', self.config) + acls.flushAllowAllEgressRules() acls.process() fwd = CsForwardingRules("forwardingrules", self.config)