Para acessar um servidor Linux
hospedado na AWS, utilizando uma máquina Windows, é necessário uma chave
chamada .PPK, para isso é necessário converter a chave no formato .PEM
que o AWS gera para download:
Segue tutorial
excerpt
excerpt
Fonte: https://unix.stackexchange.com/questions/116303/convert-amazon-pem-key-to-putty-ppk-key-linux
Segue tutorial
Using the GUI
See this SO Q&A on how to do exactly what you want, titled: Convert PEM to PPK file format.excerpt
- Download your .pem from AWS
- Open PuTTYgen, select Type of key to generate as: SSH-2 RSA
- Click "Load" on the right side about 3/4 down
- Set the file type to
*.* - Browse to, and Open your .pem file
- PuTTY will auto-detect everything it needs, and you just need to click "Save private key" and you can save your ppk key for use with PuTTY
Using the command line
If on the other hand you'd like to convert a.pem to .ppk file via the command line tool puttygen, I did come across this solution on SO in this Q&A titled: excerpt
$ puttygen keyfile.pem -O private -o avdev.ppk
For the public key:$ puttygen keyfile.pem -L
Fonte: https://unix.stackexchange.com/questions/116303/convert-amazon-pem-key-to-putty-ppk-key-linux