Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。












想改善这个问题吗?更新问题,以使为on-topic

5年前关闭。



Improve this question





我已经在AWS上创建了一个EC2实例。我想使用PuTTY连接到实例,但是它需要PPK文件。我有要使用PuTTYgen转换为PPK的PEM文件。

如何在Ubuntu上使用PuTTYgen将PEM文件转换为PPK?

最佳答案

使用PuTTYgen的* nix版本:

puttygen mykey.pem -o mykey.ppk


请参见PuTTYgen man page



对于Windows用户:请注意,Windows版本的PuTTYgen不支持从命令行进行键转换。

您可以使用WinSCP with the /keygen command-line switch instead to convert the key,例如:

winscp.com /keygen mykey.pem /output=mykey.ppk


为了与PuTTYgen兼容,WinSCP还支持其语法:

winscp.com /keygen mykey.pem -o mykey.ppk

10-05 22:33