2016-01-04 10:31:03 -05:00
|
|
|
# ssh-keygen
|
|
|
|
|
2016-01-13 12:04:46 +01:00
|
|
|
> Generate ssh keys user for authentication, password-less logins, and other things.
|
2016-01-04 10:31:03 -05:00
|
|
|
|
2016-01-28 12:41:00 +01:00
|
|
|
- Generate a key interactively:
|
2016-01-04 10:31:03 -05:00
|
|
|
|
|
|
|
`ssh-keygen`
|
|
|
|
|
2016-03-01 16:06:19 -05:00
|
|
|
- Specify file in which to save the key:
|
|
|
|
|
|
|
|
`ssh-keygen -f ~/.ssh/{{filename}}`
|
|
|
|
|
2016-01-28 12:41:00 +01:00
|
|
|
- Generate a DSA 2048 bit (default) key:
|
2016-01-04 10:31:03 -05:00
|
|
|
|
|
|
|
`ssh-keygen -t dsa`
|
|
|
|
|
2016-01-28 12:41:00 +01:00
|
|
|
- Generate an RSA 4096 bit key with your email as a comment:
|
2016-01-04 10:31:03 -05:00
|
|
|
|
|
|
|
`ssh-keygen -t rsa -b 4096 -C "{{email}}"`
|
|
|
|
|
2016-01-28 12:41:00 +01: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 10:31:03 -05:00
|
|
|
|
|
|
|
`ssh-keygen -l -F {{remote_host}}`
|