Puppet module for fail2ban configuration.
This module is intended to be used to manage the fail2ban configurations.
Configuration
class { fail2ban: }
- jails: list of jails to configure, currently supported jails are imap, pop3, ssh, vsftpd
- mailto: mail address to send notifications
This is a simple example to configure fail2ban with an SSH jail.
Using the fail2ban ssh jail
class { 'fail2ban':
jails => ['ssh'],
mailto => 'root@example.com',
}
0.1.0
- Initial version