From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 3/6] firewall: Enable SYNPROXY for untracked packets Date: Thu, 18 Apr 2024 21:11:41 +0000 Message-ID: <20240418211144.3318938-3-michael.tremer@ipfire.org> In-Reply-To: <20240418211144.3318938-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5768521668679965761==" List-Id: --===============5768521668679965761== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit This enables some DoS protection using SYNPROXY which will complete a SYN handshake with the client before the connection is being forwarded. Signed-off-by: Michael Tremer --- src/initscripts/system/firewall | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/initscripts/system/firewall b/src/initscripts/system/firewall index 054d58c01..1250b9ff4 100644 --- a/src/initscripts/system/firewall +++ b/src/initscripts/system/firewall @@ -46,6 +46,20 @@ IPS_BYPASS_MASK="0x40000000" IPSET_DB_DIR="/var/lib/location/ipset" +SYNPROXY_OPTIONS=( + # Allow clients to use Selective ACKs + "--sack-perm" + + # Allow TCP Timestamps + #"--timestamp" + + # Window Scaling + "--wscale" "9" + + # Maximum Segment Size + "--mss" "1460" +) + function iptables() { /sbin/iptables --wait "$@" } @@ -151,6 +165,8 @@ iptables_init() { iptables -N CTINPUT iptables -A CTINPUT -m conntrack --ctstate ESTABLISHED -j ACCEPT + iptables -A CTINPUT -m conntrack --ctstate INVALID,UNTRACKED \ + -p tcp -j SYNPROXY "${SYNPROXY_OPTIONS[@]}" iptables -A CTINPUT -m conntrack --ctstate INVALID -j CTINVALID iptables -A CTINPUT -p icmp -m conntrack --ctstate RELATED -j ACCEPT -- 2.39.2 --===============5768521668679965761==--