Problema ao conectar-se à caixa linux

0

Estou ficando abaixo da exceção quando tentei conectar minha caixa de linux:

(testuser) testuser- ssh -X [email protected]
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@    WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!     @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that the RSA host key has just been changed.
The fingerprint for the RSA key sent by the remote host is
b7:f9:rb:9s:bb:e3:f1:90:4b:af:88:77:1a:da:cf:1c.
Please contact your system administrator.
Add correct host key in /home/testuser/.ssh/known_hosts to get rid of this message.
Offending key in /home/testuser/.ssh/known_hosts:25
RSA host key for hostname.com has changed and you have requested strict checking.
Host key verification failed.

Eu consegui me conectar ao mesmo host mais cedo, mas estou recebendo este erro agora. Devo alterar qualquer coisa no meu arquivo known_hosts para que eu possa se conectar à caixa do Linux.

    
por user2065083 02.04.2013 / 14:43

3 respostas

2

Sua chave RSA da caixa linux pode ter mudado, de uma forma ou de outra. Você deve remover a linha ofensiva (linha 25) em seu arquivo /home/testuser/.ssh/known_hosts e tentar se reconectar.

Por favor, seja cauteloso, pode ser uma vulnerabilidade na sua caixa Linux ou pode ter mudado o IP.

    
por 02.04.2013 / 14:46
0

Remova a entrada da chave ofensiva em /home/testuser/.ssh/known_hosts na linha 25 e tente se conectar ao SSH. Ele pedirá para adicionar uma nova entrada.

    
por 02.04.2013 / 14:47
0

Isso acontece quando você altera o nome do host ou o endereço IP:

permite gerar nova chave no servidor e no cliente substituir pela linha número 25 (no seu caso)

[spatel@08 ~]$  ssh-keyscan -t rsa 10.10.20.8
# 10.10.20.8 SSH-2.0-OpenSSH_4.3
10.10.20.8 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvwwfYRBLtHwuZWIxy9p/NrUFX+qAj9PJHTmwtGbLli1t1WfjXNCy3qWFVSEFaqnqPtvRbSgYYhipHCTrdRSNIzkQMC6y/ZszvNE/Ev4qN8MMRZyBxZV10swGX7WjPRe/MPBGe5Mu8CpmEI4ToQdDnyjwFcfIKOdocWZR6jW9FD3qFzVZFH55ayaDgerpB+hUhuSomtXNsrx6+dp+LS6770RtpWJ+mYCqeLlArIQylJ4k4FDuX+X7e2/TfReQ2ZCpRPpwnPWORuCsgaW3c1l8nUt1I0StLr5joyo0Dm6pzlJ/6qrhgBOygWGYiwZ9K1V8bQ3+WqU+856Ko3RmbRBpSQ==
    
por 02.04.2013 / 15:46

Tags