linux – (ssh)连接关闭

前端之家收集整理的这篇文章主要介绍了linux – (ssh)连接关闭前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
不幸的是我无法访问ssh服务器,我只能看到:
  1. Platform: i586-pc-linux-gnu
  2. Compiled with: liblua-5.2.3 openssl-1.0.1k libpcre-8.35 libpcap-1.6.2 nmap-libdnet-1.12 ipv6
  3. Compiled without:
  4. Available nsock engines: epoll poll select
  5.  
  6. ssh -vvvl user ip
  7.  
  8. debug2: kex_parse_kexinit: first_kex_follows 0
  9. debug2: kex_parse_kexinit: reserved 0
  10. debug2: mac_setup: setup hmac-sha1
  11. debug1: kex: server->client 3des-cbc hmac-sha1 none
  12. debug2: mac_setup: setup hmac-sha1
  13. debug1: kex: client->server 3des-cbc hmac-sha1 none
  14. debug2: bits set: 502/1024
  15. debug1: sending SSH2_MSG_KEXDH_INIT
  16. debug1: expecting SSH2_MSG_KEXDH_REPLY
  17. Connection closed by IP

解决方法

你应该解决添加
  1. MACs=hmac-sha1
  2.  
  3. ssh -o MACs=hmac-sha1 -vvvl user ip

猜你在找的Linux相关文章