OpenSSH Passwordless Authentication: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
__FORCETOC__ | |||
== Method 1 == | == Method 1 == | ||
# Create a public and private RSA key pair. | # Create a public and private RSA key pair. |
Revision as of 17:51, 12 January 2016
Method 1
- Create a public and private RSA key pair.
- $ ssh-keygen -t rsa
- Follow the prompts to generate and save the RSA key.
- Transfer the public key to the target host.
- $ ssh-copy-id <username>@<hostname>
- Follow the prompt to enter your password.
- Test the passwordless authentication.
- $ ssh <username>@<hostname>
Method 2
- Create a public and private RSA key pair.
- $ ssh-keygen -t rsa
- Create the .ssh directory and set the permissions on the target host.
- Logon to the target host via ssh.
- $ mkdir .ssh
- $ chmod 700 .ssh
- $ touch .ssh/authorized_keys
- $ chmod 600 .ssh/authorized_keys
- Transfer the public key to the target host.
- $ cat .ssh/id_rsa.pub | ssh <username>@<hostname> 'cat >> .ssh/authorized_keys
- Follow the prompt to enter your password.
- Test the passwordless authentication.
- $ ssh <username>@<hostname>