码迷,mamicode.com
首页 > 编程语言 > 详细

Python ssh 远程执行shell命令

时间:2018-08-30 16:44:37      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:miss   param   client   imp   nbsp   readlines   add   and   tde   

工具

python 
paramiko

远程执行命令

import paramiko

ssh = paramiko.SSHClient()
key = paramiko.AutoAddPolicy()
ssh.set_missing_host_key_policy(key)
ssh.connect(127.0.0.1, 22, user, passwd ,timeout=5)
stdin, stdout, stderr = ssh.exec_command(ls -l)

for i in stdout.readlines():
    print(i)

 

Python ssh 远程执行shell命令

标签:miss   param   client   imp   nbsp   readlines   add   and   tde   

原文地址:https://www.cnblogs.com/navysummer/p/9560739.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!