From cbd6464b88a027b535c7ea553ac3f5868490d2e6 Mon Sep 17 00:00:00 2001 From: Wilder Rodrigues Date: Tue, 13 Oct 2015 12:24:42 +0200 Subject: [PATCH] CLOUDSTACK-8947 - FW_EGRESS should be added only to filter table --- systemvm/patches/debian/config/opt/cloud/bin/configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systemvm/patches/debian/config/opt/cloud/bin/configure.py b/systemvm/patches/debian/config/opt/cloud/bin/configure.py index 55a4b942bd0..a8a7fc0679b 100755 --- a/systemvm/patches/debian/config/opt/cloud/bin/configure.py +++ b/systemvm/patches/debian/config/opt/cloud/bin/configure.py @@ -148,7 +148,7 @@ class CsAcl(CsDataBag): " -m %s " % rule['protocol'] + \ " --dport %s" % rnge - self.fw.append(["filter", "front", "%s -j %s" % (fwr, rule['action'])]) + self.fw.append(["filter", "", "%s -j %s" % (fwr, rule['action'])]) logging.debug("EGRESS rule configured for protocol ==> %s, action ==> %s", rule['protocol'], rule['action'])