From: Michael Tremer Date: Thu, 21 Mar 2024 15:51:39 +0000 (+0100) Subject: firewall: Split OpenVPN INPUT chains for RW & N2N X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=02e29f0239e4114bc850922148792eff5287d2bb;p=people%2Fms%2Fipfire-2.x.git firewall: Split OpenVPN INPUT chains for RW & N2N Signed-off-by: Michael Tremer --- diff --git a/src/initscripts/system/firewall b/src/initscripts/system/firewall index 139d94aa0..597519ba7 100644 --- a/src/initscripts/system/firewall +++ b/src/initscripts/system/firewall @@ -319,9 +319,13 @@ iptables_init() { iptables -N WIRELESSFORWARD iptables -A FORWARD -m conntrack --ctstate NEW -j WIRELESSFORWARD - # OpenVPN - iptables -N OVPNINPUT - iptables -A INPUT -j OVPNINPUT + # OpenVPN Roadwarrior + iptables -N OVPNINPUTRW + iptables -A INPUT -j OVPNINPUTRW + + # OpenVPN N2N + iptables -N OVPNINPUTN2N + iptables -A INPUT -j OVPNINPUTN2N # Tor (outbound) iptables -N TOR_OUTPUT