1. 程式人生 > >centos 秘鑰登陸配置

centos 秘鑰登陸配置

image ssh-key info red mailto 配置 copy 成功 inf

準備:2臺機器,ip分別為:10.1.80.13 10.1.80.14

目的:通過13 ssh遠程訪問14.無需輸入密碼

1、首先在10.1.80.13上生成密鑰對。
cd /root/.ssh
ssh-keygen -t rsa
技術分享圖片

2、在root/.ssh目錄下生成密鑰對 id_rsa和id_rsa.pub
其中id_rsa是私鑰,id_rsa.pub是公鑰。

3、將公鑰直接copy到14的/root/.ssh目錄下
scp id_rsa.pub [email protected]:/root/.ssh

4、將10.1.80.14機器上的id_rsa.pub改名為authorized_keys
cd /root/.ssh
mv id_rsa.pub authorized_keys

5、密鑰設置成功。10.1.80.13 ssh訪問10.1.80.14無需密碼成功
ssh 10.1.80.14

centos 秘鑰登陸配置