我在ubuntu16.04上使用python 2.7.12,试图使用Paramiko包(只需要远程执行ssh命令)
我的代码是
import paramiko
host = "random_host"
ssh = paramiko.SSHCLient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(host)我得到的错误是:
crypthography.exceptions.UnsupportedAlgorithm: this backend does not support this elliptic curve.请帮帮忙
如果只有远程ssh命令有更好的替代方案,请告诉我(我尝试了fabric,但当我尝试连接时仍然失败)
https://stackoverflow.com/questions/47670825
复制相似问题