2017-10-16 17:17:15 +01:00
|
|
|
# ssh-add
|
|
|
|
|
2017-10-17 16:21:51 +01:00
|
|
|
> Manage loaded ssh keys in the ssh-agent.
|
|
|
|
> Ensure that ssh-agent is up and running for the keys to be loaded in it.
|
2017-10-16 17:17:15 +01:00
|
|
|
|
2017-10-18 08:39:42 +01:00
|
|
|
- Add the default ssh keys in "~/.ssh" to the ssh-agent:
|
2017-10-17 16:34:37 +01:00
|
|
|
|
2017-10-17 16:21:51 +01:00
|
|
|
`ssh-add`
|
2017-10-16 17:17:15 +01:00
|
|
|
|
2017-10-18 08:13:09 +01:00
|
|
|
- Add a specific key to the ssh-agent:
|
2017-10-17 16:34:37 +01:00
|
|
|
|
2017-10-16 17:17:15 +01:00
|
|
|
`ssh-add {{path/to/private_key}}`
|
|
|
|
|
|
|
|
- List fingerprints of currently loaded keys:
|
|
|
|
|
|
|
|
`ssh-add -l`
|
|
|
|
|
|
|
|
- Delete a key from the ssh-agent:
|
|
|
|
|
|
|
|
`ssh-add -d {{path/to/private_key}}`
|
|
|
|
|
|
|
|
- Delete all currently loaded keys from the ssh-agent:
|
|
|
|
|
|
|
|
`ssh-add -D`
|
|
|
|
|
2017-10-17 16:21:51 +01:00
|
|
|
- Add a key to the ssh-agent and the keychain:
|
2017-10-16 17:17:15 +01:00
|
|
|
|
|
|
|
`ssh-add -K {{path/to/private_key}}`
|