我使用以下方式通过 SSH 连接到服务器:
ssh -i ~/.ssh/example_rsa root@xxxxxxxxx
我收到以下回复:
Identity added: .ssh/example_rsa ((null))
我想了解:
- 加到什么了?
((null))
最后的那个 是什么意思?
答案1
跑步
ssh -i ~/.ssh/example_rsa root@xxxxxxxxx
从不打印
Identity added: .ssh/example_rsa ((null))
如果你运行了以下命令,它将被打印:
ssh-add ~/.ssh/example_rsa
零意味着评论来自身份文件(来源)。您的私钥可以存储注释,以便于区分不同的密钥:
fprintf(stderr, "Identity added: %s (%s)\n", filename, comment);