One of the normal tasks of administrators is to keep track of successful and failed login attempts to ensure that the environment is free of unwanted and illegal intrusions. Administrators can also look through the logs to see if there have been any security problems on the servers. A log file is created whenever someone tries to log in to a server using SSH. You may see the requested login date, timestamp, user account, and IP address. SSH was created as a protocol for creating connections between two systems that rely on a client/server architecture, allowing administrators and users to access the server or computer remotely.

This protocol is most commonly used by the system and network administrators and anyone who wants to administer a computer remotely. One of the most prominent benefits is that it is in charge of encrypting the link session to improve security by prohibiting attackers from reading unencrypted passwords. The rsyslog daemon in Linux keeps track of every attempt to login to an SSH server and records it in a log file. Combining, showing, and filtering log files is the most basic approach for listing all failed SSH login attempts on Ubuntu. In this article, we will find all failed ssh login attempts in Ubuntu 20.04 Linux system.

Installation of SSH

To find all unsuccessful ssh login attempts in Ubuntu 20.04 Linux system, open the terminal. You may either type “terminal” into your search engine of the application area or press “CTRL ALT T” on your keyboard. Installing OpenSSH is a simple process. It needs a connection to the server’s terminal as well as the machine you are using to connect. You have to install it by typing the listed command in the terminal window of the Ubuntu 20.04 Linux system.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/08/echo/find-failed-ssh-login-attempts-Ubuntu-01.png" data-lazy- height="522" src="data:image/svg xml,” width=”974″>

When prompted, enter your sudo user password. After the hard disk prompt, Enter Y to begin the installation. If you press “N”, the installation will be stopped, and you have to execute the same command again.

Enable SSH

Once installation is done, you can enable ssh by typing the listed command in the terminal window.

$ sudo systemctl enable ssh

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/08/echo/find-failed-ssh-login-attempts-Ubuntu-02.png" data-lazy- height="100" src="data:image/svg xml,” width=”972″>

The execution of the above command will display an almost similar output as shown in the screenshot.

Start SSH

Now you are ready to start the ssh by executing the mentioned command in the terminal window of the Ubuntu 20.04 Linux system.

$ sudo systemctl start ssh

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/08/echo/find-failed-ssh-login-attempts-Ubuntu-03.png" data-lazy- height="35" src="data:image/svg xml,” width=”972″>

The above command will start the ssh.

Check Status of SSH

Type the following command to see if the SSH server is running on the Ubuntu 20.4 Linux system:

$ sudo systemctl status ssh

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/08/echo/find-failed-ssh-login-attempts-Ubuntu-04.png" data-lazy- height="510" src="data:image/svg xml,” width=”974″>

The output is displaying “Active”. This means all of our instructions are successfully executed.

List unsuccessful SSH logins

Execute some of the commands described in this tutorial to show a list of failed SSH logins in Ubuntu. Make sure you are running these instructions with root privileges.

The command shown below is the simplest way to list all unsuccessful SSH logins.

$ grep “Failed password” /var/log/auth.log

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/08/echo/find-failed-ssh-login-attempts-Ubuntu-05.png" data-lazy- height="29" src="data:image/svg xml,” width=”972″>

Another same command can be utilized for this purpose with the keyword “cat”. Execute it in the terminal as:

$ cat /var/log/auth.log | grep “Failed password.”

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/08/echo/find-failed-ssh-login-attempts-Ubuntu-06.png" data-lazy- height="89" src="data:image/svg xml,” width=”972″>

If you want to get more information about unsuccessful SSH logins on Linux, run the command appended below.

$ egrep “Failed|Failure” /var/log/auth.log

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/08/echo/find-failed-ssh-login-attempts-Ubuntu-07.png" data-lazy- height="581" src="data:image/svg xml,” width=”974″>

The details are much more comprehensive, as you can view from the above-displayed screenshot.

Conclusion

In this guide, we have explained the importance of ssh in the Ubuntu 20.04 system. Along with that, we have listed a way to install ssh on Ubuntu 20.04 system by using the apt command. By checking and following this tutorial, you will be able to find all failed ssh login attempts in the Ubuntu 20.04 Linux system. I hope this guide will be supportive for you during your relevant work.

About the author

<img alt="" data-lazy-src="https://secure.gravatar.com/avatar/d014e3711df41253029f4d4199698df8?s=112&r=g" data-lazy- height="112" src="data:image/svg xml,” width=”112″>

Kalsoom Akhtar

Hello, I am a freelance writer and usually write for Linux and other technology related content