2

У меня дома работает SSH-сервер, и я пытаюсь подключиться к нему из школы. Но когда я пытаюсь подключиться, я получаю:

ssh_exchange_identification: read: Connection reset by peer

Однако, когда я ssh с другого клиента, он работает нормально. Та же версия SSH, та же ОС. Когда я делаю:

$ssh me@xx.xxx.xxx.xx -vv

Я получил:

OpenSSH_6.2p2, OSSLShim 0.9.8r 8 Dec 2011
debug1: Reading configuration data /etc/ssh_config
debug1: /etc/ssh_config line 20: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to 72.135.103.38 [72.135.103.38] port 22.
debug1: Connection established.
debug1: identity file /Users/mdow7299/.ssh/id_rsa type 1
debug1: identity file /Users/mdow7299/.ssh/id_rsa-cert type -1
debug1: identity file /Users/mdow7299/.ssh/id_dsa type -1
debug1: identity file /Users/mdow7299/.ssh/id_dsa-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.2
ssh_exchange_identification: read: Connection reset by peer

Таким образом, другие клиенты могут SSH на сервер, но я не могу. Это определенно проблема на стороне клиента. Любая помощь будет оценена.

0