Python 은 SSH 원 격 로그 인 을 실현 하고 원 격 명령 을 실행 합 니 다.

1522 단어 python
주로 paramiko 모듈 사용
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()  

좋은 웹페이지 즐겨찾기