FEATURE Split config

From Fail2ban
Revision as of 23:25, 16 May 2006 by Lostcontrol (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Split configuration file

Fail2ban has a unique configuration file /etc/fail2ban.conf until 0.7.0. This file is quite big with several kind of parameters: general settings, mail settings, section settings, etc. It would be better to split this configuration file into several ones.

  • Every configuration files will be stored in the /etc/fail2ban directory.
  • /etc/fail2ban/fail2ban.conf (file) will contain the general settings.
  • /etc/fail2ban/notification.conf (file) will contain the notification settings (e-mail).
  • /etc/fail2ban/pattern.d (dir) will contain regular expression templates.
    • /etc/fail2ban/pattern.d/standard-date.conf (file) will contain a regular expression matching a standard date format.
  • /etc/fail2ban/filter.d (dir) will contain the filter settings. The files included in this directory can benefit from the templates in /etc/fail2ban/pattern.d.
    • /etc/fail2ban/filter.d/sshd.conf (file) will contain filter settings for OpenSSH server.
    • /etc/fail2ban/filter.d/apache-auth.conf (file) will contain filter settings for Apache authentication.
  • /etc/fail2ban/action.d (dir) will contain the action settings.
    • /etc/fail2ban/action.d/iptables.conf (file) will contain the settings for banning an IP address using Netfilter/Iptables.
    • /etc/fail2ban/action.d/hosts.conf (file) will contain the settings for banning an IP address using TCPWrapper.
  • /etc/fail2ban/jail.d (dir) will contain jail definition. This is a combination of filter and actions.