import paramiko import time def verification_ssh(host,username,password,port,root_pwd,cmd): s=paramiko.SSHClient() s.load_system_host_keys() s.set_missing_host_key_policy(paramiko.AutoAddPolicy()) s.connect(hostname = host,port=int(port),username=username, password=password) ssh = s.invoke_shell() time.sleep(0.1) ssh.send('su - \n') buff = '' if not buff.endswith('Password: '): resp = ssh.recv(9999) buff +=resp ssh.send(root_pwd) ssh.send('\n') buff = '' if not buff.endswith('# '): resp = ssh.recv(9999) buff +=resp buff = '' stdin, stdout, stderr = s.exec_command(cmd) result = stdout.read() print result stdin,stdout,stderr = s.exec_command('echo hello') print stdout.read() s.close() if __name__ == "__main__": verification_ssh('192.168.1.105','gyh','123456','22','123456','id')
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。