import paramiko ssh=paramiko.SSHClient()#创建ssh对象 ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy)#允许连接不在konw_hosts文件中的主机 ssh.connect(hostname="localhost",port=22,username='root',password='123456')#连接服务器 stdin,stdout,sterr=ssh.exec_command('ls')#执行命令 result=stdout.read()#返回结果 print(result.decode('utf-8')) ssh.close()