fully comment the example configuration

This commit is contained in:
ppom 2023-04-12 10:29:29 +02:00
parent 647ce980ca
commit a0aa61471a

View File

@ -1,26 +1,44 @@
--- ---
# TODO heavily comment this file # TODO heavily comment this file
# definitions are just a place to put chunks of conf you want to reuse in another place
# they're not readed by reaction
definitions: definitions:
- &iptablesban [ "iptables" "-w" "-I" "reaction" "1" "-s" "<ip>" "-j" "block" ] - &iptablesban [ "iptables" "-w" "-I" "reaction" "1" "-s" "<ip>" "-j" "block" ]
- &iptablesunban [ "iptables" "-w" "-D" "reaction" "1" "-s" "<ip>" "-j" "block" ] - &iptablesunban [ "iptables" "-w" "-D" "reaction" "1" "-s" "<ip>" "-j" "block" ]
# patterns are substitued in regexes.
# when a filter performs an action, it replaces the found pattern
patterns: patterns:
ip: '(([0-9]{1,3}\.){3}[0-9]{1,3})|([0-9a-fA-F:]{2,90})' ip: '(([0-9]{1,3}\.){3}[0-9]{1,3})|([0-9a-fA-F:]{2,90})'
# streams are command that are run
# their output will be used by one or more filters
streams: streams:
# streams have a user-defined name
ssh: ssh:
# note that if the command is not in environment's `PATH` # note that if the command is not in environment's `PATH`
# its full path must be given. # its full path must be given.
cmd: [ "journalctl" "-fu" "sshd.service" ] cmd: [ "journalctl" "-fu" "sshd.service" ]
# filters are a set of regexes on a stream
# when a regex matches, it will trigger the filter's actions
filters: filters:
# filters have a user-defined name
failedlogin: failedlogin:
regex: regex:
- authentication failure;.*rhost=<ip> - authentication failure;.*rhost=<ip>
# if retry and retry-period are defined,
# the actions will only take place if a same pattern is
# found `retry` times in a `retry-period` interval
retry: 3 retry: 3
# format is defined here: https://pkg.go.dev/time#ParseDuration
retry-period: 6h retry-period: 6h
actions: actions:
# actions have a user-defined name
ban: ban:
# YAML substitutes *reference by the value at &reference
cmd: *iptablesban cmd: *iptablesban
unban: unban:
cmd: *iptablesunban cmd: *iptablesunban
# if after is defined, the action will not take place immediately, but after a specified duration.
# same format as retry-period
after: 2d after: 2d