如何全局配置fail2ban电子邮件目的地

如何全局配置fail2ban电子邮件目的地

我希望fail2ban 向我发送任何事件的警报电子邮件。/etc/fail2ban和中的配置文件中似乎散布着 dest 变量/etc/fail2ban/action.d

有没有办法为所有事件设置一个目标电子邮件?我似乎找不到这方面的最新文档。

jam.local 包含:

# ban & send an e-mail with whois report to the destemail.
action_mw = %(banaction)s[name=%(__name__)s, bantime="%(bantime)s", port="%(port)s", protocol="%(protocol)s", chain="%(chain)s"]
            %(mta)s-whois[name=%(__name__)s, dest="%(destemail)s", protocol="%(protocol)s", chain="%(chain)s"]

但在哪里destemail设置呢?了解如何快速测试其是否正常工作也很有用destemail

答案1

看起来它在/etc/fail2ban/jail.local(在 centos 6.7 上)中,它是从jail.conf.

测试邮件投递是否正常的单行邮件将是

echo "My message" | mail -s subject [email protected]

相关内容