1.\" $OpenBSD: ssh-agent.1,v 1.75 2022/10/07 06:00:58 jmc Exp $ 2.\" 3.\" Author: Tatu Ylonen <ylo@cs.hut.fi> 4.\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 5.\" All rights reserved 6.\" 7.\" As far as I am concerned, the code I have written for this software 8.\" can be used freely for any purpose. Any derived versions of this 9.\" software must be clearly marked as such, and if the derived work is 10.\" incompatible with the protocol description in the RFC file, it must be 11.\" called by a name other than "ssh" or "Secure Shell". 12.\" 13.\" Copyright (c) 1999,2000 Markus Friedl. All rights reserved. 14.\" Copyright (c) 1999 Aaron Campbell. All rights reserved. 15.\" Copyright (c) 1999 Theo de Raadt. All rights reserved. 16.\" 17.\" Redistribution and use in source and binary forms, with or without 18.\" modification, are permitted provided that the following conditions 19.\" are met: 20.\" 1. Redistributions of source code must retain the above copyright 21.\" notice, this list of conditions and the following disclaimer. 22.\" 2. Redistributions in binary form must reproduce the above copyright 23.\" notice, this list of conditions and the following disclaimer in the 24.\" documentation and/or other materials provided with the distribution. 25.\" 26.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 27.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 28.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 29.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 30.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 31.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 32.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 33.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 36.\" 37.Dd $Mdocdate: October 7 2022 $ 38.Dt SSH-AGENT 1 39.Os 40.Sh NAME 41.Nm ssh-agent 42.Nd OpenSSH authentication agent 43.Sh SYNOPSIS 44.Nm ssh-agent 45.Op Fl c | s 46.Op Fl \&Dd 47.Op Fl a Ar bind_address 48.Op Fl E Ar fingerprint_hash 49.Op Fl O Ar option 50.Op Fl P Ar allowed_providers 51.Op Fl t Ar life 52.Nm ssh-agent 53.Op Fl a Ar bind_address 54.Op Fl E Ar fingerprint_hash 55.Op Fl O Ar option 56.Op Fl P Ar allowed_providers 57.Op Fl t Ar life 58.Ar command Op Ar arg ... 59.Nm ssh-agent 60.Op Fl c | s 61.Fl k 62.Sh DESCRIPTION 63.Nm 64is a program to hold private keys used for public key authentication. 65Through use of environment variables the agent can be located 66and automatically used for authentication when logging in to other 67machines using 68.Xr ssh 1 . 69.Pp 70The options are as follows: 71.Bl -tag -width Ds 72.It Fl a Ar bind_address 73Bind the agent to the 74.Ux Ns -domain 75socket 76.Ar bind_address . 77The default is 78.Pa $TMPDIR/ssh-XXXXXXXXXX/agent.\*(Ltppid\*(Gt . 79.It Fl c 80Generate C-shell commands on 81.Dv stdout . 82This is the default if 83.Ev SHELL 84looks like it's a csh style of shell. 85.It Fl D 86Foreground mode. 87When this option is specified, 88.Nm 89will not fork. 90.It Fl d 91Debug mode. 92When this option is specified, 93.Nm 94will not fork and will write debug information to standard error. 95.It Fl E Ar fingerprint_hash 96Specifies the hash algorithm used when displaying key fingerprints. 97Valid options are: 98.Dq md5 99and 100.Dq sha256 . 101The default is 102.Dq sha256 . 103.It Fl k 104Kill the current agent (given by the 105.Ev SSH_AGENT_PID 106environment variable). 107.It Fl O Ar option 108Specify an option when starting 109.Nm . 110Currently only one option is supported: 111.Cm no-restrict-websafe . 112This instructs 113.Nm 114to permit signatures using FIDO keys that might be web authentication 115requests. 116By default, 117.Nm 118refuses signature requests for FIDO keys where the key application string 119does not start with 120.Dq ssh: 121and when the data to be signed does not appear to be a 122.Xr ssh 1 123user authentication request or a 124.Xr ssh-keygen 1 125signature. 126The default behaviour prevents forwarded access to a FIDO key from also 127implicitly forwarding the ability to authenticate to websites. 128.It Fl P Ar allowed_providers 129Specify a pattern-list of acceptable paths for PKCS#11 provider and FIDO 130authenticator middleware shared libraries that may be used with the 131.Fl S 132or 133.Fl s 134options to 135.Xr ssh-add 1 . 136Libraries that do not match the pattern list will be refused. 137See PATTERNS in 138.Xr ssh_config 5 139for a description of pattern-list syntax. 140The default list is 141.Dq /usr/lib/*,/usr/local/lib/* . 142.It Fl s 143Generate Bourne shell commands on 144.Dv stdout . 145This is the default if 146.Ev SHELL 147does not look like it's a csh style of shell. 148.It Fl t Ar life 149Set a default value for the maximum lifetime of identities added to the agent. 150The lifetime may be specified in seconds or in a time format specified in 151.Xr sshd_config 5 . 152A lifetime specified for an identity with 153.Xr ssh-add 1 154overrides this value. 155Without this option the default maximum lifetime is forever. 156.It Ar command Op Ar arg ... 157If a command (and optional arguments) is given, 158this is executed as a subprocess of the agent. 159The agent exits automatically when the command given on the command 160line terminates. 161.El 162.Pp 163There are two main ways to get an agent set up. 164The first is at the start of an X session, 165where all other windows or programs are started as children of the 166.Nm 167program. 168The agent starts a command under which its environment 169variables are exported, for example 170.Cm ssh-agent xterm & . 171When the command terminates, so does the agent. 172.Pp 173The second method is used for a login session. 174When 175.Nm 176is started, 177it prints the shell commands required to set its environment variables, 178which in turn can be evaluated in the calling shell, for example 179.Cm eval `ssh-agent -s` . 180.Pp 181In both cases, 182.Xr ssh 1 183looks at these environment variables 184and uses them to establish a connection to the agent. 185.Pp 186The agent initially does not have any private keys. 187Keys are added using 188.Xr ssh-add 1 189or by 190.Xr ssh 1 191when 192.Cm AddKeysToAgent 193is set in 194.Xr ssh_config 5 . 195Multiple identities may be stored in 196.Nm 197concurrently and 198.Xr ssh 1 199will automatically use them if present. 200.Xr ssh-add 1 201is also used to remove keys from 202.Nm 203and to query the keys that are held in one. 204.Pp 205Connections to 206.Nm 207may be forwarded from further remote hosts using the 208.Fl A 209option to 210.Xr ssh 1 211(but see the caveats documented therein), 212avoiding the need for authentication data to be stored on other machines. 213Authentication passphrases and private keys never go over the network: 214the connection to the agent is forwarded over SSH remote connections 215and the result is returned to the requester, 216allowing the user access to their identities anywhere in the network 217in a secure fashion. 218.Sh ENVIRONMENT 219.Bl -tag -width "SSH_AGENT_PID" 220.It Ev SSH_AGENT_PID 221When 222.Nm 223starts, it stores the name of the agent's process ID (PID) in this variable. 224.It Ev SSH_AUTH_SOCK 225When 226.Nm 227starts, it creates a 228.Ux Ns -domain 229socket and stores its pathname in this variable. 230It is accessible only to the current user, 231but is easily abused by root or another instance of the same user. 232.El 233.Sh FILES 234.Bl -tag -width Ds 235.It Pa $TMPDIR/ssh-XXXXXXXXXX/agent.<ppid> 236.Ux Ns -domain 237sockets used to contain the connection to the authentication agent. 238These sockets should only be readable by the owner. 239The sockets should get automatically removed when the agent exits. 240.El 241.Sh SEE ALSO 242.Xr ssh 1 , 243.Xr ssh-add 1 , 244.Xr ssh-keygen 1 , 245.Xr ssh_config 5 , 246.Xr sshd 8 247.Sh AUTHORS 248.An -nosplit 249OpenSSH is a derivative of the original and free ssh 1.2.12 release by 250.An Tatu Ylonen . 251.An Aaron Campbell , Bob Beck , Markus Friedl , Niels Provos , Theo de Raadt 252and 253.An Dug Song 254removed many bugs, re-added newer features and created OpenSSH. 255.An Markus Friedl 256contributed the support for SSH protocol versions 1.5 and 2.0. 257