Categories: Development

Force SSH login to be key file only

How to force SSH key only access to your Linux system with password access being denied.

Creating SSH key access to Linux instead of a password.

Open the sshd config file for editing:

nano /etc/ssh/sshd_config

Find and set/ensure the following have these values:

PasswordAuthentication no
PubkeyAuthentication yes
UsePAM no
ChallengeResponseAuthentication no

Note Being commented out has no effect, it must be stated

#PasswordAuthentication no

Make sure it is:

PasswordAuthentication no

Press control + x then y and then enter to save.

Now restart the sshd service with:

service ssh restart

It is always best to check before you close the session that the sshd service accepts your key file, do this by opening up a new ssh session connecting with your private key file.

Share

Recent Posts

Kennington reservoir drained drone images

A drained and empty Kennington reservoir images from a drone in early July 2024. The…

2 years ago

Merrimu Reservoir drone images

Merrimu Reservoir from drone. Click images to view larger.

2 years ago

FTP getting array of file details such as size using PHP

Using FTP and PHP to get an array of file details such as size and…

3 years ago

Creating Laravel form requests

Creating and using Laravel form requests to create cleaner code, separation and reusability for your…

3 years ago

Improving the default Laravel login and register views

Improving the default Laravel login and register views in such a simple manner but making…

3 years ago

Laravel validation for checking if value exists in the database

Laravel validation for checking if a field value exists in the database. The validation rule…

3 years ago