标签:etc 需要 公钥私钥对 nbsp tps linux star The 配置文件
假设CentOS 7三台虚拟机A(192.168.111.10)、B(192.168.111.11)、C(192.168.111.12),需要保证三台虚拟机之间网络的连通性。
操作步骤:
一、在A机上配置
①以root用户登录,更改ssh配置文件 /etc/ssh/sshd_config
RSAAuthentication yes #启用rsa认证
PubkeyAuthentication yes #启用公钥私钥配对认证方式
AuthorizedKeysFile .ssh/authorized_keys #公钥文件路径
[root@localhost /]#systemctl restart sshd //重启ssh服务
②生成公钥私钥对
[root@localhost /]#ssh-keygen -t rsa
系统在/root/.ssh下生成id_rsa、id_rsa.pub
③把A机下的id_rsa.pub发送到B、C机
[root@localhost /]#ssh-copy-id -i /root/.ssh/id_rsa.pub 10.139.8.83
[root@localhost /]#ssh-copy-id -i /root/.ssh/id_rsa.pub 10.139.8.84
二、B、C机采用步骤一中相同的方法,要记得改变ip地址
三、实现ssh多机互信
以A机为例
[root@localhost /]#ssh 10.139.8.83 //登录B机
[root@localhost /]#ifconfig //检查是否成功登录
[root@localhost /]#exit //退出ssh登录,返回本机
标签:etc 需要 公钥私钥对 nbsp tps linux star The 配置文件
原文地址:https://www.cnblogs.com/zhangjiahao/p/10989245.html