OpenSSH : Use SSH-Agent2021/02/22 |
Use SSH-Agent to automate inputting Passphrase on SSH Key Pair authentication.
Using SSH-Agent is valid for users who set SSH Key Pair with Passphrase. |
|
[1] | This is some example to use SSH-Agent. |
# run SSH-Agent [cent@dlp ~]$ eval $(ssh-agent) Agent pid 2136 # add passphrase [cent@dlp ~]$ ssh-add Enter passphrase for /home/cent/.ssh/id_rsa: Identity added: /home/cent/.ssh/id_rsa (cent@dlp.srv.world) # verify [cent@dlp ~]$ ssh-add -l 3072 SHA256:z97YlgMx/CtQbrGDRCRJGN8X3GFVT1U77cwfSXTinhs cent@dlp.srv.world (RSA) # try to connect wuthout inputting passphrase [cent@dlp ~]$ ssh node01.srv.world hostname node01.srv.world # stop SSH-Agent # if not execute it, SSH-Agent process remains even if you logout System, be careful [cent@dlp ~]$ eval $(ssh-agent -k) Agent pid 2136 killed |
Sponsored Link |