ssh操作

# -*- coding: utf-8 -*-
"""
-------------------------------------------------
File Name: ssh
Description :
Author : Administrator
date: 2019/6/30 0030
-------------------------------------------------
"""

import paramiko
import uuid,socket


class SSHConnection(object):
def __init__(self, host='172.16.103.191', port=22, username='wupeiqi', pwd='123'):
self.host = host
self.port = port
self.username = username
self.pwd = pwd
self.__k = None

def create_file(self):
file_name = str(uuid.uuid4())
with open(file_name, 'w') as f:
f.write('sb')
return file_name

def run(self):
self.connect()
self.upload('/home/wupeiqi/tttttttttttt.py')
self.rename('/home/wupeiqi/tttttttttttt.py', '/home/wupeiqi/ooooooooo.py')
self.close()

def connect(self):
transport = paramiko.Transport((self.host, self.port))

transport.connect(username=self.username, password=self.pwd)
self.__transport = transport

def close(self):
self.__transport.close()

def upload(self, target_path):
# 连接,上传
file_name = self.create_file()

sftp = paramiko.SFTPClient.from_transport(self.__transport)
# 将location.py 上传至服务器 /tmp/test.py
sftp.put(file_name, target_path)

def rename(self, old_path, new_path):
ssh = paramiko.SSHClient()
ssh._transport = self.__transport
# 执行命令
cmd = "mv %s %s" % (old_path, new_path,)
stdin, stdout, stderr = ssh.exec_command(cmd)
# 获取命令结果
result = stdout.read()

def cmd(self, command):
ssh = paramiko.SSHClient()
ssh._transport = self.__transport
# 执行命令
stdin, stdout, stderr = ssh.exec_command(command)
# 获取命令结果
result = stdout.read()
return result

if __name__ == "__main__":
ha = SSHConnection()
ha.run()
posted @ 2019-06-30 11:19  tny_leyon  阅读(241)  评论(0编辑  收藏  举报