Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2016
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.82 KB | None | 0 0
  1. import paramiko
  2. paramiko.util.log_to_file("filename.log")
  3. def connect():
  4. client=paramiko.SSHClient()
  5. client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
  6. client.connect('192.168.0.100',username='XXX',password='XXX')
  7. chan = client.get_transport().open_session()
  8. chan.send("Hello")
  9. print chan.recv(1024)
  10. connect()
  11.  
  12. DEB [20160703-06:53:33.249] thr=1 paramiko.transport: starting thread (client mode): 0xb53dd250L
  13. DEB [20160703-06:53:33.249] thr=1 paramiko.transport: Local version/idstring: SSH-2.0-paramiko_2.0.1
  14. DEB [20160703-06:53:33.305] thr=1 paramiko.transport: Remote version/idstring: SSH-2.0-paramiko_1.15.3
  15. INF [20160703-06:53:33.305] thr=1 paramiko.transport: Connected (version 2.0, client paramiko_1.15.3)
  16. DEB [20160703-06:53:33.306] thr=1 paramiko.transport: kex algos:[u'diffie-hellman-group14-sha1', u'diffie-hellman-group-exchange-sha1', u'diffie-hellman-group1-sha1'] server key:[u'ssh-rsa'] client encrypt:[u'aes128-ctr', u'aes256-ctr', u'aes128-cbc', u'blowfish-cbc', u'aes256-cbc', u'3des-cbc', u'arcfour128', u'arcfour256'] server encrypt:[u'aes128-ctr', u'aes256-ctr', u'aes128-cbc', u'blowfish-cbc', u'aes256-cbc', u'3des-cbc', u'arcfour128', u'arcfour256'] client mac:[u'hmac-sha1', u'hmac-md5', u'hmac-sha1-96', u'hmac-md5-96'] server mac:[u'hmac-sha1', u'hmac-md5', u'hmac-sha1-96', u'hmac-md5-96'] client compress:[u'none'] server compress:[u'none'] client lang:[u''] server lang:[u''] kex follows?False
  17. DEB [20160703-06:53:33.306] thr=1 paramiko.transport: Kex agreed: diffie-hellman-group1-sha1
  18. DEB [20160703-06:53:33.306] thr=1 paramiko.transport: Cipher agreed: aes128-ctr
  19. DEB [20160703-06:53:33.306] thr=1 paramiko.transport: MAC agreed: hmac-md5
  20. DEB [20160703-06:53:33.306] thr=1 paramiko.transport: Compression agreed: none
  21. ERR [20160703-06:53:33.350] thr=1 paramiko.transport: Unknown exception: No module named _cffi_backend
  22. ERR [20160703-06:53:33.353] thr=1 paramiko.transport: Traceback (most recent call last):
  23. ERR [20160703-06:53:33.353] thr=1 paramiko.transport: File "/usr/local/lib/python2.7/dist-packages/paramiko/transport.py", line 1772, in run
  24. ERR [20160703-06:53:33.353] thr=1 paramiko.transport: self.kex_engine.parse_next(ptype, m)
  25. ERR [20160703-06:53:33.353] thr=1 paramiko.transport: File "/usr/local/lib/python2.7/dist-packages/paramiko/kex_group1.py", line 75, in parse_next
  26. ERR [20160703-06:53:33.353] thr=1 paramiko.transport: return self._parse_kexdh_reply(m)
  27. ERR [20160703-06:53:33.353] thr=1 paramiko.transport: File "/usr/local/lib/python2.7/dist-packages/paramiko/kex_group1.py", line 111, in _parse_kexdh_reply
  28. ERR [20160703-06:53:33.353] thr=1 paramiko.transport: self.transport._verify_key(host_key, sig)
  29. ERR [20160703-06:53:33.353] thr=1 paramiko.transport: File "/usr/local/lib/python2.7/dist-packages/paramiko/transport.py", line 1617, in _verify_key
  30. ERR [20160703-06:53:33.353] thr=1 paramiko.transport: key = self._key_info[self.host_key_type](Message(host_key))
  31. ERR [20160703-06:53:33.353] thr=1 paramiko.transport: File "/usr/local/lib/python2.7/dist-packages/paramiko/rsakey.py", line 58, in __init__
  32. ERR [20160703-06:53:33.353] thr=1 paramiko.transport: ).public_key(default_backend())
  33. ERR [20160703-06:53:33.353] thr=1 paramiko.transport: File "/usr/local/lib/python2.7/dist-packages/cryptography/hazmat/backends/__init__.py", line 35, in default_backend
  34. ERR [20160703-06:53:33.353] thr=1 paramiko.transport: _default_backend = MultiBackend(_available_backends())
  35. ERR [20160703-06:53:33.353] thr=1 paramiko.transport: File "/usr/local/lib/python2.7/dist-packages/cryptography/hazmat/backends/__init__.py", line 22, in _available_backends
  36. ERR [20160703-06:53:33.353] thr=1 paramiko.transport: "cryptography.backends"
  37. ERR [20160703-06:53:33.353] thr=1 paramiko.transport: File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2235, in resolve
  38. ERR [20160703-06:53:33.353] thr=1 paramiko.transport: module = __import__(self.module_name, fromlist=['__name__'], level=0)
  39. ERR [20160703-06:53:33.354] thr=1 paramiko.transport: File "/usr/local/lib/python2.7/dist-packages/cryptography/hazmat/backends/openssl/__init__.py", line 7, in <module>
  40. ERR [20160703-06:53:33.354] thr=1 paramiko.transport: from cryptography.hazmat.backends.openssl.backend import backend
  41. ERR [20160703-06:53:33.354] thr=1 paramiko.transport: File "/usr/local/lib/python2.7/dist-packages/cryptography/hazmat/backends/openssl/backend.py", line 15, in <module>
  42. ERR [20160703-06:53:33.354] thr=1 paramiko.transport: from cryptography import utils, x509
  43. ERR [20160703-06:53:33.354] thr=1 paramiko.transport: File "/usr/local/lib/python2.7/dist-packages/cryptography/x509/__init__.py", line 7, in <module>
  44. ERR [20160703-06:53:33.354] thr=1 paramiko.transport: from cryptography.x509.base import (
  45. ERR [20160703-06:53:33.354] thr=1 paramiko.transport: File "/usr/local/lib/python2.7/dist-packages/cryptography/x509/base.py", line 15, in <module>
  46. ERR [20160703-06:53:33.354] thr=1 paramiko.transport: from cryptography.x509.extensions import Extension, ExtensionType
  47. ERR [20160703-06:53:33.354] thr=1 paramiko.transport: File "/usr/local/lib/python2.7/dist-packages/cryptography/x509/extensions.py", line 19, in <module>
  48. ERR [20160703-06:53:33.354] thr=1 paramiko.transport: from cryptography.hazmat.primitives import constant_time, serialization
  49. ERR [20160703-06:53:33.354] thr=1 paramiko.transport: File "/usr/local/lib/python2.7/dist-packages/cryptography/hazmat/primitives/constant_time.py", line 9, in <module>
  50. ERR [20160703-06:53:33.358] thr=1 paramiko.transport: from cryptography.hazmat.bindings._constant_time import lib
  51. ERR [20160703-06:53:33.358] thr=1 paramiko.transport: ImportError: No module named _cffi_backend
  52. ERR [20160703-06:53:33.358] thr=1 paramiko.transport:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement