Skip to Content

Installing Fail2ban on Ubuntu 18.04 (Bionic Beaver)

Installing Fail2ban on Ubuntu 18.04 (Bionic Beaver)

A highly condensed set of basic commands to install Fail2ban the traditional way.

These can be executed on any remote server/VPS running recent versions of Ubuntu; although the process was carried out by myself on 18.04. If you’re not familiar with Fail2ban, the start of this brief guide refers to two good resources you can read up on. One more up to date than the other.

The purpose of this post is to serve as background for a follow up post which uses Ansible to install the Fail2ban package and configuration more efficiently (linked at the end).

Installing Fail2ban

Several of the instructions for this process are taken and adapted from an older article on DigitalOcean. They’re intended for Ubuntu 14.04 but are still overall suitable on Bionic:

It might be better to read through this more up to date Linode article instead however to understand what Fail2ban is, how it works, and most importantly what different values to place into the configuration files. Otherwise, this may not make complete sense before doing so.

It may even be more preferable to follow the Linode guide in its entirety, but that’s up to you! See here: Linode – “Use Fail2ban to Secure Your Server”

On the remote Ubuntu server in question, update the system package index.

[alert-announce]$ sudo apt-get update -y[/alert-announce]

Download and acquire the fail2ban plus sendmail packages.

[alert-announce]

$ sudo apt-get install fail2ban sendmail

[/alert-announce]

Sendmail (if not present by default) is required for Fail2ban to generate notification emails.

Copy the base Fail2ban config into a new jail.local file, in order to begin adding in the config options we want to be overridden and applied:

[alert-announce]

$ sudo cp /etc/fail2ban/jail.conf /etc/fail2ban/jail.local

[/alert-announce]

Note: “Fail2ban reads .conf configuration files first, then .local files overriding any settings. Because of this, all changes to the configuration are generally done in .local files, leaving the .conf files untouched.”

Here’s where an understanding of the configuration is very much necessary.

Having a working firewall such as UFW on Ubuntu is also a background assumption I’m working with here, as the two can work together, and a firewall’s kinda mandatory anyway of course.

Open the newly copied jail.local file.

[alert-announce]

$ sudo vim /etc/fail2ban/jail.local

[/alert-announce]

Add in your sensible Fail2ban configuration blocks and values now; this is my example file contents, should you want to make use of them:

[alert-announce]

/etc/fail2ban/jail.local

  1. [DEFAULT]
  2. # email address to receive notifications.
  3. destemail = root@localhost
  4. # the email address from which to send emails.
  5. sender = root@<fq-hostname>
  6. # name on the notification emails.
  7. sendername = Fail2Ban
  8. # email transfer agent to use.
  9. mta = sendmail
  10. # see action.d/ufw.con
  11. actionban = ufw.conf
  12. # see action.d/ufw.conf
  13. actionunban = ufw.conf
  14. [sshd]
  15. enabled = true
  16. port = ssh
  17. filter = sshd
  18. # the length of time between login attempts for maxretry.
  19. findtime = 600
  20. # attempts from a single ip before a ban is imposed.
  21. maxretry = 5
  22. # the number of seconds that a host is banned for.
  23. bantime = 3600

[/alert-announce]

Note: “A host is banned if it has generated “maxretry” during the last “findtime”.”

Lastly here enable the Fail2ban service on system startup.

[alert-announce]

$ sudo systemctl service enable fail2ban

[/alert-announce]

Then start the service so it’s currently active.

[alert-announce]

$ sudo systemctl service start fail2ban

[/alert-announce]

Fail2ban is now up and running – assuming you entered proper configuration options and have no syntax errors.

As an alternate to using Systemd, restarting the entire Fail2ban server reports any runtime errors, should there be any issue, so…

[alert-announce]

$ fail2ban-client restart

[/alert-announce]

Fix any reported problems in the output, and then restart again.

There’s also a command to confirm the status of the server/jails.

Try it out:

[alert-announce]

$ fail2ban-client status

[/alert-announce]

More specific information about the sshd jail we created in the config file is retrievable with:

[alert-announce]

$ fail2ban-client status sshd

[/alert-announce]

Many more useful commands for you to explore are available, indexed at the following wiki: Fail2ban Client CLI Commands

Fail2ban is now installed, running, and working!

Add more jails and actions for other services to expand upon it.

The post leading on from this one achieves the same end result but using Ansible configuration management to do the job.