![ssh-keygen -t rsa1 실패](https://linux55.com/image/193022/ssh-keygen%20-t%20rsa1%20%EC%8B%A4%ED%8C%A8.png)
우분투 18.04에서
ssh-keygen -t rsa1
실패 이유는 다음과 같습니다 unknown key type rsa1
.
그러나 입력이 ssh-keygen -t rsa
자동 완성되면 다음 두 가지 옵션이 있습니다.
$ ssh-keygen -t rsa
rsa rsa1
rsa1 키를 생성하는 방법은 무엇입니까?
답변1
rsa1이 더 이상 사용되지 않는 것 같아서 해결 방법을 찾았습니다(https://security.stackexchange.com/questions/226131/openssh-declares-ssh-rsa-deprecated-what-do-i-do-next)
설치했습니다openssh-클라이언트-ssh1그리고:
sudo apt install openssh-client-ssh1
이제 성공적으로 실행할 수 있습니다 ssh-keygen1 -t rsa1
.