環(huán)境:
本地主機(jī):ha01
eth0: 192.168.1.100 //對(duì)外IP地址
遠(yuǎn)程主機(jī):ha02
eth0: 192.168.1.200 //對(duì)外IP地址
本地主機(jī)ha01配置:
復(fù)制代碼 代碼如下:
[root@ha01 /]# cd /etc/ssh
[root@ha01 ssh]# ssh-keygen -t rsa -N "" (該步驟生成key公私密鑰對(duì),-N ""表示密鑰對(duì)短語(yǔ)為空)
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
82:2c:74:43:8e:16:f4:ef:ac:91:0f:d7:6f:a6:f3:59 root@ha01
復(fù)制公共密鑰到遠(yuǎn)程主機(jī)(原始方法):
若ha02服務(wù)器上/root/.ssh/authorized_keys文件不存在
復(fù)制代碼 代碼如下:
[root@ha01 ssh]# scp /root/.ssh/id_rsa.pub root@192.168.1.200:/root/.ssh/authorized_keys
若authorized_keys文件存在
ha01上執(zhí)行:
復(fù)制代碼 代碼如下:
[root@ha01 ssh]# scp /root/.ssh/id_rsa.pub root@192.168.1.200:/root/.ssh/
ha02上執(zhí)行:
復(fù)制代碼 代碼如下:
[root@ha02 /]# cat /root/.ssh/id_rsa.pub >> /root/.ssh/authorized_keys
復(fù)制公共密鑰到遠(yuǎn)程主機(jī)(新方法):
可以使用ssh-copy-id方便安全的將公共密鑰復(fù)制到遠(yuǎn)程主機(jī)
ha01上執(zhí)行:
復(fù)制代碼 代碼如下:
[root@ha01 ssh]# ssh-copy-id -i ~/.ssh/id_rsa.pub root@192.168.1.200
SSH登錄測(cè)試:
復(fù)制代碼 代碼如下:
[root@ha01 ssh]# ssh ha02
Last login: Fri Apr 8 10:41:28 2011 from ha01
您可能感興趣的文章:- 使用ssh-keygen,實(shí)現(xiàn)免密碼登陸linux的方法
- windows安裝openssh并通過生成SSH密鑰登錄Linux服務(wù)器
- 實(shí)現(xiàn)一臺(tái)或者多臺(tái)Linux實(shí)例解綁SSH密鑰對(duì)
- 深入淺析SSH的三個(gè)組件ssh、sftp、scp
- 使用PSSH批量管理Linux服務(wù)器
- Redis未授權(quán)訪問配合SSH key文件利用詳解
- SSH原理及兩種登錄方法圖文詳解
- 創(chuàng)建支持SSH服務(wù)的Docker鏡像的方法
- CentOS7增加或修改SSH端口號(hào)的方法
- PyCharm設(shè)置SSH遠(yuǎn)程調(diào)試的方法
- 詳解基于django實(shí)現(xiàn)的webssh簡(jiǎn)單例子
- SSH 上傳文件及文件夾到linux服務(wù)器的方法
- CentOS6.5與CentOS7 ssh修改默認(rèn)端口號(hào)的方法
- Spring+Hibernate+Struts(SSH)框架整合實(shí)戰(zhàn)
- ubuntu16.04安裝ssh服務(wù)并實(shí)現(xiàn)遠(yuǎn)程訪問的方法
- rsync指定ssh端口進(jìn)行文件同步的方法
- 利用python 更新ssh 遠(yuǎn)程代碼 操作遠(yuǎn)程服務(wù)器的實(shí)現(xiàn)代碼
- 用Go寫一個(gè)輕量級(jí)的ssh批量操作工具的方法
- python SSH模塊登錄,遠(yuǎn)程機(jī)執(zhí)行shell命令實(shí)例解析
- SSH的ssh-keygen命令基本用法詳解