1

Я установил openssh как сервис с помощью cygwin, используя этот учебник
Я могу SSH в локальный хост из Cygwin.
Однако, когда я пытаюсь сделать это из putty, я получаю сообщение об ошибке "сервер отклонил наш ключ".

В процессе установки в папке .ssh были созданы id_rsa и id_rsa.pub .
Я взял файл id_rsa , импортировал его в puttygen и сгенерировал файл private.ppk .
Я создал сеанс в putty, чтобы использовать закрытый ключ.

Когда я пытаюсь войти в систему, он запрашивает у меня имя пользователя. После того, как я ввел свое имя пользователя, я получаю ошибку "Отказ от нашего ключа", и он пытается использовать аутентификацию по паролю.

Буду признателен за любую помощь.

РЕДАКТИРОВАТЬ:

В случае, если это помогает, вот вывод успешного SSH к localhost от cygwin

$ ssh -v localhost
OpenSSH_6.0p1, OpenSSL 1.0.1c 10 May 2012
debug1: Reading configuration data /etc/ssh_config
debug1: Connecting to localhost [::1] port 22.
debug1: Connection established.
debug1: identity file /home/Pasha/.ssh/id_rsa type 1
debug1: identity file /home/Pasha/.ssh/id_rsa-cert type -1
debug1: identity file /home/Pasha/.ssh/id_dsa type -1
debug1: identity file /home/Pasha/.ssh/id_dsa-cert type -1
debug1: identity file /home/Pasha/.ssh/id_ecdsa type -1
debug1: identity file /home/Pasha/.ssh/id_ecdsa-cert type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.0
debug1: match: OpenSSH_6.0 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.0
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: sending SSH2_MSG_KEX_ECDH_INIT
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ECDSA 7a:52:.........
debug1: Host 'localhost' is known and matches the ECDSA host key.
debug1: Found key in /home/Pasha/.ssh/known_hosts:1
debug1: ssh_ecdsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password,keyboard-interactive
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /home/Pasha/.ssh/id_rsa
debug1: Server accepts key: pkalg ssh-rsa blen 279
debug1: read PEM private key done: type RSA
debug1: Authentication succeeded (publickey).
Authenticated to localhost ([::1]:22).
debug1: channel 0: new [client-session]
debug1: Requesting no-more-sessions@openssh.com
debug1: Entering interactive session.
Last login: Tue Jul 17 00:14:52 2012 from ::1

1 ответ1

1

Программа ssh-user-config генерирует пару ключей SSH (~/.ssh/id_rsa и ~/.ssh/id_rsa.pub) для пользователя, в который вы вошли в данный момент, и, если вы решите, добавит его в ~/.ssh/authorized_keys , где ~ вероятно, ссылается на /cygdrive/c/cygwin/home или C:\cygwin\home .

Поэтому вам необходимо войти в систему под тем же пользователем, с которым вы запускали ssh-user-config . (Это не cyg_server не sshd , которые являются специальными учетными записями, используемыми для процесса входа по SSH.)

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .