From e833daec81acc0d07d80a72b9314e39531b7084a Mon Sep 17 00:00:00 2001 From: "Robert \"ar\" Gerus" Date: Sat, 23 Mar 2013 06:32:56 +0100 Subject: [PATCH] small fixes --- fw.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fw.sh b/fw.sh index f327af1..719f222 100755 --- a/fw.sh +++ b/fw.sh @@ -37,7 +37,7 @@ fw_test() { } fw_flush() { - # raw security + # We don't use (yet?) these tables: raw, security for table in filter nat mangle; do iptables --table ${table} --flush done @@ -52,6 +52,9 @@ case ${1} in apply) fw_apply ;; + flush) + fw_flush + ;; restore) fw_restore ;;