From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 2/3] firewall: Fixes bug12981 - add if loop to log or not log dropped hostile traffic
Date: Tue, 26 Dec 2023 20:46:23 +0100 [thread overview]
Message-ID: <20231226194624.3273192-2-adolf.belka@ipfire.org> (raw)
In-Reply-To: <20231226194624.3273192-1-adolf.belka@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 988 bytes --]
- Dependent on the choice in optionsfw.cgi this loop will either log or not log the
dropped hostile traffic.
Fixes: bug12981
Tested-by: Adolf Belka <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
src/initscripts/system/firewall | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/initscripts/system/firewall b/src/initscripts/system/firewall
index 50f2b3e02..352ae2496 100644
--- a/src/initscripts/system/firewall
+++ b/src/initscripts/system/firewall
@@ -177,7 +177,9 @@ iptables_init() {
iptables -A OUTPUT -j HOSTILE
iptables -N HOSTILE_DROP
- iptables -A HOSTILE_DROP -m limit --limit 10/second -j LOG --log-prefix "DROP_HOSTILE "
+ if [ "$LOGDROPHOSTILE" == "on" ]; then
+ iptables -A HOSTILE_DROP -m limit --limit 10/second -j LOG --log-prefix "DROP_HOSTILE "
+ fi
iptables -A HOSTILE_DROP -j DROP -m comment --comment "DROP_HOSTILE"
# IP Address Blocklist chains
--
2.43.0
next prev parent reply other threads:[~2023-12-26 19:46 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-26 19:46 [PATCH 1/3] optionsfw.cgi: Fix bug12981 - Add option " Adolf Belka
2023-12-26 19:46 ` Adolf Belka [this message]
2023-12-26 19:46 ` [PATCH 3/3] en.pl: Fixes bug12981 - adds english language input for choice of drop hostile logging Adolf Belka
[not found] <e2a87fdc-48b1-483b-ab58-8b85166c6817@ipfire.org>
2023-12-27 12:49 ` [PATCH 2/3] firewall: Fixes bug12981 - add if loop to log or not log dropped hostile traffic Adolf Belka
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=20231226194624.3273192-2-adolf.belka@ipfire.org \
--to=adolf.belka@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