码迷,mamicode.com
首页 > 其他好文 > 详细

SSH使用expect实现密码交互脚本

时间:2016-03-18 18:10:16      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:ssh   expect   面密码登录   

#!/bin/sh

#tangbo

#QQ 79313760

######################################

######################################

#########install expect###############

yum -y install expect* >> /dev/null

############span rsa##################

ssh-keygen -q -t rsa -N "" -f /root/.ssh/id_rsa 

cat /root/.ssh/id_rsa.pub > /root/.ssh/authorized_keyis 

chmod go-rwx /root/.ssh/authorized_keyis  


auto_ssh_copy_id () {


    expect -c "set timeout -1; 

                spawn ssh-copy-id $2;

                expect {

                    *(yes/no)* {send -- yes\r;exp_continue;}

                    *password:* {send -- $1\r;exp_continue;}

                    eof        {exit 0;}

                }";

}


auto_ssh_copy_id 111111 192.168.11.32 

                 #密码+IP


本文出自 “山猫” 博客,请务必保留此出处http://cqtangbo.blog.51cto.com/2978612/1752523

SSH使用expect实现密码交互脚本

标签:ssh   expect   面密码登录   

原文地址:http://cqtangbo.blog.51cto.com/2978612/1752523

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!