Python实现SSH远程登陆,并执行命令!

    xiaoxiao2021-03-25  117

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

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

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

    [python]  view plain  copy import paramiko      def 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()  
    转载请注明原文地址: https://ju.6miu.com/read-5693.html

    最新回复(0)