2016-09-29 4 views
-2

Я пытался получить доступ к моему серверу малины, используя ssh. В Windows 7 я использую cygwin. Вот команда, которую я использовал.Может SSH через шпатлевку, но сбой через терминал

ssh [email protected] -v 

И вот результат

OpenSSH_7.3p1, OpenSSL 1.0.2h 3 May 2016 
debug1: Connecting to 10.34.8.56 [10.34.8.56] port 22. 
debug1: Connection established. 
debug1: identity file /home/Maswari/.ssh/id_rsa type 1 
debug1: key_load_public: No such file or directory 
debug1: identity file /home/Maswari/.ssh/id_rsa-cert type -1 
debug1: key_load_public: No such file or directory 
debug1: identity file /home/Maswari/.ssh/id_dsa type -1 
debug1: key_load_public: No such file or directory 
debug1: identity file /home/Maswari/.ssh/id_dsa-cert type -1 
debug1: key_load_public: No such file or directory 
debug1: identity file /home/Maswari/.ssh/id_ecdsa type -1 
debug1: key_load_public: No such file or directory 
debug1: identity file /home/Maswari/.ssh/id_ecdsa-cert type -1 
debug1: key_load_public: No such file or directory 
debug1: identity file /home/Maswari/.ssh/id_ed25519 type -1 
debug1: key_load_public: No such file or directory 
debug1: identity file /home/Maswari/.ssh/id_ed25519-cert type -1 
debug1: Enabling compatibility mode for protocol 2.0 
debug1: Local version string SSH-2.0-OpenSSH_7.3 
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.7p1 Raspbian-5+deb8u3 
debug1: match: OpenSSH_6.7p1 Raspbian-5+deb8u3 pat OpenSSH* compat 0x04000000 
debug1: Authenticating to 10.34.8.56:22 as 'pi' 
debug1: SSH2_MSG_KEXINIT sent 
Connection reset by 10.34.8.56 port 22 

Я также пытаюсь SSH с помощью Ubuntu внутри бродяга с помощью этой команды

ssh [email protected] -v 

И результат был

OpenSSH_6.6.1, OpenSSL 1.0.1f 6 Jan 2014 
debug1: Reading configuration data /etc/ssh/ssh_config 
debug1: /etc/ssh/ssh_config line 19: Applying options for * 
debug1: Connecting to 10.34.8.56 [10.34.8.56] port 22. 
debug1: Connection established. 
debug1: identity file /home/vagrant/.ssh/id_rsa type 1 
debug1: identity file /home/vagrant/.ssh/id_rsa-cert type -1 
debug1: identity file /home/vagrant/.ssh/id_dsa type -1 
debug1: identity file /home/vagrant/.ssh/id_dsa-cert type -1 
debug1: identity file /home/vagrant/.ssh/id_ecdsa type -1 
debug1: identity file /home/vagrant/.ssh/id_ecdsa-cert type -1 
debug1: identity file /home/vagrant/.ssh/id_ed25519 type -1 
debug1: identity file /home/vagrant/.ssh/id_ed25519-cert type -1 
debug1: Enabling compatibility mode for protocol 2.0 
debug1: Local version string SSH-2.0-OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.8 
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.7p1 Raspbian-5+deb8u3 
debug1: match: OpenSSH_6.7p1 Raspbian-5+deb8u3 pat OpenSSH* compat 0x04000000 
debug1: SSH2_MSG_KEXINIT sent 
Connection closed by 10.34.8.56 

Но как-то , когда я пытаюсь связать нас PuTTY, все в порядке. Я могу получить доступ к своему серверу. Я смотрю журнал SSH и дать мне конкретный результат

sshd[6553]: fatal: Read from socket failed: Connection reset by peer [preauth] 
sshd[6823]: fatal: Read from socket failed: Connection reset by peer [preauth] 
sshd[6934]: Accepted password for pi from 172.19.0.5 port 51395 ssh2 
sshd[6934]: pam_unix(sshd:session): session opened for user pi by (uid=0) 

SSH из Cygwin и терминал кажется производить эту ошибку

sshd[6553]: fatal: Read from socket failed: Connection reset by peer [preauth] 

Я уже переустанавливать SSH на сервере, регенерировать ключи, но все же дают тот же результат. Кто-нибудь знает, как это решить. Поэтому я могу получить доступ к моему серверу через терминал или PuTTY.

ответ

0

SSHD [6553]: со смертельным исходом: Чтение из сокета не удалось: сброса Подключение к одноранговой [PREAUTH]

Это означает, что есть SSH-ключ генерируется и только человек с этим ключом может доступ к нему. Чтобы исправить это делать ...

sudo apt-get purge openssh-server 

затем

sudo apt-get autoremove 

последний

sudo apt-get install openssh-server 

попробуйте

ssh -i deployment_key.txt [email protected] 

 Смежные вопросы

  • Нет связанных вопросов^_^