Fail2ban scans log files (e.g. /var/log/apache/error_log) and bans IPs that show the malicious signs — too many password failures, seeking for exploits, etc. Generally Fail2Ban is then used to update firewall rules to reject the IP addresses for a specified amount of time, although any arbitrary other action (e.g. sending an email) could also be configured. Out of the box Fail2Ban comes with filters for various services (apache, courier, ssh, etc).
Fail2Ban is able to reduce the rate of incorrect authentications attempts however it cannot eliminate the risk that weak authentication presents. Configure services to use only two factor or public/private authentication mechanisms if you really want to protect services
BASIC
Command | Description | |
start | starts the server and the jails | |
reload | reloads the configuration | |
reload <JAIL> | reloads the jail <JAIL> | |
stop | stops all jails and terminate the server | |
status | gets the current status of the server | |
ping | tests if the server is alive | |
help | return this output |
Example – Show banned IP addresses
sudo fail2ban-client status
sudo fail2ban-client status
More cmd´s can be found here – https://www.fail2ban.org/wiki/index.php/Commands