Estou recebendo este erro “ssh_exchange_identification:”

3

Tudo funcionou bem até ontem e agora, de repente, estou recebendo este erro se eu digitar

ssh -D 9999 [email protected]
ssh_exchange_identification: Connection closed by remote host

Aqui está a saída:

OpenSSH_5.8p1 Debian-7ubuntu1, OpenSSL 1.0.0e 6 Sep 2011
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to 172.16.30.30 [172.16.30.30] port 22.
debug1: Connection established.
debug3: Incorrect RSA1 identifier
debug3: Could not load "/home/adnan/.ssh/id_rsa" as a RSA1 public key
debug2: key_type_from_name: unknown key type '-----BEGIN'
debug3: key_read: missing keytype
debug2: key_type_from_name: unknown key type 'Proc-Type:'
debug3: key_read: missing keytype
debug2: key_type_from_name: unknown key type 'DEK-Info:'
debug3: key_read: missing keytype
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug2: key_type_from_name: unknown key type '-----END'
debug3: key_read: missing keytype
debug1: identity file /home/adnan/.ssh/id_rsa type 1
debug1: Checking blacklist file /usr/share/ssh/blacklist.RSA-2048
debug1: Checking blacklist file /etc/ssh/blacklist.RSA-2048
debug1: identity file /home/adnan/.ssh/id_rsa-cert type -1
debug1: identity file /home/adnan/.ssh/id_dsa type -1
debug1: identity file /home/adnan/.ssh/id_dsa-cert type -1
debug1: identity file /home/adnan/.ssh/id_ecdsa type -1
debug1: identity file /home/adnan/.ssh/id_ecdsa-cert type -1
ssh_exchange_identification: Connection closed by remote host
    
por adnan kamili 04.04.2012 / 18:04

2 respostas

1

As seguintes linhas podem ser muito enganadoras:

debug3: Could not load "/home/adnan/.ssh/id_rsa" as a RSA1 public key
debug2: key_type_from_name: unknown key type '-----BEGIN'

Por experiência, posso dizer que esse problema pode ser causado pela configuração do servidor, embora as mensagens pareçam estritamente um problema de chave do cliente. Claro, você quer verificar a configuração do seu cliente também. Mas se estiver funcionando e nada no cliente for alterado, verifique a configuração do servidor apesar da mensagem de erro enganosa.

Por exemplo, descobri que se o seu usuário não for não permitido pela configuração ssh no servidor, o cliente ssh dará a mesma mensagem de erro (enganosa).

sudo nano /etc/sshd_config
AllowUsers yourname@*
    
por 04.05.2012 / 23:54
0

Tente alterar o tipo de chave para 2 com a opção -2 .

ssh -2 -D 9999 [email protected]

Esse erro pode ocorrer quando as opções da linha de comando estão incorretas.

    
por 13.04.2012 / 00:11

Tags