公钥和私钥
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了公钥和私钥相关的知识,希望对你有一定的参考价值。
ssh无密码认证
1.ssh-keygen #客户端生成公钥和私钥,保存到/root/.ssh/
ssh-copy-id -i id_rsa.pub [email protected]@服务端ip #发送公钥给服务端
#服务端生成authorized_keys
ssh [email protected]服务端ip #测试连接
2.ssh-keygen #服务端生成公钥和私钥,保存到/root/.ssh/
ssh-copy-id -i id_rsa.pub [email protected]@服务端ip #发送公钥给服务端自己
ssh-copy-id -i id_rsa [email protected]@服务端ip #发送私钥给客户端
ssh [email protected]服务端ip #测试连接
以上是关于公钥和私钥的主要内容,如果未能解决你的问题,请参考以下文章