From 2c4b9c5004f0db606612eba3965846d4a2623296 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 12 Aug 2015 12:44:26 +0100 Subject: [PATCH] firewall: Fix amanda helper This helper requires setting a layer 4 protocol. Signed-off-by: Michael Tremer --- src/initscripts/init.d/firewall | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/initscripts/init.d/firewall b/src/initscripts/init.d/firewall index 978ac499ff..5b193c2c3b 100644 --- a/src/initscripts/init.d/firewall +++ b/src/initscripts/init.d/firewall @@ -149,7 +149,7 @@ iptables_init() { if [ "${CONNTRACK_AMANDA}" = "on" ]; then iptables -A CONNTRACK -m conntrack --ctstate RELATED \ -m helper --helper amanda -j ACCEPT - iptables -t raw -A CONNTRACK -j CT --helper amanda + iptables -t raw -A CONNTRACK -p tcp -j CT --helper amanda fi # Fix for braindead ISP's -- 2.39.5