]> andersk Git - openssh.git/blob - ssh-add.1
b5dae10de62671a5494f3658c908aee91ec38ee2
[openssh.git] / ssh-add.1
1 .\"  -*- nroff -*-
2 .\"
3 .\" ssh-add.1
4 .\"
5 .\" Author: Tatu Ylonen <ylo@cs.hut.fi>
6 .\"
7 .\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 .\"                    All rights reserved
9 .\"
10 .\" Created: Sat Apr 22 23:55:14 1995 ylo
11 .\"
12 .\" $Id$
13 .\"
14 .Dd September 25, 1999
15 .Dt SSH-ADD 1
16 .Os
17 .Sh NAME
18 .Nm ssh-add
19 .Nd adds RSA or DSA identities for the authentication agent
20 .Sh SYNOPSIS
21 .Nm ssh-add
22 .Op Fl lLdD
23 .Op Ar
24 .Sh DESCRIPTION
25 .Nm
26 adds RSA or DSA identities to the authentication agent,
27 .Xr ssh-agent 1 .
28 When run without arguments, it adds the file
29 .Pa $HOME/.ssh/identity .
30 Alternative file names can be given on the command line.
31 If any file requires a passphrase,
32 .Nm
33 asks for the passphrase from the user.
34 The Passphrase it is read from the user's tty.
35 .Pp
36 The authentication agent must be running and must be an ancestor of
37 the current process for
38 .Nm
39 to work.
40 .Pp
41 The options are as follows:
42 .Bl -tag -width Ds
43 .It Fl l
44 Lists fingerprints of all identities currently represented by the agent.
45 .It Fl L
46 Lists public key parameters of all identities currently represented by the agent.
47 .It Fl d
48 Instead of adding the identity, removes the identity from the agent.
49 .It Fl D
50 Deletes all identities from the agent.
51 .El
52 .Sh FILES
53 .Bl -tag -width Ds
54 .It Pa $HOME/.ssh/identity
55 Contains the RSA authentication identity of the user.
56 This file should not be readable by anyone but the user.
57 Note that
58 .Nm
59 ignores this file if it is accessible by others.
60 It is possible to
61 specify a passphrase when generating the key; that passphrase will be
62 used to encrypt the private part of this file.
63 This is the default file added by
64 .Nm
65 when no other files have been specified.
66 .It Pa $HOME/.ssh/id_dsa
67 Contains the DSA authentication identity of the user.
68 .Pp
69 .Sh ENVIRONMENT
70 .Bl -tag -width Ds
71 .It Ev "DISPLAY" and "SSH_ASKPASS"
72 If
73 .Nm
74 needs a passphrase, it will read the passphrase from the current
75 terminal if it was run from a terminal.
76 If
77 .Nm
78 does not have a terminal associated with it but
79 .Ev DISPLAY
80 and
81 .Ev SSH_ASKPASS
82 are set, it will execute the program specified by
83 .Ev SSH_ASKPASS
84 and open an X11 window to read the passphrase.
85 This is particularly useful when calling
86 .Nm
87 from a
88 .Pa .Xsession
89 or related script.
90 (Note that on some machines it
91 may be necessary to redirect the input from
92 .Pa /dev/null
93 to make this work.)
94 .Sh AUTHOR
95 Tatu Ylonen <ylo@cs.hut.fi>
96 .Pp
97 OpenSSH
98 is a derivative of the original (free) ssh 1.2.12 release, but with bugs
99 removed and newer features re-added.
100 Rapidly after the 1.2.12 release,
101 newer versions bore successively more restrictive licenses.
102 This version of OpenSSH
103 .Bl -bullet
104 .It
105 has all components of a restrictive nature (i.e., patents)
106 directly removed from the source code; any licensed or patented components
107 are chosen from
108 external libraries.
109 .It
110 has been updated to support ssh protocol 1.5.
111 .It
112 contains added support for
113 .Xr kerberos 8
114 authentication and ticket passing.
115 .It
116 supports one-time password authentication with
117 .Xr skey 1 .
118 .El
119 .Sh SEE ALSO
120 .Xr ssh 1 ,
121 .Xr ssh-agent 1 ,
122 .Xr ssh-keygen 1 ,
123 .Xr sshd 8 ,
This page took 0.03375 seconds and 3 git commands to generate.