From 5a6cf0fe3ac3c145bc72cb4f09c503323ac1f0cb Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Tue, 16 Jun 2020 12:20:33 +0000 Subject: [PATCH] Remove firewall nat chain clearing, refers to #171 --- internal/firewall/iptables.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/firewall/iptables.go b/internal/firewall/iptables.go index 78e92afb..f9bb80a3 100644 --- a/internal/firewall/iptables.go +++ b/internal/firewall/iptables.go @@ -48,8 +48,6 @@ func (c *configurator) Clear(ctx context.Context) error { return c.runIptablesInstructions(ctx, []string{ "--flush", "--delete-chain", - "-t nat --flush", - "-t nat --delete-chain", }) }