Windows에서 SSH 인증서 생성

2254 단어 opensshsftpputtyssh

소프트웨어 요구 사항



다운로드 및 설치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 인증에 공개 및 개인 키를 사용할 수 있습니다.

좋은 웹페이지 즐겨찾기