SSH: copiar llave a servidor remoto

  • Verificamos que tengamos la llave
ssh-add -L
  • Si nos responde
The agent has no identities.
  • Le pasamos la llave a la shell
ssh-agent $SHELL
  • Agregamos la llave
ssh-add
  • Resultado
Identity added: /root/.ssh/id_rsa (/root/.ssh/id_rsa)
  • Se la pasamos al servidor
ssh-copy-id -i -p 44 root@taiga.siua.ac.cr
  • verificamos
ssh -p '44' 'root@taiga.siua.ac.cr'