SSH no Windows Server '08 da Mint 14 - “permissão negada”

1

Então eu tenho tentado de todas as formas para entrar na minha caixa Server '08 via SSH. Eu tentei FreeSSHD e Cygwin. Tudo funciona bem quando estou usando a autenticação SHA pass simples, mas no momento em que tento usar chaves, ocorre o seguinte:

  • a chave id_rsa é reconhecida
  • a senha é aceita
  • mas, em seguida, uma solicitação para a senha do usuário retorna um erro "permissão negada"

Terminal abaixo:

ssh -v -p 22 -i /home/m1ckrz/.ssh/id_rsa [email protected] 
OpenSSH_6.2p2 Ubuntu-6ubuntu0.4, OpenSSL 1.0.1e 11 Feb 2013
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to 10.11.1.22 [10.11.1.22] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: identity file /home/m1ckrz/.ssh/id_rsa type -1
debug1: identity file /home/m1ckrz/.ssh/id_rsa-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.2p2 Ubuntu-6ubuntu0.4
debug1: Remote protocol version 2.0, remote software version WeOnlyDo 2.1.3
debug1: no match: WeOnlyDo 2.1.3
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-cbc hmac-md5 none
debug1: kex: client->server aes128-cbc hmac-md5 none
debug1: sending SSH2_MSG_KEXDH_INIT
debug1: expecting SSH2_MSG_KEXDH_REPLY
debug1: Server host key: RSA f6:cf:a9:fe:42:6e:21:73:84:1e:08:25:b7:b2:5b:38
debug1: Host '10.11.1.22' is known and matches the RSA host key.
debug1: Found key in /root/.ssh/known_hosts:1
debug1: ssh_rsa_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: password,publickey
debug1: Next authentication method: publickey
debug1: Trying private key: /home/m1ckrz/.ssh/id_rsa
debug1: key_parse_private_pem: PEM_read_PrivateKey failed
debug1: read PEM private key done: type <unknown>
Enter passphrase for key '/home/m1ckrz/.ssh/id_rsa': 
debug1: read PEM private key done: type RSA
debug1: Authentications that can continue: password,publickey
debug1: Next authentication method: password
[email protected]'s password: 
debug1: Authentications that can continue: password,publickey
Permission denied, please try again.
[email protected]'s password: 
debug1: Authentications that can continue: password,publickey
Permission denied, please try again.
[email protected]'s password: 
Received disconnect from 10.11.1.22: 2: Too many attempts.
    
por m1ckrz 15.09.2014 / 01:27

2 respostas

0

Você já está usando a opção "verbose" -v of ssh .

Ele também tem uma opção "muito detalhada" -vv .
Ah, e "muito muito detalhado", -vvv , que pode ser muito detalhado!

Espero que você veja qual é o problema quando você corre

ssh -vv -p 22 -i /home/m1ckrz/.ssh/id_rsa [email protected] 2>&1 | less

Se não, tente com -vvv , que lhe dá cerca de 300 linhas de saída.

    
por 15.09.2014 / 03:01
0

Verifique as permissões no seu arquivo de chave privada:

debug1: Trying private key: /home/m1ckrz/.ssh/id_rsa

Se for algo diferente de 600 (rw -------), o SSH normalmente deixará de usá-lo, pois pode ter sido comprometido.

Por exemplo

$ ls -l ~/.ssh/  | grep "[ ]id_rsa"
-rw-------. 1 saml saml  1766 Aug  5 21:43 id_rsa
-rw-r--r--. 1 saml saml   406 Aug  5 21:43 id_rsa.pub

Aumentar a verbosidade de ssh com a mudança adicional de -v vai lançar mais luz sobre o assunto.

$ ssh -vvv ....
    
por 15.09.2014 / 03:38