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

pexpect的pxssh类实现远程操作

时间:2018-05-17 13:33:20      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:info   root   send   getpass   roo   远程操作   操作   name   exp   

技术分享图片

#!/usr/bin/python
import pexpect
from pexpect import pxssh

import getpass
try:
s=pxssh.pxssh()
hostname=‘172.10.224.183‘
username=‘root‘
password=‘123456‘
s.login(hostname,username,password)
s.sendline(‘uptime‘)
s.prompt()
print s.before
s.sendline(‘ls -l‘)
s.prompt()
print s.before
s.sendline(‘df -h‘)
s.prompt()
print s.before
s.logout()
except pxssh.ExceptionPxssh,e:
print "pxssh failed on login."
print str(e)

技术分享图片

 

pexpect的pxssh类实现远程操作

标签:info   root   send   getpass   roo   远程操作   操作   name   exp   

原文地址:https://www.cnblogs.com/mmdln/p/9050148.html

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