From: Stefan Schantl <stefan.schantl@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 2/3] initscripts/suricata: Move functions order and always use flush_fw_chain function
Date: Thu, 25 Apr 2019 19:31:47 +0200 [thread overview]
Message-ID: <20190425173148.3868-2-stefan.schantl@ipfire.org> (raw)
In-Reply-To: <20190425173148.3868-1-stefan.schantl@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1181 bytes --]
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
src/initscripts/system/suricata | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/initscripts/system/suricata b/src/initscripts/system/suricata
index ecd693054..233cded53 100644
--- a/src/initscripts/system/suricata
+++ b/src/initscripts/system/suricata
@@ -48,12 +48,18 @@ function get_cpu_count {
echo $CPUCOUNT
}
+# Function to flush the firewall chain.
+function flush_fw_chain {
+ # Call iptables and flush the chain
+ iptables -F "$FW_CHAIN"
+}
+
# Function to create the firewall rules to pass the traffic to suricata.
function generate_fw_rules {
cpu_count=$(get_cpu_count)
# Flush the firewall chain.
- iptables -F "$FW_CHAIN"
+ flush_fw_chain
# Loop through the array of network zones.
for zone in "${network_zones[@]}"; do
@@ -103,12 +109,6 @@ function generate_fw_rules {
iptables -A "${FW_CHAIN}" -j MARK --set-xmark "0x0/${MASK}"
}
-# Function to flush the firewall chain.
-function flush_fw_chain {
- # Call iptables and flush the chain
- iptables -F "$FW_CHAIN"
-}
-
case "$1" in
start)
# Get amount of CPU cores.
--
2.20.1
next prev parent reply other threads:[~2019-04-25 17:31 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-25 17:31 [PATCH 1/3] firewall: Use seperate firewall chains for passing traffic to the IPS Stefan Schantl
2019-04-25 17:31 ` Stefan Schantl [this message]
2019-04-25 17:31 ` [PATCH 3/3] initscripts/suricata: Rework creation of firewall rules Stefan Schantl
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190425173148.3868-2-stefan.schantl@ipfire.org \
--to=stefan.schantl@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox