博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python pexpec 解决scp ssh
阅读量:6326 次
发布时间:2019-06-22

本文共 1440 字,大约阅读时间需要 4 分钟。

paswd_key = '.*assword.*'  匹配Password 

ssh_newkey = '.*(yes/no).*' 匹配 Are you sure you want to continue connecting (yes/no)

 

[python] 
 
  1. #!/usr/bin/python2.7  
  2. import pexpect  
  3. import os, sys, getpass  
  4.   
  5.   
  6. def ssh_command(user, host, password, command):  
  7.     ssh_newkey = '.*(yes/no).*'  
  8.         passwd_key = '.*assword.*'  
  9.     child = pexpect.spawn('ssh -l %s %s %s' %(user, host, command))  
  10.     child.logfile = sys.stdout  
  11.     i = child.expect([pexpect.TIMEOUT, ssh_newkey, passwd_key])  
  12.   
  13.     if i == 0: #timeout  
  14.         print child.before  
  15.         print "Error time out"  
  16.         print child.after  
  17.         return None  
  18.     if i ==1 :  
  19.         child.sendline('yes')  
  20.         i = child.expect([pexpect.TIMEOUT, passwd_key])  
  21.         if i == 0:  
  22.             print child.before  
  23.             print 'time out ERROR'  
  24.             print child.after  
  25.             return None  
  26.     child.sendline(password)  
  27.     return child  
  28.   
  29.   
  30. def scp2(ip, user, passwd, dst_path, filename):  
  31.     passwd_key = '.*assword.*'  
  32.     if os.path.isdir(filename):   
  33.         cmdline = 'scp -r %s %s@%s:%s' % (filename, user, ip, dst_path)   
  34.     else:   
  35.         cmdline = 'scp %s %s@%s:%s' % (filename, user, ip, dst_path)   
  36.     try:  
  37.         child = pexpect.spawn(cmdline)  
  38.         child.expect(passwd_key)  
  39.         child.sendline(passwd)  
  40.         child.expect(pexpect.EOF)  
  41.         #child.interact()  
  42.         #child.read()  
  43.         #child.expect('$')  
  44.         print "uploading"   
  45.     except:  
  46.         print "upload faild!"  
  47.   
  48. def main():  
  49.     host = raw_input('Hostname:')  
  50.     user = raw_input('User:')  
  51.     password = getpass.getpass()  
  52.     command = raw_input('Command:')  
  53.     child = ssh_command(user, host, password, command)  
  54.     child.expect(pexpect.EOF)  
  55.     print child.before  
  56.   
  57. if __name__ == "__main__":  
  58.       
  59. main()  

转载地址:http://nngaa.baihongyu.com/

你可能感兴趣的文章
Fatal error: Class 'GearmanClient' not found解决方法
查看>>
jsoup分解HTML DOM
查看>>
Axure RP介绍
查看>>
ini_set()函数的使用 以及 post_max_size,upload_max_filesize的修改方法
查看>>
联想S720/S720i通刷刷机包 Vibe V1.0
查看>>
java异常 之 异常的层次结构
查看>>
T - stl 的mapⅡ
查看>>
Atitit .c#的未来新特性计划草案
查看>>
mysql分表技术
查看>>
.Net 垃圾回收和大对象处理 内存碎片整理
查看>>
HiKey连接
查看>>
wget 参数大全
查看>>
使用Loadrunner进行文件的上传和下载
查看>>
Linux C 静态库(.a) 与 动态库(.so) 的详解
查看>>
JS函数
查看>>
sql语句分组/排序/计算总数/连接等sql语句书写
查看>>
MVC5 的MicrosoftOwinSecurity扩展插件——微信,QQ登录第三方源码
查看>>
分布式系统理论基础 - CAP
查看>>
mysql 用户管理和权限设置
查看>>
【项目管理和构建】十分钟教程,eclipse配置maven + 创建maven项目
查看>>