首页 > 系统服务 > 详细

linux免密码登陆

时间:2016-11-29 23:26:42      阅读:246      评论:0      收藏:0      [点我收藏+]

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免密码登陆

原文:http://6874869.blog.51cto.com/6864869/1877924

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!