22/TCP (SSH)
SSH, Secure SHell.
Conexión a SSH usando clave privada
/<user>/.ssh/id_rsa
chmod 600 id_rsa
ssh -i id_rsa <user>@<IP-address>Corregir error de negociación de método de intercambio de claves
ssh -oKexAlgorithms=+<method> <user>@<IP-address>
ssh -oKexAlgorithms=+diffie-hellman-group1-sha1 <user>@<IP-address>
ssh -oKexAlgorithms=+diffie-hellman-group14-sha1 <user>@<IP-address>
ssh -oKexAlgorithms=+diffie-hellman-group-exchange-sha1 <user>@<IP-address>Última actualización