2016-01-04 15:31:03 +00:00
|
|
|
# ssh-keygen
|
|
|
|
|
2019-09-06 10:49:11 +01:00
|
|
|
> Generate ssh keys used for authentication, password-less logins, and other things.
|
2016-01-04 15:31:03 +00:00
|
|
|
|
2016-01-28 11:41:00 +00:00
|
|
|
- Generate a key interactively:
|
2016-01-04 15:31:03 +00:00
|
|
|
|
|
|
|
`ssh-keygen`
|
|
|
|
|
2016-03-01 21:06:19 +00:00
|
|
|
- Specify file in which to save the key:
|
|
|
|
|
|
|
|
`ssh-keygen -f ~/.ssh/{{filename}}`
|
|
|
|
|
2018-01-25 19:36:37 +00:00
|
|
|
- Generate an ed25519 key with 100 key derivation function rounds:
|
|
|
|
|
|
|
|
`ssh-keygen -t ed25519 -a 100`
|
|
|
|
|
2019-12-07 03:20:59 +00:00
|
|
|
- Generate an RSA 4096 bit key with email as a comment:
|
2016-01-04 15:31:03 +00:00
|
|
|
|
|
|
|
`ssh-keygen -t rsa -b 4096 -C "{{email}}"`
|
|
|
|
|
2016-01-28 11:41:00 +00:00
|
|
|
- Retrieve the key fingerprint from a host (useful for confirming the authenticity of the host when first connecting to it via SSH):
|
2016-01-04 15:31:03 +00:00
|
|
|
|
|
|
|
`ssh-keygen -l -F {{remote_host}}`
|
2016-06-01 10:15:10 +01:00
|
|
|
|
2019-12-07 03:20:59 +00:00
|
|
|
- Remove the keys of a host from the known_hosts file (useful when a known host has a new key):
|
|
|
|
|
|
|
|
`ssh-keygen -R {{remote_host}}`
|
|
|
|
|
2016-07-26 15:16:42 +01:00
|
|
|
- Retrieve the fingerprint of a key in MD5 Hex:
|
|
|
|
|
|
|
|
`ssh-keygen -l -E md5 -f ~/.ssh/{{filename}}`
|
|
|
|
|
2016-06-01 10:15:10 +01:00
|
|
|
- Change the password of a key:
|
|
|
|
|
|
|
|
`ssh-keygen -p -f ~/.ssh/{{filename}}`
|