Remote host identification changed

Si vous avez un message d’erreur vous indiquant une potentielle attaque du man-in-the-middle :

IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!

Voici comment y remédier (dans le cas où évidement, il n’y pas pas de véritable attaque ^_^’ )

Problème rencontré

Erreur de clés

Si lors de votre connexion ssh le serveur vous engueule à cause d’une histoire de clés :

ssh [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 a host key has just been changed.
The fingerprint for the ED25519 key sent by the remote host is
SHA256:dsfsdfsdfdsfdsfdsfVygverstyhrgteztezrfrt.
Please contact your system administrator.
Add correct host key in /home/aline/.ssh/known_hosts to get rid of this message.
Offending ED25519 key in /home/aline/.ssh/known_hosts:1
remove with:
ssh-keygen -f "/home/aline/.ssh/known_hosts" -R @ipServer
ED25519 host key for @ipServer has changed and you have requested strict checking.
Host key verification failed.

Tentez de faire :

# ssh-keygen -R @ip

Cela mettra à jour les hosts du fichier known_hosts

# ssh-keygen -f "/home/aline/.ssh/known_hosts" -R @ipServer

Si le problème persiste toujours :

# ssh-keygen -R @ip

Cela mettra à jour les hosts du fichier known_hosts

> Partager <