首页 > 代码库 > linux免密码登陆

linux免密码登陆

1 服务端:

ssh-keygen -t rsa
ssh-copy-id -i /root/.ssh/id_rsa.pub 192.168.57.135
[root@192 sh]# more rsa.sh 
#!/bin/sh
#by authors chy 2016
for i in $(cat test.txt)
do
        ssh-copy-id -i /root/.ssh/id_rsa.pub $i
        echo $i"设置密码登录成功"
done
注:可以将IP写在test.txt文件中

2 for循环批量执行免密钥配置如上


3 ssh使用

ssh -l root 192.168.57.131
ssh -l root 192.168.57.135 ‘ifconfig‘


本文出自 “卓尔的博客” 博客,请务必保留此出处http://6874869.blog.51cto.com/6864869/1877924

linux免密码登陆