Windows에서 SSH 인증서 생성
소프트웨어 요구 사항
다운로드 및 설치Open SSL
다운로드 및 설치Putty Gen
구성
다음과 같은 OpenSSL 설치 폴더를 찾습니다.
C:\프로그램 파일\OpenSSL-Win64\bin\
bin 폴더 안에 'cert'라는 폴더를 만듭니다.
관리자 권한으로 명령 프롬프트를 열고 OpenSSL bin 폴더로 이동합니다.
cd C:\Program Files\OpenSSL-Win64\bin\
cert 폴더에 개인 키와 CRT를 생성합니다.
openssl req -x509 -sha256 -nodes -days 365 -newkey rsa:2048 -keyout cert/privateKey-example.key -out cert/certificate-example.crt
PFX 인증서를 생성합니다.
openssl pkcs12 -export -out cert/certificate-example.pfx -inkey cert/privateKey-example.key -in cert/certificate-example.crt
이 시점에서 3개의 파일이 cert 폴더에 생성되어야 합니다.
PKCS#1 개인 키 생성
openssl pkcs12 -in cert/certificate-example.pfx -nocerts -out cert/privateKey-example.pem
개인 키를 해독하여 ppk 생성
openssl rsa -in cert/privateKey-example.pem -out cert/teste-privateKey-example-decrypted_key.pem
Putty Gen 프로그램을 실행하고 복호화된 개인 키를 로드합니다.
새 개인 및 공개 키를 ppk로 저장합니다.
이 시점에서 SFTP 인증에 공개 및 개인 키를 사용할 수 있습니다.
Reference
이 문제에 관하여(Windows에서 SSH 인증서 생성), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/caiocesar/generating-ssh-certificate-in-windows-10-362k텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)