HI END


一种永不妥协,追求极致与完美的精神与态度。
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

建立服务器间ssh公钥信任

Posted on 2012-08-31 15:38  HI END  阅读(193)  评论(0编辑  收藏  举报

假设有A:192.168.0.10

   B:192.168.0.11

A想不使用密码ssh连接B

在A机器上执行以下命令:

ssh-keygen -t rsa 

ssh-copy-id -i /root/.ssh/id_rsa.pub root@192.168.0.11

B想不使用密码ssh连接A

ssh-keygen -t rsa 

ssh-copy-id -i /root/.ssh/id_rsa.pub root@192.168.0.12