From aabfc0c0d6cb9e41b0a45b19fd24e81e40b6f0c9 Mon Sep 17 00:00:00 2001 From: "bbruns@gmail.com" Date: Sat, 29 Mar 2014 17:55:38 +0000 Subject: [PATCH] --- bin/srfirewall | 4 ++++ etc/chains.conf | 1 + 2 files changed, 5 insertions(+) diff --git a/bin/srfirewall b/bin/srfirewall index a356b86..c2056d2 100755 --- a/bin/srfirewall +++ b/bin/srfirewall @@ -66,4 +66,8 @@ fi if [[ "${EnableIPv6}" == "yes" ]]; then # First flush all rules iptables_rules_flush ipv6 + + # Create the chain sets we'll need and the ones that can be + # customized by users in their custom rules + setup_iptables_chains ipv6 fi diff --git a/etc/chains.conf b/etc/chains.conf index 1ef6404..54049b4 100644 --- a/etc/chains.conf +++ b/etc/chains.conf @@ -8,6 +8,7 @@ InEasyBlock="In-EasyBlock" OutEasyBlock="Out-EasyBlock" InFilter="In-Filter" OutFilter="Out-Filter" +FwdFilter="Fwd-Filter" NAT="NAT" PortForward="PortForward" InPostRules="In-PostRules"