From 7503e570630935a0053b38613effb712736f9c15 Mon Sep 17 00:00:00 2001 From: ppom <> Date: Mon, 27 Nov 2023 12:00:00 +0100 Subject: [PATCH] fix example --- config/example.jsonnet | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/example.jsonnet b/config/example.jsonnet index 6c20c6d..a2373e4 100644 --- a/config/example.jsonnet +++ b/config/example.jsonnet @@ -70,10 +70,10 @@ local iptables(args) = ['ip46tables', '-w'] + args; actions: { // actions have a user-defined name ban: { - cmd: iptables(['-A', 'reaction', '-s', '', '-j', 'reaction-log-refuse']), + cmd: iptables(['-A', 'reaction', '-s', '', '-j', 'DROP']), }, unban: { - cmd: iptables(['-D', 'reaction', '-s', '', '-j', 'reaction-log-refuse']), + cmd: iptables(['-D', 'reaction', '-s', '', '-j', 'DROP']), // if after is defined, the action will not take place immediately, but after a specified duration // same format as retryperiod after: '48h',