User Tools

Site Tools


ssh_keys

This is an old revision of the document!


Creating keys:

ssh-keygen
Similar output will be:

$ ssh-keygen 
Generating public/private rsa key pair.
Enter file in which to save the key (/home/user/.ssh/id_rsa): test
Enter passphrase (empty for no passphrase): 
Enter same passphrase again: 
Your identification has been saved in test.
Your public key has been saved in test.pub.
The key fingerprint is:
01:01:43:22:c2:ec:24:85:f3:88:44:88:d6:df:7d:ea Luke@lukeshost
Now we need to copy the public key onto the server
ssh-copy-id -i ~/.ssh/servername_id_rsa.pub [email protected]
You can then log into the device using the private key:
ssh -i ~/.ssh/servername_id_rsa [email protected]
If the private key matches the public key located on the server then it will allow you to log in!#


Now we can make our lives a little easier so we do not have to specify the key each time:
vim ~/.ssh/config
Host ServerName
  Hostname x.x.x.x
  User Luke
  Port 22 #or you can specify custom port
  IdentityFile ~/.ssh/servername_id_rsa #this is the location to the pivate key that you created above
You will now be able to ssh into a device with the shortcut:
ssh ServerName

ssh_keys.1462258667.txt.gz · Last modified: 2024/05/23 07:26 (external edit)

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki