FreeSWITCH module for fail2ban
cd /usr/local/src/freeswitch/src/mod/applications
git clone https://github.com/kurtabersold/freeswitch-mod_fail2ban.git mod_fail2ban
cd mod_fail2ban
make && make install
copy fail2ban.conf.xml
to /usr/local/conf/autoload_configs/
By default, mod_fail2ban will log to /usr/local/freeswitch/log/fail2ban.log
If you need to change this, edit fail2ban.conf.xml
If you changed the log path in fail2ban.conf.xml
, change it now so it matches.
Copy the jail template to fail2ban's config directory
cp jail-freeswitch.conf /etc/fail2ban/jail.d/freeswitch.conf
Copy the filter template to fail2ban's config directory
cp filter-freeswitch.conf /etc/fail2ban/filter.d/freeswitch.conf
Restart fail2ban
systemctl restart fail2ban
In fs_cli
type load mod_fail2ban
Add <load module="mod_fail2ban"/>
to /usr/local/conf/autoload_configs/modules.conf.xml
Reload configuration
fs_cli -x 'reloadxml'
An example of how we can test the regex on the command line
fail2ban-regex '2016-08-10T14:34:09-0400 A registration failed User:1002 IP:50.149.72.66' 'A registration failed User:\d+ IP:<HOST>'
tail /usr/local/freeswitch/log/fail2ban.log
2016-08-10T17:57:54-0400 A registration was attempted User:1001 IP:50.149.72.66
2016-08-10T17:57:54-0400 A registration failed User:1001 IP:50.149.72.66
2016-08-10T17:57:54-0400 A registration was attempted User:1002 IP:50.149.72.66
2016-08-10T17:57:54-0400 A registration failed User:1002 IP:50.149.72.66
2016-08-10T17:58:03-0400 A preregistration was attempted User:1002 IP:50.149.72.66
2016-08-10T17:58:03-0400 A registration was attempted User:1002 IP:50.149.72.66
2016-08-10T17:58:03-0400 A registration failed User:1002 IP:50.149.72.66
2016-08-10T17:58:08-0400 A preregistration was attempted User:1001 IP:50.149.72.66
2016-08-10T17:58:08-0400 A registration was attempted User:1001 IP:50.149.72.66
2016-08-10T17:58:08-0400 A registration failed User:1001 IP:50.149.72.66
tail /var/log/fail2ban.log
2016-08-10 17:46:01,439 fail2ban.jail [23464]: INFO Jail 'freeswitch' started
2016-08-10 17:58:09,263 fail2ban.actions[23464]: WARNING [freeswitch] Ban 50.149.72.66
2016-08-10 18:08:09,907 fail2ban.actions[23464]: WARNING [freeswitch] Unban 50.149.72.66