ssh recusando conexão com a mensagem “no hostkey alg”

10

Minhas conexões SSH funcionaram bem, mas da semana passada o SSH do meu laptop para a minha placa recusando a conexão. Eu posso fazer uma conexão SSH da placa ao laptop, mas não vice-versa. Eu tentei isso com meu usuário e usuário root e tive o mesmo problema.

Meu Laptop é um Ubuntu 12.10 e minha placa é um Debian 6.

Aqui está a saída detalhada do SSH:

danialbehzadi@danial-HP:~$ ssh -v 192.168.1.2  
OpenSSH_5.2p1, OpenSSL 1.0.1c 10 May 2012
debug1: Reading configuration data /usr/local/etc/ssh_config
debug1: Connecting to 192.168.1.2 [192.168.1.2] port 22.
debug1: Connection established.  
debug1: identity file /home/danialbehzadi/.ssh/identity type -1  
debug1: identity file /home/danialbehzadi/.ssh/id_rsa type 1  
debug1: identity file /home/danialbehzadi/.ssh/id_dsa type -1  
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.0p1 Debian-4  
debug1: match: OpenSSH_6.0p1 Debian-4 pat OpenSSH*  
debug1: Enabling compatibility mode for protocol 2.0  
debug1: Local version string SSH-2.0-OpenSSH_5.2  
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  
no hostkey alg
    
por Danial Behzadi 15.03.2013 / 20:34

1 resposta

8

Eu fiz novas chaves rsa e dsa no quadro e tudo correu bem:

~# ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key
~# ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key
    
por Danial Behzadi 15.03.2013 / 21:05

Tags