From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 5/6] firewall: Implement generating SYNPROXY rules
Date: Thu, 18 Apr 2024 21:11:43 +0000 [thread overview]
Message-ID: <20240418211144.3318938-5-michael.tremer@ipfire.org> (raw)
In-Reply-To: <20240418211144.3318938-1-michael.tremer@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1996 bytes --]
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
config/firewall/rules.pl | 12 ++++++++++++
src/initscripts/system/firewall | 4 ++++
2 files changed, 16 insertions(+)
diff --git a/config/firewall/rules.pl b/config/firewall/rules.pl
index a47c260a1..e38f77242 100644
--- a/config/firewall/rules.pl
+++ b/config/firewall/rules.pl
@@ -297,6 +297,9 @@ sub buildrules {
$NAT_MODE = uc($$hash{$key}[31]);
}
+ # Enable SYN flood protection?
+ my $SYN_FLOOD_PROTECTION = 0;
+
# Set up time constraints.
my @time_options = ();
if ($$hash{$key}[18] eq 'ON') {
@@ -370,6 +373,11 @@ sub buildrules {
}
}
+ # DoS Protection
+ if (($elements ge 38) && ($$hash{$key}[37] eq "ON")) {
+ $SYN_FLOOD_PROTECTION = 1;
+ }
+
# Check which protocols are used in this rule and so that we can
# later group rules by protocols.
my @protocols = &get_protocols($hash, $key);
@@ -608,6 +616,10 @@ sub buildrules {
}
run("$IPTABLES -A $chain @options @source_intf_options @destination_intf_options -j $target");
+ if ($SYN_FLOOD_PROTECTION && ($protocol eq "tcp")) {
+ run("$IPTABLES -t raw -A SYN_FLOOD_PROTECT @options -j CT --notrack");
+ }
+
# Handle forwarding rules and add corresponding rules for firewall access.
if ($chain eq $CHAIN_FORWARD) {
# If the firewall is part of the destination subnet and access to the destination network
diff --git a/src/initscripts/system/firewall b/src/initscripts/system/firewall
index 1250b9ff4..6727e4a20 100644
--- a/src/initscripts/system/firewall
+++ b/src/initscripts/system/firewall
@@ -407,6 +407,10 @@ iptables_init() {
iptables -t nat -N REDNAT
iptables -t nat -A POSTROUTING -j REDNAT
+ # SYN Flood Protection
+ iptables -t raw -N SYN_FLOOD_PROTECT
+ iptables -t raw -A PREROUTING -p tcp --syn -j SYN_FLOOD_PROTECT
+
# Populate IPsec chains
/usr/lib/firewall/ipsec-policy
--
2.39.2
next prev parent reply other threads:[~2024-04-18 21:11 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-18 21:11 [PATCH 1/6] firewall: Split CONNTRACK chain Michael Tremer
2024-04-18 21:11 ` [PATCH 2/6] firewall: Don't filter output INVALID packets Michael Tremer
2024-04-18 21:11 ` [PATCH 3/6] firewall: Enable SYNPROXY for untracked packets Michael Tremer
2024-04-18 21:11 ` [PATCH 4/6] firewall.cgi: Add a checkbox to enable SYN flood protection Michael Tremer
2024-04-18 21:11 ` Michael Tremer [this message]
2024-04-18 21:11 ` [PATCH 6/6] sysctl: Conntrack: Disable picking up loose TCP connections Michael Tremer
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=20240418211144.3318938-5-michael.tremer@ipfire.org \
--to=michael.tremer@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