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',