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

python的paramiko模块

时间:2017-04-27 19:22:49      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:div   连接服务器   top   mis   stdout   pytho   tran   nec   splay   

paramiko模块基于ssh,用于连接远程服务器并执行相关操作。

sshclient:用于连接远程服务器并执行基本命令:

技术分享
import paramiko

# 创建ssh对象
ssh = paramiko.SSHClient()
# 允许连接不在know_hosts文件中的主机
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
# 连接服务器
ssh.connect(hostname=192.168.254.130, port=22, username=root,
            password=123456)
# 执行命令
stdin, stdout, stderr = ssh.exec_command(service iptables stop)
# 获取命令执行结果
result = stdout.read()
print(result.decode())
# 关闭连接
ssh.close()
基于用户名和密码连接
技术分享SSHClient封装为transport

 

python的paramiko模块

标签:div   连接服务器   top   mis   stdout   pytho   tran   nec   splay   

原文地址:http://www.cnblogs.com/caibao666/p/6775449.html

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