User Tools

Site Tools


networking:ssh:ssh-keys

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
networking:ssh:ssh-keys [2021/11/09 21:34] chucknetworking:ssh:ssh-keys [2022/05/07 02:53] (current) – [Links] chuck
Line 1: Line 1:
 ======SSH Key Management====== ======SSH Key Management======
  
-This page will assist in setting up and maintaining SSH keys.+This page is meant to assist in setting up and maintaining SSH keys.
  
 ---- ----
Line 21: Line 21:
  
 =====Generating SSH Keys===== =====Generating SSH Keys=====
- +====ED25519====
-====RSA====+
   * Change to ''%%~/.ssh%%'':<code bash>   * Change to ''%%~/.ssh%%'':<code bash>
 cd ~/.ssh cd ~/.ssh
 </code> </code>
-  * Generate **RSA** ssh key:<code bash> +  * Generate an **Ed25519** ssh key:<code bash> 
-ssh-keygen -t rsa -b 4096 -o -a 256+ssh-keygen -t ed25519 -a 256
 </code> </code>
-  * Generate **RSA** ssh key with a specific name:<code bash> +  * Generate an **Ed25519** ssh key with a specific name:<code bash> 
-ssh-keygen -f <keyname> -t rsa -b 4096 -o -a 256+ssh-keygen -f <keyname> -t ed25519 -a 256
 </code> </code>
  
 ---- ----
  
-====ED25519====+====RSA====
   * Change to ''%%~/.ssh%%'':<code bash>   * Change to ''%%~/.ssh%%'':<code bash>
 cd ~/.ssh cd ~/.ssh
 </code> </code>
-  * Generate an **Ed25519** ssh key:<code bash> +  * Generate **RSA** ssh key:<code bash> 
-ssh-keygen -t ed25519 -a 256+ssh-keygen -t rsa -b 4096 -o -a 256
 </code> </code>
-  * Generate an **Ed25519** ssh key with a specific name:<code bash> +  * Generate **RSA** ssh key with a specific name:<code bash> 
-ssh-keygen -f <keyname> -t ed25519 -a 256+ssh-keygen -f <keyname> -t rsa -b 4096 -o -a 256
 </code> </code>
  
Line 118: Line 117:
  
 =====Links===== =====Links=====
-  * https://manpages.debian.org/bullseye/openssh-client/ssh.1.en.html +  * https://manpages.debian.org/stable/openssh-client/ssh.1.en.html 
-  * https://manpages.debian.org/bullseye/openssh-client/ssh-keygen.1.en.html +  * https://manpages.debian.org/stable/openssh-client/ssh-keygen.1.en.html 
-  * https://manpages.debian.org/bullseye/openssh-client/ssh-add.1.en.html +  * https://manpages.debian.org/stable/openssh-client/ssh-add.1.en.html 
-  * https://manpages.debian.org/bullseye/openssh-client/ssh-copy-id.1.en.html+  * https://manpages.debian.org/stable/openssh-client/ssh-copy-id.1.en.html
  
  
networking/ssh/ssh-keys.1636493643.txt.gz · Last modified: by chuck