]> andersk Git - gssapi-openssh.git/blame - openssh/ssh-agent.1
last appeared in 3.1p1
[gssapi-openssh.git] / openssh / ssh-agent.1
CommitLineData
e9a17296 1.\" $OpenBSD: ssh-agent.1,v 1.31 2002/02/04 20:41:16 stevesk Exp $
3c0ef626 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 September 25, 1999
38.Dt SSH-AGENT 1
39.Os
40.Sh NAME
41.Nm ssh-agent
42.Nd authentication agent
43.Sh SYNOPSIS
44.Nm ssh-agent
45.Op Fl c Li | Fl s
46.Op Fl d
47.Op Ar command Op Ar args ...
48.Nm ssh-agent
49.Op Fl c Li | Fl s
50.Fl k
51.Sh DESCRIPTION
52.Nm
53is a program to hold private keys used for public key authentication
54(RSA, DSA).
55The idea is that
56.Nm
57is started in the beginning of an X-session or a login session, and
58all other windows or programs are started as clients to the ssh-agent
59program.
60Through use of environment variables the agent can be located
61and automatically used for authentication when logging in to other
62machines using
63.Xr ssh 1 .
64.Pp
65The options are as follows:
66.Bl -tag -width Ds
67.It Fl c
68Generate C-shell commands on
69.Dv stdout .
70This is the default if
71.Ev SHELL
72looks like it's a csh style of shell.
73.It Fl s
74Generate Bourne shell commands on
75.Dv stdout .
76This is the default if
77.Ev SHELL
78does not look like it's a csh style of shell.
79.It Fl k
80Kill the current agent (given by the
81.Ev SSH_AGENT_PID
82environment variable).
83.It Fl d
84Debug mode. When this option is specified
85.Nm
86will not fork.
87.El
88.Pp
89If a commandline is given, this is executed as a subprocess of the agent.
90When the command dies, so does the agent.
91.Pp
92The agent initially does not have any private keys.
93Keys are added using
94.Xr ssh-add 1 .
95When executed without arguments,
96.Xr ssh-add 1
e9a17296 97adds the files
98.Pa $HOME/.ssh/id_rsa ,
99.Pa $HOME/.ssh/id_dsa
100and
101.Pa $HOME/.ssh/identity .
3c0ef626 102If the identity has a passphrase,
103.Xr ssh-add 1
104asks for the passphrase (using a small X11 application if running
105under X11, or from the terminal if running without X).
106It then sends the identity to the agent.
107Several identities can be stored in the
108agent; the agent can automatically use any of these identities.
109.Ic ssh-add -l
110displays the identities currently held by the agent.
111.Pp
112The idea is that the agent is run in the user's local PC, laptop, or
113terminal.
114Authentication data need not be stored on any other
115machine, and authentication passphrases never go over the network.
116However, the connection to the agent is forwarded over SSH
117remote logins, and the user can thus use the privileges given by the
118identities anywhere in the network in a secure way.
119.Pp
120There are two main ways to get an agent setup:
121Either the agent starts a new subcommand into which some environment
122variables are exported, or the agent prints the needed shell commands
123(either
124.Xr sh 1
125or
126.Xr csh 1
127syntax can be generated) which can be evalled in the calling shell.
128Later
129.Xr ssh 1
130looks at these variables and uses them to establish a connection to the agent.
131.Pp
e9a17296 132The agent will never send a private key over its request channel.
133Instead, operations that require a private key will be performed
134by the agent, and the result will be returned to the requester.
135This way, private keys are not exposed to clients using the agent.
136.Pp
3c0ef626 137A unix-domain socket is created
138.Pq Pa /tmp/ssh-XXXXXXXX/agent.<pid> ,
139and the name of this socket is stored in the
140.Ev SSH_AUTH_SOCK
141environment
142variable.
143The socket is made accessible only to the current user.
144This method is easily abused by root or another instance of the same
145user.
146.Pp
147The
148.Ev SSH_AGENT_PID
149environment variable holds the agent's PID.
150.Pp
151The agent exits automatically when the command given on the command
152line terminates.
153.Sh FILES
154.Bl -tag -width Ds
155.It Pa $HOME/.ssh/identity
156Contains the protocol version 1 RSA authentication identity of the user.
3c0ef626 157.It Pa $HOME/.ssh/id_dsa
158Contains the protocol version 2 DSA authentication identity of the user.
159.It Pa $HOME/.ssh/id_rsa
160Contains the protocol version 2 RSA authentication identity of the user.
161.It Pa /tmp/ssh-XXXXXXXX/agent.<pid>
162Unix-domain sockets used to contain the connection to the
163authentication agent.
164These sockets should only be readable by the owner.
165The sockets should get automatically removed when the agent exits.
166.El
167.Sh AUTHORS
168OpenSSH is a derivative of the original and free
169ssh 1.2.12 release by Tatu Ylonen.
170Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
171Theo de Raadt and Dug Song
172removed many bugs, re-added newer features and
173created OpenSSH.
174Markus Friedl contributed the support for SSH
175protocol versions 1.5 and 2.0.
176.Sh SEE ALSO
177.Xr ssh 1 ,
178.Xr ssh-add 1 ,
179.Xr ssh-keygen 1 ,
180.Xr sshd 8
This page took 0.759343 seconds and 5 git commands to generate.