Updated News Around the World

How to install fail2ban on Rocky Linux and AlmaLinux

Fail2ban should be on every one of your Linux servers. If you’ve yet to install it on either Rocky Linux or AlmaLinux, Jack Wallen is here to help you out with that.

data security

Image: Anawat Sudchanham/EyeEm/Getty Images

Fail2ban is one of the first pieces of software I install on Linux servers. This service will help prevent unwanted logins by banning nefarious IP addresses from gaining access to your server. Unlike installing fail2ban on Ubuntu Servers, you have to take an extra step with RHEL-based servers. I’m going to walk you through that very thing, demonstrating the process that will help you get fail2ban installed on either Rocky Linux or AlmaLinux.

The process will install both fail2ban and the necessary firewalld package to allow the service to run on the systems.

What you’ll need

The only things you need to make this work are:

That’s it. Let’s get to work.

SEE: Security incident response policy (TechRepublic Premium)

How to enable firewalld

Out of the box, firewalld might not be running. To fix that, open a terminal window on your server and issue the command:

sudo systemctl start firewalld

Next, enable the firewall service to run at boot with:

sudo systemctl enable firewalld

How to install fail2ban

We can now install both fail2ban and the firewalld package. Back at the terminal window, add the EPEL repository with the command:

sudo dnf install epel-release -y

Once that repository is added, install fail2ban and the firewalld component with:

sudo dnf install fail2ban fail2ban-firewalld -y

Start and enable fail2ban with the commands;

sudo systemctl start fail2ban
sudo systemctl enable fail2ban

How to configure fail2ban

With fail2ban installed, it’s time to configure it. First, we need to create a copy of the default configuration file with the command:

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

Open that file for editing with the command:

sudo nano /etc/fail2ban/jail.local

In that file, look for the following options (in the [DEFAULT] section) and change them to reflect what you see below:

bantime = 1h
findtime = 1h
maxretry = 5

Save and close the file. 

Next, we need to allow fail2ban to work with firewalld (instead of iptables) with the command:

sudo mv /etc/fail2ban/jail.d/00-firewalld.conf /etc/fail2ban/jail.d/00-firewalld.local

Restart fail2ban with:

sudo systemctl restart fail2ban

How to create an SSH jail

We’ll now create a jail configuration for the SSH server that will ban IP addresses for 1 day after 3 failed attempts at logging in. Create the new configuration with the command:

sudo nano /etc/fail2ban/jail.d/sshd.local

Paste the following into that new file:

[sshd]
enabled = true
bantime = 1d
maxretry = 3

Save and close the file. Restart fail2ban:

sudo systemctl restart fail2ban

At this point, fail2ban is now protecting from nefarious SSH connections. You can test it by attempting to log in with SSH using an incorrect password. After three attempts, you’ll be locked out for one day. If you do get locked out, you can unban your IP address with the command:

sudo fail2ban-client unban ADDRESS

Where ADDRESS is the banned IP address.

And that’s all there is to installing fail2ban on either Rocky Linux or AlmaLinux. Enjoy that heightened sense of security (just don’t rely on fail2ban for all your security needs).

Also see

For all the latest Technology News Click Here 

 For the latest news and updates, follow us on Google News

Read original article here

Denial of responsibility! NewsUpdate is an automatic aggregator around the global media. All the content are available free on Internet. We have just arranged it in one platform for educational purpose only. In each content, the hyperlink to the primary source is specified. All trademarks belong to their rightful owners, all materials to their authors. If you are the owner of the content and do not want us to publish your materials on our website, please contact us by email – [email protected]. The content will be deleted within 24 hours.