项目总结(三)----------Python实现SSH远程登陆,并执行命令!

来源:互联网 发布:流量免费打电话软件 编辑:程序博客网 时间:2024/04/28 13:27

在自动化测试过程中,比较常用的操作就是对远程主机进行操作,如何操作呢?使用SSH远程登陆到主机,然后执行相应的command即可。


使用Python来实现这些操作就相当简单了。下面是测试code。


代码如下:(code运行环境:python27+eclipse+pydev)

import paramikodef sshclient_execmd(hostname, port, username, password, execmd):    paramiko.util.log_to_file("paramiko.log")        s = paramiko.SSHClient()    s.set_missing_host_key_policy(paramiko.AutoAddPolicy())        s.connect(hostname=hostname, port=port, username=username, password=password)    stdin, stdout, stderr = s.exec_command (execmd)    stdin.write("Y")  # Generally speaking, the first connection, need a simple interaction.        print stdout.read()        s.close()            def main():        hostname = '10.***.***.**'    port = 22    username = 'root'    password = '******'    execmd = "free"        sshclient_execmd(hostname, port, username, password, execmd)        if __name__ == "__main__":    main()
















1 0