本文介绍了如何使用带有公钥文件的 Paramiko 访问远程服务器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要在不使用密码的情况下连接到远程服务器,而是使用使用 Python 模块 Paramiko 的公钥文件.
I need to connect to a remote server without the use of a password but using a public keyfile using the Python module Paramiko.
我该怎么做?
推荐答案
使用:
Use key_filename
argument of SSHClient.connect
:
import paramiko
ssh = paramiko.SSHClient()
ssh.connect("example.com", username="user", key_filename="mykeyfile")
尽管您需要私有密钥文件.您无法使用公共密钥文件进行身份验证.
Though you need private key file for that. You cannot authenticate with public key file.
您还需要验证主机密钥:
Paramiko未知服务器"
You will also need to verify the host key:
Paramiko "Unknown Server"
这篇关于如何使用带有公钥文件的 Paramiko 访问远程服务器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!