ssh-add:add_file:key_cert_copy:无效参数

ssh-add:add_file:key_cert_copy:无效参数

运行 ssh-add 时出现此错误。此后该命令似乎可以工作,但返回代码是 127(因此脚本此时会遇到错误)。有人认识到这个错误吗?谷歌似乎没有。

$ eval `ssh-agent`
Agent pid 19527

$ ssh-add ~/.ssh/my_id_rsa
Enter passphrase for /home/davidparks21/.ssh/my_id_rsa: 
Identity added: /home/davidparks21/.ssh/my_id_rsa (/home/davidparks21/.ssh/my_id_rsa)
add_file: key_cert_copy: invalid argument

添加了详细信息

ssh -v localhost
OpenSSH_7.2p2 Ubuntu-4ubuntu2.4, OpenSSL 1.0.2g  1 Mar 2016

ssh-add ./id_rsa                                   # No passphrase
Identity added: ./id_rsa (./id_rsa)
add_file: key_cert_copy: invalid argument

奇怪的注意:当我运行此测试并echo $?检查退出状态时,我看到退出状态为0,与我最初编写此问题时看到的不同。

相关内容