如何添加 SSH 密钥?

[ad_1]

如何将远程服务器的 Linux SSH 密钥添加到我的本地 Linux 盒子中。 SSH服务器IP地址为192.168.2.3

我尝试过的:

How can I add Linux SSH keys of the remote server to my local Linux box. The SSH server IP address is 192.168.2.3

解决方案1

你应该能够使用 ssh-copy-id user@host 这会将您的 ssh 密钥从当前系统复制到 主持人。 如果您的电脑中有多于一把钥匙 .ssh 文件夹,或通过 ssh-add 添加,您可以使用以下命令选择要复制的密钥 -i 选项。 埃布 ssh-copy-id ~/.ssh/id_ecdsa user@host

如果您没有 ssh-copy-id,则必须手动复制密钥

localhost$ scp ~/.ssh/id_ecdsa.pub user@remote:
localhost$ ssh user@remote
user@remote‘s password:

remotehost$ cat id_ecdsa.pub >> .ssh/authorized_keys
remotehost$ chmod 600 .ssh/authorized_keys
remotehost$ exit

解决方案4

谢谢朋友的回复

解决方案6

复制您的公钥内容并将其粘贴到您的 ssh_authorizedfile 中

[ad_2]

コメント

标题和URL已复制