Home > Linux, Security > Secure SSH with Fail2Ban

Secure SSH with Fail2Ban

October 7th, 2008 Leave a comment Go to comments
Secure SSH with Fail2Ban4.9515

Remote managing a server is important but I believe securing it is just as important.
Would you like to type “last” and just relize someone has just login into your server from a far country?
Well the solution is here!
We will be installing fail2ban, witch is capable of monitoring not just SSH but many other daemons.
It is quite cool, it send you an email after X attempts and include that bad IP into iptables for X amount of time.

Installing in Debian:

# apt-get install fail2ban


Installing in RedHat,CentOS,Fedora:

# wget http://downloads.sourceforge.net/project/fail2ban/fail2ban-stable/fail2ban-0.8.4/fail2ban-0.8.4.tar.bz2?use_mirror=ufpr
# tar -xjvf fail2ban-0.8.4.tar.bz2
# cd fail2ban-0.8.4
# python setup.py install
Autostart in RedHat,CentOS,Fedora
# cp files/redhat-initd /etc/init.d/fail2ban
# chkconfig –add fail2ban
# chkconfig fail2ban on
# service fail2ban start

Configuring Fail2ban:
Fail2ban is automatically configured for the most part. However, little items need to be tweaked. /etc/fail2ban/fail2ban.conf is responsible for general settings for fail2ban, such as what log to append to. More specific settings can be changed in /etc/fail2ban/jail.conf. However, it’s recommended that this file not be directly changed. Instead, make a copy to jail.local. The local file with override the .conf one.
# cp /etc/fail2ban/jail.conf /etc/fail2ban/jail.local
First, under [DEFAULT] find ignoreip. It’s always important for you to have a way in! These are IPs are fail2ban will ignore – IPs listed here can always have invalid login. These need to be space separated.
Check also the bantime, maxrety and other settings. I believe the bantime of only 10min ( 600 sec) is not enough to handle an attack,
so I raised it to 86400 (24 hours).Also adjust the logfiles path and names to your system.

#vim /etc/fail2ban/jail.local

[DEFAULT]

# “ignoreip” can be an IP address, a CIDR mask or a DNS host
ignoreip = 127.0.0.1 172.31.0.0/24 10.10.0.0/24 192.168.0.0/24
bantime = 86400
maxretry = 5

[ssh-iptables]
enabled = true
filter = sshd
action = iptables[name=SSH, port=ssh, protocol=tcp]
sendmail-whois[name=SSH, dest=you@mail.com, sender=fail2ban@mail.com]
logpath = /var/log/auth.log
maxretry = 5

logpath=/var/log/secure (for RedHat,CentOS,Fedora)

Then restart the service:
# /etc/init.d/fail2ban restart
or RedHat
# service fail2ban restart

And check your iptables:
# iptables -L

If you want to unblock someone just do:
# iptables -D fail2ban-ssh 1

Show failed SSH logins by date:
# cat /var/log/secure | grep ‘Failed password’ |  sort | uniq -c

There is also a cool nagios plugin

More on Fail2Ban

Appendix, Install email server: smail, sendmail:
#apt-get install smail
To configure:
#/usr/sbin/smailconfig
Test it:
#/usr/sbin/smailtest

Other Tips
HELP:
1.) stop the Service
/etc/init.d/fail2ban stop
2.) delete the socket if avalible
rm /tmp/fail2ban.sock
3.) start the Service
/etc/init.d/fail2ban start
4.) check if fail2ban is working
fail2ban-client ping
Answer should be “pong”
5.) if the answer is not “pong” run away or  CRY FOR HELP ;-)

VN:F [1.7.5_995]
Rating: 4.9/5 (15 votes cast)
  1. January 3rd, 2010 at 03:41 | #1

    Hey there, wanted to thank you for your script, it helped me to finetune my fail2ban, thanks

    UN:F [1.7.5_995]
    Rating: 1.0/5 (1 vote cast)
  2. February 10th, 2010 at 06:29 | #2

    It works !
    Afther lots of reading and your blog I finaly got.
    thanks alot :-)

    UN:F [1.7.5_995]
    Rating: 5.0/5 (1 vote cast)
  3. FrenchPie
    March 11th, 2010 at 01:05 | #3

    cat /var/log/secure | grep ‘Failed password’ | sort | uniq -c

    You could replace this horrible ‘useless use of cat’ (see uuoc.com) with :

    grep ‘Failed password’ /var/log/secure| sort -u |wc -l

    UN:F [1.7.5_995]
    Rating: 3.0/5 (2 votes cast)
  4. Aaron
    April 21st, 2010 at 19:07 | #4

    I followed the instructions for CentOS/RHEL, and I cannot get it to ban ssh attempts from another box, even though I copied your instructions.

    UN:F [1.7.5_995]
    Rating: 1.0/5 (1 vote cast)
  1. January 5th, 2010 at 16:50 | #1