Ssh Agent Forwarding

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

External

Internal

Overview

Agent forwarding means using the local identity (private key) from the machine that initiated the ssh connection on the remote machine - the machine you're logging into. This mode allows you to authenticate against further machines you may log into, with your local credentials, while logged in on the remote machine, without copying your private key on the remote machine. This model works well for SSH proxies, usually found on bastions.

To use it, first you need to add the private key identity you want to use to the authentication agent:

ssh-add ~/.ssh/id_rsa

Then you connect with using the -A option:

ssh -A ...

This forwards the connection to your ssh agent on the remote computer.

List all Identities

To list all identities the SSH agent is aware of at the moment:

ssh-add -l

Drop all Identities

ssh-add -D