tldr/pages/common/ssh-add.md

30 lines
623 B
Markdown
Raw Normal View History

2017-10-16 17:17:15 +01:00
# ssh-add
> Manage loaded SSH keys in the `ssh-agent`.
> Ensure that `ssh-agent` is up and running for the keys to be loaded in it.
> More information: <https://man.openbsd.org/ssh-add>.
2017-10-16 17:17:15 +01:00
- Add the default ssh keys in `~/.ssh` to the ssh-agent:
2017-10-17 16:34:37 +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`
- 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}}`