Quantcast
Image

Search Results for: copy-public-key

How to SSH without password

By  •  December 2, 2021

We usually login to a remote SSH server using password authentication method. Username and password combination is the most common authentication method for SSH and is a suitable method …
Read More

How to use public key authentication in PuTTY

By  •  December 2, 2021

Public Key Authentication is one of the methods to connect to an OpenSSH server. It requires the use of public and private key pairs, where the private key needs …
Read More

How to configure passwordless SSH login

By  •  May 28, 2018

You can login to an SSH server without password by using public key authentication via these steps;

  1. Generate an SSH key pair. Make sure to not set any passphrase for the key pair

  2. Enable public key authentication in the target server

  3. Copy your SSH public key to the server

You will no longer be prompted for password the next time you log in to the server.

Top