* [PATCH] firewall: Load ipset list before creating rules for DROP_HOSTILE.
@ 2022-02-18 5:03 Stefan Schantl
2022-02-18 8:26 ` Michael Tremer
0 siblings, 1 reply; 2+ messages in thread
From: Stefan Schantl @ 2022-02-18 5:03 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1180 bytes --]
Otherwise there is no ipset list use-able and the feature will not work.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
src/initscripts/system/firewall | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/src/initscripts/system/firewall b/src/initscripts/system/firewall
index adb2240bb..2ae6157aa 100644
--- a/src/initscripts/system/firewall
+++ b/src/initscripts/system/firewall
@@ -22,6 +22,8 @@ IPS_REPEAT_MASK="0x80000000"
IPS_BYPASS_MARK="0x40000000"
IPS_BYPASS_MASK="0x40000000"
+IPSET_DB_DIR="/var/lib/location/ipset"
+
function iptables() {
/sbin/iptables --wait "$@"
}
@@ -146,6 +148,9 @@ iptables_init() {
# a technical threat to our users (i. e. listed at Spamhaus DROP et al.)
iptables -N HOSTILE
if [ "$DROPHOSTILE" == "on" ]; then
+ # Call ipset and load the list which contains the hostile networks.
+ ipset restore < $IPSET_DB_DIR/CC_XD.ipset4
+
iptables -A HOSTILE -m limit --limit 10/second -j LOG --log-prefix "DROP_HOSTILE "
iptables -A INPUT -i $IFACE -m set --match-set CC_XD src -j HOSTILE
iptables -A FORWARD -i $IFACE -m set --match-set CC_XD src -j HOSTILE
--
2.30.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] firewall: Load ipset list before creating rules for DROP_HOSTILE.
2022-02-18 5:03 [PATCH] firewall: Load ipset list before creating rules for DROP_HOSTILE Stefan Schantl
@ 2022-02-18 8:26 ` Michael Tremer
0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2022-02-18 8:26 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1380 bytes --]
Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
> On 18 Feb 2022, at 05:03, Stefan Schantl <stefan.schantl(a)ipfire.org> wrote:
>
> Otherwise there is no ipset list use-able and the feature will not work.
>
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
> src/initscripts/system/firewall | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/src/initscripts/system/firewall b/src/initscripts/system/firewall
> index adb2240bb..2ae6157aa 100644
> --- a/src/initscripts/system/firewall
> +++ b/src/initscripts/system/firewall
> @@ -22,6 +22,8 @@ IPS_REPEAT_MASK="0x80000000"
> IPS_BYPASS_MARK="0x40000000"
> IPS_BYPASS_MASK="0x40000000"
>
> +IPSET_DB_DIR="/var/lib/location/ipset"
> +
> function iptables() {
> /sbin/iptables --wait "$@"
> }
> @@ -146,6 +148,9 @@ iptables_init() {
> # a technical threat to our users (i. e. listed at Spamhaus DROP et al.)
> iptables -N HOSTILE
> if [ "$DROPHOSTILE" == "on" ]; then
> + # Call ipset and load the list which contains the hostile networks.
> + ipset restore < $IPSET_DB_DIR/CC_XD.ipset4
> +
> iptables -A HOSTILE -m limit --limit 10/second -j LOG --log-prefix "DROP_HOSTILE "
> iptables -A INPUT -i $IFACE -m set --match-set CC_XD src -j HOSTILE
> iptables -A FORWARD -i $IFACE -m set --match-set CC_XD src -j HOSTILE
> --
> 2.30.2
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-02-18 8:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-18 5:03 [PATCH] firewall: Load ipset list before creating rules for DROP_HOSTILE Stefan Schantl
2022-02-18 8:26 ` Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox