Centos7下如何實(shí)現(xiàn)多虛擬機(jī)互信
添加時(shí)間:2019-7-12 20:29:22
添加:
思海網(wǎng)絡(luò)
現(xiàn)在有三臺(tái)虛擬機(jī):A(192.168.10.82)、B(192.168.10.83)、C(192.168.10.84),首先需要保證三臺(tái)虛擬機(jī)之間網(wǎng)絡(luò)的連通性。
具體實(shí)現(xiàn)步驟:
一、在A機(jī)上配置
①以root用戶登錄,更改ssh配置文件 /etc/ssh/sshd_config
RSAAuthentication yes #啟用rsa認(rèn)證
PubkeyAuthentication yes #啟用公鑰私鑰配對(duì)認(rèn)證方式
AuthorizedKeysFile .ssh/authorized_keys #公鑰文件路徑
[root@localhost /]#systemctl restart sshd //重啟ssh服務(wù)
②生成公鑰私鑰對(duì)
[root@localhost /]#ssh-keygen -t rsa
系統(tǒng)在/root/.ssh下生成id_rsa、id_rsa.pub
③把A機(jī)下的id_rsa.pub發(fā)送到B、C機(jī)
[root@localhost /]#ssh-copy-id -i /root/.ssh/id_rsa.pub 192.168.10.83
[root@localhost /]#ssh-copy-id -i /root/.ssh/id_rsa.pub 192.168.10.84
二、B、C機(jī)采用步驟一中相同的方法,要記得改變ip地址
三、實(shí)現(xiàn)ssh多機(jī)互信
以A機(jī)為例
[root@localhost /]#ssh 192.168.10.83 //登錄到B機(jī)
[root@localhost /]#ifconfig //檢查是否成功登錄
[root@localhost /]#exit //退出ssh登錄,返回A本機(jī)
關(guān)鍵字:Centos7、多虛擬機(jī)、互信
新文章:
- CentOS7下圖形配置網(wǎng)絡(luò)的方法
- CentOS 7如何添加刪除用戶
- 如何解決centos7雙系統(tǒng)后丟失windows啟動(dòng)項(xiàng)
- CentOS單網(wǎng)卡如何批量添加不同IP段
- CentOS下iconv命令的介紹
- Centos7 SSH密鑰登陸及密碼密鑰雙重驗(yàn)證詳解
- CentOS 7.1添加刪除用戶的方法
- CentOS查找/掃描局域網(wǎng)打印機(jī)IP講解
- CentOS7使用hostapd實(shí)現(xiàn)無AP模式的詳解
- su命令不能切換root的解決方法
- 解決VMware下CentOS7網(wǎng)絡(luò)重啟出錯(cuò)
- 解決Centos7雙系統(tǒng)后丟失windows啟動(dòng)項(xiàng)
- CentOS下如何避免文件覆蓋
- CentOS7和CentOS6系統(tǒng)有什么不同呢
- Centos 6.6默認(rèn)iptable規(guī)則詳解