python模組paramiko的上傳下載和遠程執行命令方法

來源:互聯網
上載者:User

    用python實現遠程登陸主機執行命令或通過sftp上傳下載檔案,有個很好的模組paramiko模組來示範這些功能,使用起來很方便,大家可學習一下。寫了幾個小程式,用於說明此模組的使用方法。

1:串連遠程linux主機並執行命令

 
  1. #!/usr/bin/env python 
  2. import paramiko   
  3. hostname='192.168.0.102'  
  4. username='root'  
  5. password='abc'   
  6. port=22     
  7. paramiko.util.log_to_file('paramiko.log')          
  8. s=paramiko.SSHClient()                 
  9. s.set_missing_host_key_policy(paramiko.AutoAddPolicy())          
  10. s.connect(hostname = hostname,port=port,username=username, password=password)          
  11. stdin,stdout,stderr=s.exec_command('free;df -h')          
  12. print stdout.read()          
  13. s.close()  

執行結果如下:

 
  1.              total       used       free     shared    buffers     cached 
  2. Mem:       2074940    2057420      17520          0      42416    1867968 
  3. -/+ buffers/cache:     147036    1927904 
  4. Swap:      2096472        240    2096232 
  5. Filesystem            Size  Used Avail Use% Mounted on 
  6. /dev/sda1              30G   12G   17G  42% / 
  7. none                 1014M     0 1014M   0% /dev/shm 
  8. /dev/sda3             2.0G  289M  1.6G  16% /var 
  9. /dev/sdb1             135G   14G  115G  11% /data 
  10. /dev/sdc1             135G  127G  880M 100% /data1 
  11. /dev/sdd1             135G   99G   30G  78% /data2 

2:串連遠程linux主機上傳下載檔案paramiko模組是用SFTP協議來實現的)

 
  1. #!/usr/bin/env python  
  2. import paramiko,datetime,os 
  3. hostname='192.168.0.102'  
  4. username='root'  
  5. password='abc123'  
  6. port=22  
  7. local_dir='/tmp/'  
  8. remote_dir='/tmp/test/' 
  9. try: 
  10.     t=paramiko.Transport((hostname,port))          
  11.     t.connect(username=username,password=password)          
  12.     sftp=paramiko.SFTPClient.from_transport(t)  
  13.     #files=sftp.listdir(dir_path)          
  14.     files=sftp.listdir(remote_dir)          
  15.     for f in files:                  
  16.         print ''                  
  17.         print '#########################################'                  
  18.         print 'Beginning to download file  from %s  %s ' % (hostname,datetime.datetime.now())                
  19.         print 'Downloading file:',os.path.join(remote_dir,f) 
  20.         sftp.get(os.path.join(remote_dir,f),os.path.join(local_dir,f))#下載               
  21.         #sftp.put(os.path.join(local_dir,f),os.path.join(remote_dir,f))#上傳                 
  22.         print 'Download file success %s ' % datetime.datetime.now()        
  23.         print ''                  
  24.         print '##########################################'   
  25.     t.close() 
  26. except Exception:  
  27.        print "connect error!"  

執行結果:

 
  1. #########################################  
  2. Beginning to download file  from 192.168.0.102  2012-11-05 15:49:01.334686  
  3. Downloading file: /tmp/test/wgetrc Download file success 2012-11-05 15:49:05.955184   
  4. ##########################################   
  5.  
  6. #########################################  
  7. Beginning to download file  from 192.168.0.102  2012-11-05 15:49:05.955342  
  8. Downloading file: /tmp/test/xinetd.conf Download file success 2012-11-05 15:49:10.929568   
  9. ##########################################   
  10.  
  11. #########################################  
  12. Beginning to download file  from 192.168.0.102  2012-11-05 15:49:10.929740  
  13. Downloading file: /tmp/test/warnquota.conf Download file success 2011-12-05 15:49:14.213570   
  14. ##########################################  

 還有好多用法,具體的可以看官方文檔:http://www.lag.net/paramiko/docs/

本文出自 “王偉” 部落格,請務必保留此出處http://wangwei007.blog.51cto.com/68019/1058726

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.