Verifica chiave non riuscita!

1

Ero ssh ing nel mio iPhone e ho aggiunto un'app dal mio computer. Poi ho cambiato computer e ho intenzione di sistemare qualcosa, e mi ha dato un messaggio di errore semi-sconcertante ...

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@    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.

Che cosa è appena successo e perché?

    
posta CoffeeRain 26.03.2012 - 15:58
fonte

1 risposta

2

Lo strumento ssh memorizza l'indirizzo IP del computer remoto e l'identificazione della chiave ssh remota nella directory ~ / .ssh.

Puoi leggere su questo consultando la pagina di manuale sul tuo mac man ssh o su internet .

Potrebbe essere necessario leggere l'intero articolo e fare qualche ricerca di follow-up se questa è la tua prima esposizione con ssh - ma la sezione pertinente per l'avviso che hai incollato va così:

ssh automatically maintains and checks a database containing identification for all hosts it has ever
     been used with.  Host keys are stored in ~/.ssh/known_hosts in the user's home directory.  Addition-
     ally, the file /etc/ssh_known_hosts is automatically checked for known hosts.  Any new hosts are auto-
     matically added to the user's file.  If a host's identification ever changes, ssh warns about this and
     disables password authentication to prevent server spoofing or man-in-the-middle attacks, which could
     otherwise be used to circumvent the encryption.

In sostanza - la chiave è cambiata, il nome host è cambiato o l'indirizzo IP è cambiato e ssh ti avverte che uno o più di questi non corrispondono. Puoi disattivare la memorizzazione, l'avviso o cancellare la cache se non ti interessa investigare di più. Questo è uno strumento molto utile per le persone che ssh in server fissi e hanno bisogno di sapere quando cose come il cambiamento di cui sopra.

    
risposta data 26.03.2012 - 16:41
fonte

Leggi altre domande sui tag