2021-05-12 14:32:11
CentOS 7 下實現多虛擬機器互信
假設CentOS 7三台虛擬機器A(10.139.8.82)、B(10.139.8.83)、C(10.139.8.84),需要保證三台虛擬機器之間網路的連通性。
操作步驟:
一、在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登入,返回本機
本文永久更新連結地址:http://www.linuxidc.com/Linux/2016-07/133436.htm
相關文章