HOWTO Setup fail2ban: Difference between revisions
Line 12: | Line 12: | ||
==Configuring fail2ban== | ==Configuring fail2ban== | ||
Scroll to section "[ssh-iptables]" and enable it: | |||
###enabled = false | |||
enabled = true | |||
Change the the SSH logfile we want to scan: | |||
###logpath = /var/log/sshd.log | |||
logpath = /var/log/auth.log | logpath = /var/log/auth.log | ||
Change how we monitor failures, preferring a file-alteration monitor over polling: | |||
###backend = auto | ###backend = auto | ||
backend = gamin | backend = gamin |
Revision as of 18:35, 22 January 2008
What fail2ban does
Fail2ban parses logfiles, and finds repeated-failures for various services. Once a specified number of failures within a given time is reached, the fail2ban makes an iptables-entry for you, banning (blocking) that IP-address. After a configurable length of time, the IP-address is unblocked.
Why we want fail2ban
One alternative is denyhosts, which requires tcpwrappers, and makes entries in your /etc/hosts.deny file. The problem is that regular-expressions are not supplied to filter more than SSH, and denyhosts can only scan a single log-file. One advantage of denyhosts is that it doesn't require iptables.
Our Gentoo systems use syslog-ng, with separate (from /var/log/messages) SSH auth.log file. Often, we supply vsftpd connectivity for users, which uses another separate log-file. We may also add other services.
So, the flexibility and integration with iptables is a major benefit.
Installing fail2ban
emerge -v fail2ban emacs -nw /etc/fail2ban/jail.conf
Configuring fail2ban
Scroll to section "[ssh-iptables]" and enable it:
###enabled = false enabled = true
Change the the SSH logfile we want to scan:
###logpath = /var/log/sshd.log logpath = /var/log/auth.log
Change how we monitor failures, preferring a file-alteration monitor over polling:
###backend = auto backend = gamin
Comment out the "mail-whois" actions.
Running fail2ban
root@hostname ~ # /etc/init.d/fail2ban start * Starting fail2ban
root@hostname ~ # rc-update add fail2ban default * fail2ban added to runlevel default
Monitoring and Verifying fail2ban
Check the log file:
# tail /var/log/fail2ban.log
and
# tail -f /var/log/fail2ban.log
Check Iptables:
# iptables -L
Example output, for a web-server (port 80 open), with SSH and FTP services too:
Chain INPUT (policy DROP) target prot opt source destination fail2ban-VSFTPD tcp -- anywhere anywhere tcp dpt:ftp fail2ban-SSH tcp -- anywhere anywhere tcp dpt:ssh ACCEPT all -- anywhere anywhere DROP all -- anywhere anywhere state INVALID ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:ftp-data ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:ftp ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:ssh ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:http Chain FORWARD (policy DROP) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination ACCEPT all -- anywhere anywhere ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED Chain fail2ban-SSH (1 references) target prot opt source destination DROP all -- sr-01504.iat.sfu.ca anywhere RETURN all -- anywhere anywhere Chain fail2ban-VSFTPD (1 references) target prot opt source destination RETURN all -- anywhere anywhere