После новой установки Ubuntu 16.04 я не могу подключиться к определенным хостам через туннель SSH.
Еще одна странность заключалась в том, что при попытке установить туннель через
$ ssh -fN -L 2222:192.168.1.115:22 root@mydomain.me
Я получал:
Unable to negotiate with 1.2.3.4 port 22: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1
Я исправил это, указав:
$ ssh -fN -L 2222:192.168.1.115:22 -oKexAlgorithms=+diffie-hellman-group1-sha1 root@mydomain.me
Один туннель установлен, попытка подключиться к указанному хосту через него, через
$ ssh -p 2222 -vvvv pi@127.0.0.1
зависает около полутора минут на:
$ ssh -p 2222 -vvvv pi@127.0.0.1
OpenSSH_7.2p2 Ubuntu-4, OpenSSL 1.0.2g-fips 1 Mar 2016
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug2: resolving "127.0.0.1" port 2222
debug2: ssh_connect_direct: needpriv 0
debug1: Connecting to 127.0.0.1 [127.0.0.1] port 2222.
debug1: Connection established.
debug1: key_load_public: No such file or directory
debug1: identity file /home/ansel/.ssh/id_rsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/ansel/.ssh/id_rsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/ansel/.ssh/id_dsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/ansel/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/ansel/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/ansel/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/ansel/.ssh/id_ed25519 type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/ansel/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_7.2p2 Ubuntu-4
В конечном итоге он выходит из строя примерно через 3 минуты с:
channel 4: open failed: connect failed:
ssh_exchange_identification: Connection closed by remote host
Подключение с других устройств / ОС, например ConnectBot на Android, работает должным образом.
Может ли кто-нибудь предложить указатели для устранения неполадок?