Я пытаюсь SSH к моему местному Raspberry Pi, и я получаю:
eran-mac:~ eran$ ssh 192.168.178.24
ssh_exchange_identification: Connection closed by remote host
eran-mac:~ eran$
Я попытался с -v, а затем:
eran-mac:~ eran$ ssh -v 192.168.178.24
OpenSSH_5.9p1, OpenSSL 0.9.8x 10 May 2012
debug1: Reading configuration data /Users/eran/.ssh/config
debug1: /Users/eran/.ssh/config line 1: Applying options for *
debug1: Reading configuration data /etc/ssh_config
debug1: /etc/ssh_config line 20: Applying options for *
debug1: /etc/ssh_config line 53: Applying options for *
debug1: Connecting to 192.168.178.24 [192.168.178.24] port 22.
debug1: Connection established.
debug1: identity file /Users/eran/.ssh/id_rsa type -1
debug1: identity file /Users/eran/.ssh/id_rsa-cert type -1
debug1: identity file /Users/eran/.ssh/id_dsa type -1
debug1: identity file /Users/eran/.ssh/id_dsa-cert type -1
ssh_exchange_identification: Connection closed by remote host
eran-mac:~ eran$
Ответы:
В большинстве случаев это проблема со стороны сервера, поэтому проверьте свой Raspberry Pi.
Большинство дистрибутивов GNU / Linux имеют
/var/log/secure
, вы можете найти больше данных о том, почему соединение закрыто.Также проверьте
/etc/hosts.deny
и ,/etc/hosts.allow
если они , возможно , блокирует доступ. Быстрое исправление может выполнить эту команду в оболочке:Некоторые дополнительные решения, которые вы можете проверить, можно найти здесь: http://www.linuxquestions.org/questions/linux-software-2/ssh_exchange_identification-connection-closed-by-remote-host-103423/
источник
ssh usernameOnPi@192.168.178.24