赞
踩
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())
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。