Спроба SSH на сервер та отримання key_load_public: Немає подібних файлів чи помилок у каталозі


43

Я створив безкористувацьке ssh-з'єднання до віддаленого сервера від свого Mac. Він працював (!), І тоді я закрив свій термінал, знову відкрив його, спробував ще раз, і отримав наступне (ім'я користувача, мій_іп не справжній):

ssh -vvv username@my_ip
OpenSSH_7.2p2, LibreSSL 2.4.1
debug1: Reading configuration data /Users/Me/.ssh/config
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 20: Applying options for *
debug1: /etc/ssh/ssh_config line 53: Applying options for *
debug2: resolving "my_ip" port 22
debug2: ssh_connect_direct: needpriv 0
debug1: Connecting to my_ip [my_ip] port 22.
debug1: Connection established.
debug1: identity file /Users/Me/.ssh/id_rsa type 1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/Me/.ssh/id_rsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/Me/.ssh/id_dsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/Mes/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/Me/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/Me/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/Me/.ssh/id_ed25519 type -1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/Me/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_7.2
ssh_exchange_identification: read: Connection reset by peer

Коли я перевірив свою .sshпапку, чи id_rsaбув там, але ніхто з інших не був. Із помилки, схоже, мені потрібно якось створити ці файли, але я не знаю, як це зробити.

Будь-яка допомога буде вдячна.


1
Чи є актуальна проблема? Наприклад, ви насправді не ввійшли в систему? Чи можете ви відредагувати своє запитання, щоб включити повний вихід налагодження, а не лише першу частину?
Кенстер

Так; мої вибачення! Я не можу ввійти - і раніше я залишив останній (і, можливо, найважливіший?) Рядок
Ерік

Відповіді:


51
debug1: key_load_public: No such file or directory

Рядок вище - це не помилка, а просто простий журнал налагодження, який говорить, що sshклієнт не в змозі знайти окремий відкритий ключ (названий ~/.ssh/id_rsa.pub). Цей файл не потрібен для підключення до віддаленого сервера, але він може бути корисним.

Фактична помилка

ssh_exchange_identification: read: Connection reset by peer

вказує на помилку в налаштуваннях сервера. Сервер працює, але не приймає з'єднання SSH. Перевірте журнал сервера для отримання додаткової інформації. Подібні проблеми


Це посилання було дуже корисним. І, виявляється, я насправді потрапив у чорний список (я занадто багато разів сш'єв на свій сервер, коли щось тестував.)
Ерік

1
Моя проблема полягала в тому, що хост Bastion змінив IP-адресу, а known_hostsна моєму Mac - це неправильно ... Це показало @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @... Він показує номер рядка на ~/.ssh/known_hosts:238. Отже, я видалив цей рядок, 238 у цьому випадку, з файла знаних_хостів на моєму Mac і спробував знову з’єднатися.
Марчелло де Продаж

3

Проблема: невідповідність хосту бастіону IP не ввімкнена ~/.ssh/known_hosts

У мене був known_hostsфайл старий, коли IP-адреса бастіону змінилася ...

$ ssh 10.82.49.24
ssh_exchange_identification: Connection closed by remote host

Не давали мені жодної інформації. Дивлячись на багатослівний вихід призводить до того ж:

$ ssh -v 10.82.49.24
OpenSSH_7.4p1, LibreSSL 2.5.0
debug1: Reading configuration data /Users/mdesales/.ssh/config
debug1: /Users/mdesales/.ssh/config line 1: Applying options for 10.82.*.*
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Executing proxy command: exec ssh -q -W 10.82.49.24:22 ec2-user@bastion-vpc-xxxxxx.config-yyyyyyy.com -i ~/.ssh/xxxconfig-xxxx.pem
debug1: key_load_public: No such file or directory
debug1: identity file ~/.ssh/xxxconfig-xxxx.pem
debug1: key_load_public: No such file or directory
debug1: identity file ~/.ssh/xxxconfig-xxxx.pem-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_7.4
debug1: permanently_drop_suid: 1647059022
ssh_exchange_identification: Connection closed by remote host

На даний момент, оскільки це проксі-сервер для іншого хоста через бастіон, я міг бачити, що бастіон є проблемою:

$ ssh ec2-user@bastion-vpc-xxxxxx.config-yyyyyyy.com -i ~/.ssh/xxxconfig-xxxx.pem
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@    WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!     @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that a host key has just been changed.
The fingerprint for the ECDSA key sent by the remote host is
SHA256:Z8X1UlIgQ94BKJ7NA/oQi7v0NL4IlFeO7Ou4j76Zphk.
Please contact your system administrator.
Add correct host key in /Users/mdesales/.ssh/known_hosts to get rid of this message.
Offending ECDSA key in /Users/mdesales/.ssh/known_hosts:238
ECDSA host key for ec2-user@bastion-vpc-xxxxxx.config-yyyyyyy.com has changed and you have requested strict checking.
Host key verification failed.

Рішення

Видалення запису на рядку 238 вирішило проблему ... Я міг ssh до бастіону і я можу ssh хостам.

$ vim /Users/mdesales/.ssh/known_hosts

$ ssh ec2-user@bastion-vpc-xxxxxx.config-yyyyyyy.com -i ~/.ssh/xxxconfig-xxxx.pem
The authenticity of host 'ec2-user@bastion-vpc-xxxxxx.config-yyyyyyy.com (34.x.x.y)' can't be established.
ECDSA key fingerprint is SHA256:Z8X1UlIgQ94BKJ7NA/oQi7v0NL4IlFeO7Ou4j76Zphk.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'ec2-user@bastion-vpc-xxxxxx.config-yyyyyyy.com -i ~/.ssh/xxxconfig-xxxx.pem,34.213.y.x' (ECDSA) to the list of known hosts.
********************************************************************************
This is a private computer system containing information that is proprietary
and confidential to the owner of the system.  Only individuals or entities
authorized by the owner of the system are allowed to access or use the system.
Any unauthorized access or use of the system or information is strictly
prohibited.

All violators will be prosecuted to the fullest extent permitted by law.
********************************************************************************
Last login: Wed Aug  2 20:35:55 2017 from 10.81.31.115
[ec2-user@ip-10-82-50-142 ~]$ 

1

Сталося зі мною сьогодні.

Виправлено відключенням моєї WLAN та повторним підключенням. Так, це звучить нерозумно і дурно, але принаймні на одній WLAN це сталося без поважних причин.


0

Та ж проблема, просто опублікуйте рішення тут

Видаліть IP-адресу із /etc/hosts.denyвикористання:

nano /etc/hosts.deny
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.