首页 > 系统服务 > 详细

Linux命令:ssh-add

时间:2019-03-15 15:54:11      阅读:277      评论:0      收藏:0      [点我收藏+]

 

 

 

 

ssh-add帮助

技术分享图片
 1 SSH-ADD(1)                                                                    BSD General Commands Manual                                                                    SSH-ADD(1)
 2 
 3 NAME
 4      ssh-add — adds private key identities to the authentication agent
 5 
 6 SYNOPSIS
 7      ssh-add [-cDdkLlXx] [-t life] [file ...]
 8      ssh-add -s pkcs11
 9      ssh-add -e pkcs11
10 
11 DESCRIPTION
12      ssh-add adds private key identities to the authentication agent, ssh-agent(1).  When run without arguments, it adds the files ~/.ssh/id_rsa, ~/.ssh/id_dsa, ~/.ssh/id_ecdsa,
13      ~/.ssh/id_ed25519 and ~/.ssh/identity.  After loading a private key, ssh-add will try to load corresponding certificate information from the filename obtained by appending
14      -cert.pub to the name of the private key file.  Alternative file names can be given on the command line.
15 
16      If any file requires a passphrase, ssh-add asks for the passphrase from the user.  The passphrase is read from the users tty.  ssh-add retries the last passphrase if multiple
17      identity files are given.
18 
19      The authentication agent must be running and the SSH_AUTH_SOCK environment variable must contain the name of its socket for ssh-add to work.
20 
21      The options are as follows:
22 
23      -c      Indicates that added identities should be subject to confirmation before being used for authentication.  Confirmation is performed by the SSH_ASKPASS program mentioned
24              below.  Successful confirmation is signaled by a zero exit status from the SSH_ASKPASS program, rather than text entered into the requester.
25 
26      -D      Deletes all identities from the agent.
27 
28      -d      Instead of adding identities, removes identities from the agent.  If ssh-add has been run without arguments, the keys for the default identities and their corresponding
29              certificates will be removed.  Otherwise, the argument list will be interpreted as a list of paths to public key files to specify keys and certificates to be removed from
30              the agent.  If no public key is found at a given path, ssh-add will append .pub and retry.
31 
32      -e pkcs11
33              Remove keys provided by the PKCS#11 shared library pkcs11.
34 
35      -k      When loading keys into or deleting keys from the agent, process plain private keys only and skip certificates.
36 
37      -L      Lists public key parameters of all identities currently represented by the agent.
38 
39      -l      Lists fingerprints of all identities currently represented by the agent.
40 
41      -s pkcs11
42              Add keys provided by the PKCS#11 shared library pkcs11.
43 
44      -t life
45              Set a maximum lifetime when adding identities to an agent.  The lifetime may be specified in seconds or in a time format specified in sshd_config(5).
46 
47      -X      Unlock the agent.
48 
49      -x      Lock the agent with a password.
50 
51 ENVIRONMENT
52      DISPLAY and SSH_ASKPASS
53              If ssh-add needs a passphrase, it will read the passphrase from the current terminal if it was run from a terminal.  If ssh-add does not have a terminal associated with
54              it but DISPLAY and SSH_ASKPASS are set, it will execute the program specified by SSH_ASKPASS and open an X11 window to read the passphrase.  This is particularly useful
55              when calling ssh-add from a .xsession or related script.  (Note that on some machines it may be necessary to redirect the input from /dev/null to make this work.)
56 
57      SSH_AUTH_SOCK
58              Identifies the path of a UNIX-domain socket used to communicate with the agent.
59 
60      SSH_USE_STRONG_RNG
61              The reseeding of the OpenSSL random generator is usually done from /dev/urandom.  If the SSH_USE_STRONG_RNG environment variable is set to value other than 0 the OpenSSL
62              random generator is reseeded from /dev/random.  The number of bytes read is defined by the SSH_USE_STRONG_RNG value.  Minimum is 14 bytes.  This setting is not recom‐
63              mended on the computers without the hardware random generator because insufficient entropy causes the connection to be blocked until enough entropy is available.
64 
65 FILES
66      ~/.ssh/identity
67              Contains the protocol version 1 RSA authentication identity of the user.
68 
69      ~/.ssh/id_dsa
70              Contains the protocol version 2 DSA authentication identity of the user.
71 
72      ~/.ssh/id_ecdsa
73              Contains the protocol version 2 ECDSA authentication identity of the user.
74 
75      ~/.ssh/id_ed25519
76              Contains the protocol version 2 ED25519 authentication identity of the user.
77 
78      ~/.ssh/id_rsa
79              Contains the protocol version 2 RSA authentication identity of the user.
80 
81      Identity files should not be readable by anyone but the user.  Note that ssh-add ignores identity files if they are accessible by others.
82 
83 EXIT STATUS
84      Exit status is 0 on success, 1 if the specified command fails, and 2 if ssh-add is unable to contact the authentication agent.
85 
86 SEE ALSO
87      ssh(1), ssh-agent(1), ssh-keygen(1), sshd(8)
88 
89 AUTHORS
90      OpenSSH is a derivative of the original and free ssh 1.2.12 release by Tatu Ylonen.  Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos, Theo de Raadt and Dug Song removed
91      many bugs, re-added newer features and created OpenSSH.  Markus Friedl contributed the support for SSH protocol versions 1.5 and 2.0.
92 
93 BSD                                                                                  March 15, 2019                                                                                 BSD
View Code

 

Linux命令:ssh-add

原文:https://www.cnblogs.com/ChinaGo/p/10537301.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!