Code Monkey home page Code Monkey logo

Comments (2)

tsando avatar tsando commented on July 23, 2024

Hi,

I am getting this error:

---------------------------------------------------------------------------
SSHException                              Traceback (most recent call last)
<ipython-input-1-40609d5a064d> in <module>()
      3 ssh = SSHClient()
      4 ssh.load_system_host_keys()
----> 5 ssh.connect('XX.XXX.XX.XXX')

C:\Apps\Anaconda3\lib\site-packages\paramiko\client.py in connect(self, hostname, port, username, password, pkey, key_filename, timeout, allow_
agent, look_for_keys, compress, sock, gss_auth, gss_kex, gss_deleg_creds, gss_host, banner_timeout, auth_timeout)
    371                 # will raise exception if the key is rejected
    372                 self._policy.missing_host_key(
--> 373                     self, server_hostkey_name, server_key
    374                 )
    375             else:

C:\Apps\Anaconda3\lib\site-packages\paramiko\client.py in missing_host_key(self, client, hostname, key)
    698         client._log(DEBUG, 'Rejecting %s host key for %s: %s' %
    699                     (key.get_name(), hostname, hexlify(key.get_fingerprint())))
--> 700         raise SSHException('Server %r not found in known_hosts' % hostname)
    701
    702

SSHException: Server 'XX.XXX.XX.XXX' not found in known_hosts

when I run:

import paramiko
from scp import SCPClient

ssh = paramiko.SSHClient()
ssh.load_system_host_keys()
ssh.connect('XX.XXX.XX.XXX')

And even if I add ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()), I get a different type of error:

PasswordRequiredException: Private key file is encrypted

yet my key doesn't have a password, so I can't provide a password as argument to ssh.connect.

Any ideas of what could be wrong? I thought ssh.load_system_host_keys() would solve this problem...

Btw, I'm using version paramiko==2.2.1

Thanks for your help.

from scp.py.

remram44 avatar remram44 commented on July 23, 2024

Are you sure it is not encrypted? It might be decrypted automatically by your system's wallet using your login password, or something similar.

Please check the file, if it starts with this, then it is encrypted:

$ cat ~/.id_rsa
-----BEGIN RSA PRIVATE KEY-----
Proc-Type: 4,ENCRYPTED
DEK-Info: AES-128-CBC,BE44494248DC4AB8AA2E178B11EE2A15

from scp.py.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.