ssh_exchange_identification: Conexión cerrada

5

En la universidad normalmente SSH en el servidor de ciencias de la computación. Sin embargo hoy en día sigo recibiendo el siguiente error: ssh_exchange_identification: Connection closed by remote host . SSHing con -v flags me da lo siguiente.

OpenSSH_5.9p1, OpenSSL 0.9.8r 8 Feb 2011
debug1: Reading configuration data /etc/ssh_config
debug1: /etc/ssh_config line 20: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to ... [...] port 22.
debug1: Connection established.
debug3: Incorrect RSA1 identifier
debug3: Could not load "~/.ssh/id_rsa" as a RSA1 public key
debug1: identity file ~/.ssh/id_rsa type 1
debug1: identity file ~/.ssh/id_rsa-cert type -1
debug1: identity file ~/.ssh/id_dsa type -1
debug1: identity file ~/.ssh/id_dsa-cert type -1
ssh_exchange_identification: Connection closed by remote host

He intentado editar los archivos de hosts, pero eso no ayudará. ¿Alguna sugerencia?

    
pregunta Zac Ioannidis 25.11.2012 - 03:44

4 respuestas

3

Esto puede suceder cuando tienes demasiadas claves diferentes para ofrecer. Puede solucionarlo fácilmente agregando IdentityFile ~/.ssh/id_rsa_keyname a su entrada ~/.ssh/config usada para esta conexión y un IdentitiesOnly yes global. Esto puede verse así:

~/.ssh/config

Host foo
    hostname server.example.com
    User myUserName
    IdentityFile ~/.ssh/id_rsa_keyname

Host *
    IdentitiesOnly yes
    
respondido por el MacLemon 25.11.2012 - 13:35
7

Me encontré con este mismo problema exacto. Mi registro del sistema reflejó:

/var/empty must be owned by root and not group or world-writable

Ir a Disk Utility > Macintosh HD > Repair Disk Permissions restablece los permisos de /var/empty y resolvió el problema por mí.

    
respondido por el Sam Berry 20.03.2015 - 13:07
4

La pequeña snitch fue el problema para mí. Rules > Incoming connections

Debes hacer esto desde las preferencias de la aplicación Little Snitch.

    
respondido por el Mirko 05.08.2016 - 00:16
0

Este error puede ocurrir debido a varias razones, en mi caso fue después de actualizar a High Sierra (macOS).

Host *
  UseKeychain yes
  AddKeysToAgent yes
  IdentityFile ~/.ssh/id_rsa

Prueba:

ssh -vvv  [email protected]

Más información: enlace

    
respondido por el xgMz 16.08.2018 - 19:57

Lea otras preguntas en las etiquetas