Pergunta

Pergunta

Pergunta

O OpenSSH introduziu uma mudança que exige \no final do arquivo de chave privada (id_rsa)? Anteriormente eu estava no Ubuntu 18.04 e acredito que id_rsasem \nno final do arquivo estava funcionando. Agora no Ubuntu 20.04, o ssh não funciona se id_rsanão tiver \nno final do arquivo.

$ diff id_rsa.bak.od id_rsa.od 
163,164c163,164
< 000a20       K   E   Y   -   -   -   -   -
< 000a29
---
> 000a20       K   E   Y   -   -   -   -   -  \n
> 000a2a

Sem o \n, causa o erro.

$ ssh -i ~/.ssh/id_rsa ubuntu
Load key "/home/hadoop/.ssh/id_rsa": invalid format

Ambiente

$ ssh -V
OpenSSH_8.2p1 Ubuntu-4ubuntu0.2, OpenSSL 1.1.1f  31 Mar 2020

$ cat /etc/os-release 
NAME="Ubuntu"
VERSION="20.04.1 LTS (Focal Fossa)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 20.04.1 LTS"
VERSION_ID="20.04"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=focal
UBUNTU_CODENAME=focal

informação relacionada