How to Use PPK File for SSH
In some situations, you are given only a ppk file for access to a cloud server. You know, however, it’s for Putty on windows, not for OpenSSH client which might be the most familiar to you.🤔
This post explains a method to convert a ppk file into a pem file so that you can login to the linux server with ssh command that you are most familiar with.
First off, install putty-tools on your machine.
|
|
Then convert your *.ppk
file into a *.pem
file like so:
|
|
Pretty simple, isn’t it? 🙂
Secure the pem file, it’s important, as you may know.
|
|
Now you can ssh to the server using the PEM file.
|
|
Thanks for reading!