ssh-agent

A program to hold private keys used for public key authentication

Summary

The ssh-agent is a helper program that keeps track of user's identity keysarrow-up-right and their passphrasesarrow-up-right. The agent can then use the keys to log into other servers without having the user type in a password or passphrase again. This implements a form of single sign-on (SSO).

The SSH agent is used for SSH public key authenticationarrow-up-right. It uses SSH keysarrow-up-right for authentication. Users can create SSH keys using the ssh-keygenarrow-up-right command and install them on servers using the ssh-copy-idarrow-up-right command.

Reference

ssh.com Docs

Last updated