Ssh No hay ruta al host

Ssh No hay ruta al host

Estoy intentando copiar mi clave Corosync desde mi computadora de escritorio a mi computadora portátil.

sudo scp /etc/corosync/authkey  [email protected]:~

Lo que tengo es esto

ssh: connect to host 192.168.0.10 port 22: No route to host
lost connection

Ambos usan el mismo enrutador en mi casa.

Desde mi escritorio, estoy haciendo ping a la computadora portátil

ping 192.168.0.10
PING 192.168.0.10 (192.168.0.10) 56(84) bytes of data.
64 bytes from 192.168.0.10: icmp_seq=1 ttl=64 time=1.29 ms
64 bytes from 192.168.0.10: icmp_seq=2 ttl=64 time=1.08 ms
64 bytes from 192.168.0.10: icmp_seq=3 ttl=64 time=1.03 ms
64 bytes from 192.168.0.10: icmp_seq=4 ttl=64 time=1.05 ms
^C
--- 192.168.0.10 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3003ms
rtt min/avg/max/mdev = 1.039/1.118/1.298/0.110 ms

    4 packets transmitted, 0 received, +4 errors, 100% packet loss, time 3004ms

Telenet es rechazado

telnet 192.168.0.10 22
Trying 192.168.0.10...
telnet: Unable to connect to remote host: Connection refused

Mi IP de escritorio

inet 192.168.0.12/24 brd 192.168.0.255 scope global dynamic noprefixroute enp3s0

IP de mi portátil

inet 192.168.0.10/24 brd 192.168.0.255 scope global dynamic noprefixroute wlo1

Mi idea era abrir el puerto 22. Salida de Netstat

Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name    
tcp        0      0 0.0.0.0:902             0.0.0.0:*               LISTEN      -                   
tcp        0      0 0.0.0.0:38183           0.0.0.0:*               LISTEN      -                   
tcp        0      0 127.0.0.1:27017         0.0.0.0:*               LISTEN      -                   
tcp        0      0 0.0.0.0:55181           0.0.0.0:*               LISTEN      -                   
tcp        0      0 127.0.0.1:38767         0.0.0.0:*               LISTEN      -                   
tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN      -                   
tcp        0      0 0.0.0.0:2224            0.0.0.0:*               LISTEN      -                   
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      -                   
tcp        0      0 127.0.0.1:8307          0.0.0.0:*               LISTEN      -                   
tcp        0      0 127.0.0.53:53           0.0.0.0:*               LISTEN      -                   
tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN      -                   
tcp        0      0 127.0.0.1:5432          0.0.0.0:*               LISTEN      -                   
tcp        0      0 0.0.0.0:57721           0.0.0.0:*               LISTEN      -                   
tcp        0      0 0.0.0.0:443             0.0.0.0:*               LISTEN      -                   
tcp        0      0 0.0.0.0:17500           0.0.0.0:*               LISTEN      3340/dropbox        
tcp        0      0 127.0.0.1:17600         0.0.0.0:*               LISTEN      3340/dropbox        
tcp        0      0 0.0.0.0:5473            0.0.0.0:*               LISTEN      -                   
tcp        0      0 0.0.0.0:2049            0.0.0.0:*               LISTEN      -                   
tcp        0      0 127.0.0.1:17603         0.0.0.0:*               LISTEN      3340/dropbox        
tcp        0      0 0.0.0.0:37795           0.0.0.0:*               LISTEN      -                   
tcp6       0      0 :::902                  :::*                    LISTEN      -                   
tcp6       0      0 :::48647                :::*                    LISTEN      -                   
tcp6       0      0 :::111                  :::*                    LISTEN      -                   
tcp6       0      0 :::2224                 :::*                    LISTEN      -                   
tcp6       0      0 :::80                   :::*                    LISTEN      -                   
tcp6       0      0 :::39283                :::*                    LISTEN      -                   
tcp6       0      0 :::51607                :::*                    LISTEN      -                   
tcp6       0      0 ::1:631                 :::*                    LISTEN      -                   
tcp6       0      0 :::443                  :::*                    LISTEN      -                   
tcp6       0      0 :::35835                :::*                    LISTEN      -                   
tcp6       0      0 :::17500                :::*                    LISTEN      3340/dropbox        
tcp6       0      0 :::2049                 :::*                    LISTEN      - 

Intenté nuevamente abrir 22

sudo iptables -A INPUT -p tcp --dport ssh -j ACCEPT
sudo iptables -A INPUT -p tcp --dport 22 -j ACCEPT

pero aun no veo el 22 con netstat

netstat -tpln | grep 22
(Not all processes could be identified, non-owned process info
 will not be shown, you would have to be root to see it all.)
tcp        0      0 0.0.0.0:2224            0.0.0.0:*               LISTEN      -                   
tcp6       0      0 :::2224                 :::*                    LISTEN      -  

¿Cómo resolver este problema?

SOLUCIONADO Era un problema de sshd. Limpié e instalé el servidor OpenSSH.

Respuesta1

No veo el puerto SSH en el resultado de netstat.

IP de escritorio: 192.168.0.12

IP del portátil: 192.168.0.10

  1. Es necesario asegurarse de que la computadora de escritorio pueda hacer ping a la computadora portátil.

    ping 192.168.0.10
    
  2. Si el ping tiene éxito, haga Telnet para asegurarse de que el puerto SSH esté disponible y sea permitido. (El puerto SSH predeterminado es 22; no sé si lo cambió en su sistema).

    telnet 192.168.0.10 22
    

Telnet OK --> puedes ejecutar el comando scp.

Telnet no está bien --> vuelva a comprobar que el servicio SSH se esté ejecutando.

¿Cómo comprobar que el servicio SSH se está ejecutando?

  • comprobar el sistema
  • Verifique que iptables (o ufw) permita el puerto SSH.
  • netstat -tapln | grep 22

Respuesta2

Compruebe si el servicio sshd se está ejecutando o no.systemctl status sshd

información relacionada