openssh no servidor Windows 7, exibe putty "recusou nossa chave"

1

Instalei o openssh como um serviço com a ajuda do cygwin usando este tutorial
Eu posso ssh em localhost de cygwin.
No entanto, quando tento fazer isso com putty, recebo um erro "servidor recusado nossa chave".

Durante o processo de configuração, id_rsa e id_rsa.pub foram gerados na pasta .ssh.
Eu peguei o arquivo id_rsa , importei para o puttygen e gerou o arquivo private.ppk .
Eu criei uma sessão no putty para usar a chave privada.

Quando tento fazer o login, ele me pede o nome de usuário. Depois de inserir meu nome de usuário, recebo um erro "Recusou nossa chave" e ele tenta usar a autenticação de senha.

Eu gostaria de receber ajuda.

EDITAR:

Caso isso aconteça, aqui está uma saída de um SSH bem-sucedido para o localhost do 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 [email protected]
debug1: Entering interactive session.
Last login: Tue Jul 17 00:14:52 2012 from ::1
    
por PBG 17.07.2012 / 05:26

1 resposta

1

O programa ssh-user-config gera um par de chaves SSH ( ~/.ssh/id_rsa e ~/.ssh/id_rsa.pub ) para o usuário com o qual você está conectado no momento e, se preferir, adiciona isso a ~/.ssh/authorized_keys , onde ~ provavelmente se refere para /cygdrive/c/cygwin/home ou C:\cygwin\home .

Portanto, você precisa fazer login como o mesmo usuário em que você executou ssh-user-config as. (Isso não é nem cyg_server nem sshd , que são contas especiais usadas para o processo de login do SSH.)

    
por 17.07.2012 / 06:18