码迷,mamicode.com
首页 > 其他好文 > 详细

Centos7下实现多虚拟机互信

时间:2019-06-07 22:56:06      阅读:102      评论:0      收藏:0      [点我收藏+]

标签: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登录,返回本机

Centos7下实现多虚拟机互信

标签:etc   需要   公钥私钥对   nbsp   tps   linux   star   The   配置文件   

原文地址:https://www.cnblogs.com/zhangjiahao/p/10989245.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!