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"