Difference between revisions of "Ssh-keygen (command)"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Tags: Mobile web edit, Mobile edit
Line 19: Line 19:
 
* Generate public key from private key:
 
* Generate public key from private key:
 
::<code>ssh-keygen -y -f ~/.ssh/id_rsa > ~./.ssh/id_rsa.pub</code>
 
::<code>ssh-keygen -y -f ~/.ssh/id_rsa > ~./.ssh/id_rsa.pub</code>
* Generate a key par with old format using: <code>[[ssh-keygen]] -m PEM</code>
+
* Generate a key par with old [[PEM]] format using: <code>[[ssh-keygen]] -m [[PEM]]</code>
  
 
Related commands: <code>[[ssh-copy-id]]</code>
 
Related commands: <code>[[ssh-copy-id]]</code>

Revision as of 11:09, 1 April 2020

ssh-keygen[1] is an OpenSSH software command used to generate, manage, and convert authentication keys. It support at least four different key types RSA, DSA, ECDSA and ed25519.

Commands

  • ssh-keygen -l -f /etc/ssh/ssh_host_XXXXkey.pub
  • ssh-keygen -vF host (-v flag added in OpenSSH 8.1[2])

Generate a keypar:

  • ssh-keygen -t ed25519 (There is no need to set the key size, as all Ed25519 keys are 256 bits) other options: [-t dsa | ecdsa | ed25519 | rsa]
Two files will be generated, one your private key and a second file containing second key (.pub extension)

Activities

  • Generate a public private key using ed25519 key format using the following command:
ssh-keygen -t ed25519
  • Solve" "WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!" warning:
ssh-keygen -R SERVER_NAME -R Removes all keys belonging to hostname from a known_hosts file
ssh -oStrictHostKeyChecking=no SERVER_NAME Temporarily turning off host key checking

Both solutions have security implications.

  • Understand different key types: dsa, ecdsa, ed25519 and rsa
  • Generate public key from private key:
ssh-keygen -y -f ~/.ssh/id_rsa > ~./.ssh/id_rsa.pub

Related commands: ssh-copy-id

See also

  • http://man7.org/linux/man-pages/man1/ssh-keygen.1.html
  • https://www.openssh.com/txt/release-8.1
  • Advertising: