Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. ssh -v myuser@XX.XX.XXX.XX -p 2222
  2. OpenSSH_7.3p1, OpenSSL 1.0.2j 26 Sep 2016
  3. debug1: Reading configuration data /etc/ssh/ssh_config
  4. debug1: Connecting to XX.XX.XXX.XX [XX.XX.XXX.XX] port 2222.
  5. debug1: Connection established.
  6. debug1: identity file /c/Users/Ouss/.ssh/id_rsa type 1
  7. debug1: key_load_public: No such file or directory
  8. debug1: identity file /c/Users/Ouss/.ssh/id_rsa-cert type -1
  9. debug1: key_load_public: No such file or directory
  10. debug1: identity file /c/Users/Ouss/.ssh/id_dsa type -1
  11. debug1: key_load_public: No such file or directory
  12. debug1: identity file /c/Users/Ouss/.ssh/id_dsa-cert type -1
  13. debug1: key_load_public: No such file or directory
  14. debug1: identity file /c/Users/Ouss/.ssh/id_ecdsa type -1
  15. debug1: key_load_public: No such file or directory
  16. debug1: identity file /c/Users/Ouss/.ssh/id_ecdsa-cert type -1
  17. debug1: key_load_public: No such file or directory
  18. debug1: identity file /c/Users/Ouss/.ssh/id_ed25519 type -1
  19. debug1: key_load_public: No such file or directory
  20. debug1: identity file /c/Users/Ouss/.ssh/id_ed25519-cert type -1
  21. debug1: Enabling compatibility mode for protocol 2.0
  22. debug1: Local version string SSH-2.0-OpenSSH_7.3
  23. debug1: Remote protocol version 2.0, remote software version OpenSSH_5.3
  24. debug1: match: OpenSSH_5.3 pat OpenSSH_5* compat 0x0c000000
  25. debug1: Authenticating to XX.XX.XXX.XX:2222 as 'myuser'
  26. debug1: SSH2_MSG_KEXINIT sent
  27. debug1: SSH2_MSG_KEXINIT received
  28. debug1: kex: algorithm: diffie-hellman-group-exchange-sha256
  29. debug1: kex: host key algorithm: ssh-rsa
  30. debug1: kex: server->client cipher: aes128-ctr MAC: umac-64@openssh.com compression: none
  31. debug1: kex: client->server cipher: aes128-ctr MAC: umac-64@openssh.com compression: none
  32. debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(2048<3072<8192) sent
  33. debug1: got SSH2_MSG_KEX_DH_GEX_GROUP
  34. debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
  35. debug1: got SSH2_MSG_KEX_DH_GEX_REPLY
  36. debug1: Server host key: ssh-rsa SHA256:R0Wzw4nu+ko/G13Og1JgIViSkSAGk/Wzg9y2eRSsgU0
  37. debug1: Host '[XX.XX.XXX.XX]:2222' is known and matches the RSA host key.
  38. debug1: Found key in /c/Users/Ouss/.ssh/known_hosts:1
  39. debug1: rekey after 4294967296 blocks
  40. debug1: SSH2_MSG_NEWKEYS sent
  41. debug1: expecting SSH2_MSG_NEWKEYS
  42. debug1: rekey after 4294967296 blocks
  43. debug1: SSH2_MSG_NEWKEYS received
  44. debug1: SSH2_MSG_SERVICE_ACCEPT received
  45.  
  46.  
  47. debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic
  48. debug1: Next authentication method: publickey
  49. debug1: Offering RSA public key: /c/Users/Ouss/.ssh/id_rsa
  50. debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic
  51. debug1: Trying private key: /c/Users/Ouss/.ssh/id_dsa
  52. debug1: Trying private key: /c/Users/Ouss/.ssh/id_ecdsa
  53. debug1: Trying private key: /c/Users/Ouss/.ssh/id_ed25519
  54. debug1: No more authentication methods to try.
  55. Permission denied (publickey,gssapi-keyex,gssapi-with-mic).
  56.  
  57. # Authentication:
  58.  
  59. #LoginGraceTime 2m
  60. PermitRootLogin no
  61. StrictModes yes
  62. MaxAuthTries 3
  63. #MaxSessions 10
  64.  
  65. RSAAuthentication yes
  66. PubkeyAuthentication yes
  67. AuthorizedKeysFile ssh/authorized_keys
  68. #AuthorizedKeysCommand none
  69. #AuthorizedKeysCommandRunAs nobody
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement