diff options
Diffstat (limited to 'other/ssharp/ssh-add.0')
| -rw-r--r-- | other/ssharp/ssh-add.0 | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/other/ssharp/ssh-add.0 b/other/ssharp/ssh-add.0 new file mode 100644 index 0000000..6490c8e --- /dev/null +++ b/other/ssharp/ssh-add.0 | |||
| @@ -0,0 +1,73 @@ | |||
| 1 | |||
| 2 | SSH-ADD(1) System Reference Manual SSH-ADD(1) | ||
| 3 | |||
| 4 | NAME | ||
| 5 | ssh-add - adds RSA or DSA identities for the authentication agent | ||
| 6 | |||
| 7 | SYNOPSIS | ||
| 8 | ssh-add [-lLdD] [file ...] | ||
| 9 | |||
| 10 | DESCRIPTION | ||
| 11 | ssh-add adds RSA or DSA identities to the authentication agent, ssh- | ||
| 12 | agent(1). When run without arguments, it adds the file | ||
| 13 | $HOME/.ssh/identity. Alternative file names can be given on the command | ||
| 14 | line. If any file requires a passphrase, ssh-add asks for the passphrase | ||
| 15 | from the user. The Passphrase it is read from the user's tty. ssh-add | ||
| 16 | retries the last passphrase if multiple identity files are given. | ||
| 17 | |||
| 18 | The authentication agent must be running and must be an ancestor of the | ||
| 19 | current process for ssh-add to work. | ||
| 20 | |||
| 21 | The options are as follows: | ||
| 22 | |||
| 23 | -l Lists fingerprints of all identities currently represented by the | ||
| 24 | agent. | ||
| 25 | |||
| 26 | -L Lists public key parameters of all identities currently repreM-- | ||
| 27 | sented by the agent. | ||
| 28 | |||
| 29 | -d Instead of adding the identity, removes the identity from the | ||
| 30 | agent. | ||
| 31 | |||
| 32 | -D Deletes all identities from the agent. | ||
| 33 | |||
| 34 | FILES | ||
| 35 | $HOME/.ssh/identity | ||
| 36 | Contains the protocol version 1 RSA authentication identity of | ||
| 37 | the user. This file should not be readable by anyone but the usM-- | ||
| 38 | er. Note that ssh-add ignores this file if it is accessible by | ||
| 39 | others. It is possible to specify a passphrase when generating | ||
| 40 | the key; that passphrase will be used to encrypt the private part | ||
| 41 | of this file. This is the default file added by ssh-add when no | ||
| 42 | other files have been specified. | ||
| 43 | |||
| 44 | $HOME/.ssh/id_dsa | ||
| 45 | Contains the protocol version 2 DSA authentication identity of | ||
| 46 | the user. | ||
| 47 | |||
| 48 | $HOME/.ssh/id_rsa | ||
| 49 | Contains the protocol version 2 RSA authentication identity of | ||
| 50 | the user. | ||
| 51 | |||
| 52 | ENVIRONMENT | ||
| 53 | DISPLAY and SSH_ASKPASS | ||
| 54 | If ssh-add needs a passphrase, it will read the passphrase from | ||
| 55 | the current terminal if it was run from a terminal. If ssh-add | ||
| 56 | does not have a terminal associated with it but DISPLAY and | ||
| 57 | SSH_ASKPASS are set, it will execute the program specified by | ||
| 58 | SSH_ASKPASS and open an X11 window to read the passphrase. This | ||
| 59 | is particularly useful when calling ssh-add from a .Xsession or | ||
| 60 | related script. (Note that on some machines it may be necessary | ||
| 61 | to redirect the input from /dev/null to make this work.) | ||
| 62 | |||
| 63 | AUTHORS | ||
| 64 | OpenSSH is a derivative of the original and free ssh 1.2.12 release by | ||
| 65 | Tatu Ylonen. Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos, Theo | ||
| 66 | de Raadt and Dug Song removed many bugs, re-added newer features and creM-- | ||
| 67 | ated OpenSSH. Markus Friedl contributed the support for SSH protocol | ||
| 68 | versions 1.5 and 2.0. | ||
| 69 | |||
| 70 | SEE ALSO | ||
| 71 | ssh(1), ssh-agent(1), ssh-keygen(1), sshd(8) | ||
| 72 | |||
| 73 | BSD Experimental September 25, 1999 2 | ||
