User Tools

Site Tools


ssh_keys

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
ssh_keys [2016/05/03 06:46] – created luke7858ssh_keys [2024/05/23 07:26] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +=== Creating keys ===
 <sxh bash> <sxh bash>
 ssh-keygen ssh-keygen
Line 15: Line 16:
 01:01:43:22:c2:ec:24:85:f3:88:44:88:d6:df:7d:ea Luke@lukeshost 01:01:43:22:c2:ec:24:85:f3:88:44:88:d6:df:7d:ea Luke@lukeshost
 </sxh> </sxh>
 +\\
 +=== Copying public keys to device ===
 Now we need to copy the public key onto the server Now we need to copy the public key onto the server
 <sxh bash> <sxh bash>
 ssh-copy-id -i ~/.ssh/servername_id_rsa.pub [email protected] ssh-copy-id -i ~/.ssh/servername_id_rsa.pub [email protected]
 </sxh> </sxh>
 +If the server has a custom port:
 +<sxh bash>
 +ssh-copy-id -i ~/.ssh/servername_id_rsa.pub '-p 1234 [email protected]'
 +</sxh>
 +\\
 +=== Logging in using private key ===
 You can then log into the device using the private key: You can then log into the device using the private key:
 <sxh bash> <sxh bash>
 ssh -i ~/.ssh/servername_id_rsa [email protected] ssh -i ~/.ssh/servername_id_rsa [email protected]
 </sxh> </sxh>
-If the private key matches the public key located on the server then it will allow you to log in!+If the private key matches the public key located on the server then it will allow you to log in!
 +\\ 
 +\\ 
 +\\ 
 +=== Creating ssh alias === 
 +Now we can make our lives a little easier so we do not have to specify the key each time:
 <sxh bash> <sxh bash>
 +vim ~/.ssh/config
 </sxh> </sxh>
 <sxh bash> <sxh bash>
 +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 
 +</sxh> 
 +You will now be able to ssh into a device with the shortcut: 
 +<sxh bash> 
 +ssh ServerName 
 +</sxh> 
 +\\ 
 +\\ 
 +=== Locking Down to Keys-Only === 
 +Next we could potentially lock down the server so ONLY keys work.  
 +\\ 
 +Add the following to /etc/ssh/sshd_config 
 +<sxh bash> 
 +PasswordAuthentication no
 </sxh> </sxh>
 +Then make sure you reload the configuration file.
 +\\
 +\\
 +WARNING: Keep one session open and attempt to log in from a different session, this allows you to get back in if you made an incorrect update
ssh_keys.1462258001.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