martes, 24 de septiembre de 2013

WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@    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 a host key has just been changed.
The fingerprint for the RSA key sent by the remote host is


Posiblemente si tienen dos o mas sistemas operativos en su equipo de trabajo, al conectarse por SSH a un servidor UNIX y después cambiarte de OS en tu equipo local te topaste o toparas con este detallito de seguridad del RSA, el cual se soluciona rápido y sencillo de la siguiente manera. 

Ejecutar en terminal (local)

oposada@oposada:~/Descargas/Apps Suit$ ssh-keygen -f "/home/oposada/.ssh/known_hosts" -R IP_del_SRV_al_cual_no_podemos_entrar

/home/oposada/.ssh/known_hosts updated.
Original contents retained as /home/oposada/.ssh/known_hosts.old

oposada@oposada:~/Descargas/Nmis Suit$ ssh root@10.238.6.11
The authenticity of host '10.238.6.11 (10.238.6.11)' can't be established.
RSA key fingerprint is 41:70:17:59:d6:6b:37:36:6e:f4:a3:13:d0:6e:e7:c1.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '10.238.6.11' (RSA) to the list of known hosts.
root@10.238.6.11's password: 
Permission denied, please try again.
root@10.238.6.11's password: 
Permission denied, please try again.
root@10.238.6.11's password: 
Last login: Mon Sep 23 19:01:18 2013 from 10.238.17.138
[root@cnvnmiscu6 ~]# exit

con esto ya podremos iniciar sesión desde ssh en nuestro servidor cliente.(en ambiente Linux)
en ambiente Mac Os X
la direccion del archivo para modificar es el siguiente
como ROOT

sh-3.2# pwd
/var/root/.ssh
sh-3.2# ls -l
total 16
-rw-------  1 root  wheel  2805 Oct  9 07:22 known_hosts
sh-3.2#

el comando el muy similar solo cambiamos los directorios

h-3.2# ssh-keygen -f "/var/root/.ssh/known_hosts" -R IP_DEL_SERVIDOR_DONDE_NO_PODEMOS_ENTRAR_POR_SSH
/var/root/.ssh/known_hosts updated.
Original contents retained as /var/root/.ssh/known_hosts.old

No hay comentarios.: