1. 程式人生 > >專案總結(三)----------Python實現SSH遠端登陸,並執行命令!

專案總結(三)----------Python實現SSH遠端登陸,並執行命令!

在自動化測試過程中,比較常用的操作就是對遠端主機進行操作,如何操作呢?使用SSH遠端登陸到主機,然後執行相應的command即可。

使用Python來實現這些操作就相當簡單了。下面是測試code。

程式碼如下:(code執行環境:python27+eclipse+pydev)

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()