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

Unable to negotiate with X.X.X.X port 22: no matching key exchange method found.

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