Table of Contents

What is OpenSSH ssh-agent?

About

ssh-agent is the authentication agent of Openssh.

It works on Linux and windows

It stores un/desencrypted private keys in memory, and communicates with SSH clients via Unix_domain_socket

Installation

Windows

Docker Limitations

With the windows agent:

2) By default the ssh-agent service is disabled.

Get-Service ssh-agent | Set-Service -StartupType Automatic
# start
Start-Service ssh-agent
# status
Get-Service ssh-agent
Status   Name               DisplayName
------   ----               -----------
Running  ssh-agent          OpenSSH Authentication Agent

(get-command ssh-agent.exe).path
C:\Windows\System32\OpenSSH\ssh-agent.exe

Linux

On Linux, the ssh-agent binary should already be available, if not use your package manager to install it

Example:

apt-get install openssh

Shell Configuration

Git bash

On Git bash, if you want to work with:

Git Open Ssh

Posix Shell

In a posix shell, you start the ssh-agent and set the configuration variables with the following command:

ssh-agent -s
# where:
# ssh-agent starts the ssh-agent 
# -s generate commands on stdout
SSH_AUTH_SOCK=/tmp/ssh-asX1VgTTeGM3/agent.1848; export SSH_AUTH_SOCK;
SSH_AGENT_PID=1849; export SSH_AGENT_PID;
echo Agent pid 1849;

You can configure it to start automatically with the following command in .bashrc

eval `ssh-agent -s`

Key Operations

If your private key is not stored in one of the default locations (like ~/.ssh/id_rsa), you'll need to add them.

Add a key

Add a SSH private key to the ssh-agent created with keygen with the ssh-add

ssh-add ~/.ssh/id_rsa
ssh-add $env:USERPROFILE\.ssh\id_ed25519

Add all keys from a directory

ssh-add <directory to private SSH key>

List the keys

ssh-add -l

Return empty if there is no key

The agent has no identities.

Remove a key

ssh-add -d ~/.ssh/key-to-remove

Set an expiration

ssh-add -t <seconds>

Documentation / Reference