ssh 互信

A信任B
1,如果没有.ssh  直接安装  yum -y install openssh
在B服务器上
2,cd /root/.ssh/
3,ssh-keygen -t rsa
3,ssh-keygen -t dsa
4,cat id_rsa id_rsa.pub >>authorized_keys
5,scp authorized_keys  Aip:/root/
 在A上
1,diff authorized_keys  .ssh/authorized_keys
2,cp authorized_keys  .ssh/authorized_keys  -rp


在B上测试
ssh Aip

你可能感兴趣的:(ssh 互信)