public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/6] firewall: Split CONNTRACK chain
@ 2024-04-18 21:11 Michael Tremer
  2024-04-18 21:11 ` [PATCH 2/6] firewall: Don't filter output INVALID packets Michael Tremer
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Michael Tremer @ 2024-04-18 21:11 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1647 bytes --]

This is preparation to handle incoming/outgoing packets differently.

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 src/initscripts/system/firewall | 19 ++++++++++++-------
 1 file changed, 12 insertions(+), 7 deletions(-)

diff --git a/src/initscripts/system/firewall b/src/initscripts/system/firewall
index 69bdcb594..d14466ef0 100644
--- a/src/initscripts/system/firewall
+++ b/src/initscripts/system/firewall
@@ -149,10 +149,15 @@ iptables_init() {
 	fi
 	iptables -A CTINVALID  -j DROP -m comment --comment "DROP_CTINVALID"
 
-	iptables -N CONNTRACK
-	iptables -A CONNTRACK -m conntrack --ctstate ESTABLISHED -j ACCEPT
-	iptables -A CONNTRACK -m conntrack --ctstate INVALID -j CTINVALID
-	iptables -A CONNTRACK -p icmp -m conntrack --ctstate RELATED -j ACCEPT
+	iptables -N CTINPUT
+	iptables -A CTINPUT -m conntrack --ctstate ESTABLISHED -j ACCEPT
+	iptables -A CTINPUT -m conntrack --ctstate INVALID -j CTINVALID
+	iptables -A CTINPUT -p icmp -m conntrack --ctstate RELATED -j ACCEPT
+
+	iptables -N CTOUTPUT
+	iptables -A CTOUTPUT -m conntrack --ctstate ESTABLISHED -j ACCEPT
+	iptables -A CTOUTPUT -m conntrack --ctstate INVALID -j CTINVALID
+	iptables -A CTOUTPUT -p icmp -m conntrack --ctstate RELATED -j ACCEPT
 
 	# Restore any connection marks
 	iptables -t mangle -A PREROUTING -j CONNMARK --restore-mark
@@ -261,9 +266,9 @@ iptables_init() {
 	done
 
 	# Accept everything connected
-	for i in INPUT FORWARD OUTPUT; do
-		iptables -A ${i} -j CONNTRACK
-	done
+	iptables -A INPUT   -j CTINPUT
+	iptables -A FORWARD -j CTINPUT
+	iptables -A OUTPUT  -j CTOUTPUT
 
 	# Allow DHCP
 	iptables -N DHCPINPUT
-- 
2.39.2


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-04-18 21:11 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
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 ` [PATCH 5/6] firewall: Implement generating SYNPROXY rules Michael Tremer
2024-04-18 21:11 ` [PATCH 6/6] sysctl: Conntrack: Disable picking up loose TCP connections Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox