当前位置:   article > 正文

paramiko使用rsa密钥进行ssh连接,带有密码_paramiko rsakey

paramiko rsakey

paramiko使用rsa密钥进行ssh连接,带有密码
其中StringIO是file-like对象。
加载入内存中。

像open()函数返回的这种有个read()方法的对象,在Python中统称为file-like Object。除了file外,还可以是内存的字节流,网络流,自定义流等等。file-like Object不要求从特定类继承,只要写个read()方法就行。

StringIO BytesIO就是在内存中创建的file-like Object,常用作临时缓冲。

**很多时候,数据读写不一定是文件,也可以在内存中读写。**要想在内存中对数据进行读写,就要使用到StringIO和BytesIO了。前者是对字符串数据的读写,后者是对二进制数据的读写。

#!/usr/bin/python3.10
# -*- coding: utf-8 -*-  

import paramiko

from io import StringIO

pkey = """
-----END OPENSSH PRIVATE KEY-----"""

# 有解密密码时,
key = paramiko.RSAKey.from_private_key(StringIO(pkey), password='passwd123')

paramiko.util.log_to_file('paramiko.log')

ssh=paramiko.SSHClient()

# 通过公共方式进行认证 (不需要在known_hosts 文件中存在)
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())

# ssh.load_system_host_keys() #如通过known_hosts 方式进行认证可以用这个,如果known_hosts 文件未定义还需要定义 known_hosts  

# 这里要 pkey passwordkey 密钥文件
ssh.connect('120.xxx.xx.xx', username='linuxuser', pkey=key)

stdin, stdout, stderr = ssh.exec_command('hostname')

print(stdout.read())

stdin, stdout, stderr = ssh.exec_command('ls')

print(stdout.read())

  • 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

参考:
Python file-like object

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号