Python自动化运维--Python模块学习 - Paramiko

SFTPClient常用方法举例

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

原文出处:https://www.cnblogs.com/xiao-apple36/p/9144092.html

 

import paramiko

 

# 获取Transport实例

tran = paramiko.Transport(('10.0.0.3'22))

 

# 连接SSH服务端,使用password

tran.connect(username="root", password='123456')

# 或使用

# 配置私人密钥文件位置

private = paramiko.RSAKey.from_private_key_file('/Users/root/.ssh/id_rsa')

# 连接SSH服务端,使用pkey指定私钥

tran.connect(username="root", pkey=private)

 

# 获取SFTP实例

sftp = paramiko.SFTPClient.from_transport(tran)

 

# 设置上传的本地/远程文件路径

localpath = "/Users/root/Downloads/1.txt"

remotepath = "/tmp/1.txt"

 

# 执行上传动作

sftp.put(localpath, remotepath)

# 执行下载动作

sftp.get(remotepath, localpath)

 

tran.close()

 

 

 

 

Paramiko的综合使用例子

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

class SSHConnection(object):

 

    def __init__(self, host_dict):

        self.host = host_dict['host']

        self.port = host_dict['port']

        self.username = host_dict['username']

        self.pwd = host_dict['pwd']

        self.__k = None

 

    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 run_cmd(self, command):

        """

         执行shell命令,返回字典

         return {'color': 'red','res':error}或

         return {'color': 'green', 'res':res}

        :param command:

        :return:

        """

        ssh = paramiko.SSHClient()

        ssh._transport = self.__transport

        # 执行命令

        stdin, stdout, stderr = ssh.exec_command(command)

        # 获取命令结果

        res = unicode_utils.to_str(stdout.read())

        # 获取错误信息

        error = unicode_utils.to_str(stderr.read())

        # 如果有错误信息,返回error

        # 否则返回res

        if error.strip():

            return {'color':'red','res':error}

        else:

            return {'color''green''res':res}

 

    def upload(self,local_path, target_path):

        # 连接,上传

        sftp = paramiko.SFTPClient.from_transport(self.__transport)

        # 将location.py 上传至服务器 /tmp/test.py

        sftp.put(local_path, target_path, confirm=True)

        # print(os.stat(local_path).st_mode)

        # 增加权限

        # sftp.chmod(target_path, os.stat(local_path).st_mode)

        sftp.chmod(target_path, 0o755)  # 注意这里的权限是八进制的,八进制需要使用0o作为前缀

 

    def download(self,target_path, local_path):

        # 连接,下载

        sftp = paramiko.SFTPClient.from_transport(self.__transport)

        # 将location.py 下载至服务器 /tmp/test.py

        sftp.get(target_path, local_path)

 

    # 销毁

    def __del__(self):

        self.close()

 

  

#unicode_utils.py

def to_str(bytes_or_str):

    """

    把byte类型转换为str

    :param bytes_or_str:

    :return:

    """

    if isinstance(bytes_or_str, bytes):

        value = bytes_or_str.decode('utf-8')

    else:

        value = bytes_or_str

    return value

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值