Não é possível ssh com alias de IP

2

Isto pode soar como um prob estranho. Eu sou capaz de perfeitamente ssh para hosts remotos e também para "localhost".

Como parte do requisito, modifiquei o arquivo / etc / hosts com as entradas abaixo:

127.0.0.1 localhost # we all know this
10.45.65.1 master # static IP address of my local machine with alias "master"

Eu posso fazer isso: ssh localhost

Mas quando eu tento: ssh -v master , fico abaixo do erro -

OpenSSH_5.3p1 Debian-3ubuntu7, OpenSSL 0.9.8k 25 Mar 2009
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to master [10.42.43.1] port 22.
debug1: Connection established.
debug1: identity file /home/hduser/.ssh/identity type -1
debug1: identity file /home/hduser/.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/hduser/.ssh/id_dsa type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.3p1 Debian-3ubuntu7
debug1: match: OpenSSH_5.3p1 Debian-3ubuntu7 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.3p1 Debian-3ubuntu7
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: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@       WARNING: POSSIBLE DNS SPOOFING DETECTED!          @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
The RSA host key for master has changed,
and the key for the corresponding IP address 10.42.43.1
is unchanged. This could either mean that
DNS SPOOFING is happening or the IP address for the host
and its host key have changed at the same time.
Offending key for IP in /home/hduser/.ssh/known_hosts:14
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@    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
d0:ff:f0:68:2d:6c:95:7b:89:71:df:99:6b:48:15:a2.
Please contact your system administrator.
Add correct host key in /home/hduser/.ssh/known_hosts to get rid of this message.
Offending key in /home/hduser/.ssh/known_hosts:2
RSA host key for master has changed and you have requested strict checking.
Host key verification failed.

Alguma sugestão?

    
por stholy 07.11.2012 / 03:07

3 respostas

1

O SSH armazena "impressões digitais" de hosts aos quais você já se conectou em ~/.ssh/known_hosts . Supostamente, você já se conectou a master em algum momento no passado e naquela época era uma máquina diferente.

Basta remover ~/.ssh/known_hosts (o que fará com que o SSH esqueça os hosts que ele já conectou, então ele começará a perguntar "você deseja se conectar" novamente) ou abri-lo em um editor de texto e remover a linha contém esse host.

    
por Sergey 07.11.2012 / 03:15
0

Como já foi respondido ou para excluir apenas a linha ofensiva (observe o seguinte sufixo: 2 na mensagem de erro, o que significa que a impressão digital armazenada é a segunda linha do arquivo):

sed -i 2d /home/hduser/.ssh/known_hosts

Ou desative totalmente a verificação estrita das chaves do host:

Crie ou edite o arquivo /home/hduser/.ssh/config e adicione:

Host *
    StrictHostKeyChecking no

(ou especificamente desativá-lo apenas para o host mestre)

    
por Will Daniels 07.11.2012 / 03:20
0

Thx funcionou quando eu renomei o arquivo known_hosts. Antes de ver sua resposta, por acaso uso ssh-keygen -R master, e a saída em si era um erro: /home/hduser/.ssh/known_hosts não é um arquivo válido de known_hosts. Não substituindo o arquivo known_hosts existente devido a erros

Thx a todos por suas respostas.

    
por stholy 08.11.2012 / 19:49