Skip to content

Instantly share code, notes, and snippets.

@rxm
Created July 16, 2018 16:26
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save rxm/6d5b51c5b947144e9e1ea6fcb8abb9ec to your computer and use it in GitHub Desktop.
Save rxm/6d5b51c5b947144e9e1ea6fcb8abb9ec to your computer and use it in GitHub Desktop.
Create an SSH key in PEM format

Create an SSH key in PEM format

I have not been able to use ssh-keygen -e to reliably generate a private key for SSH in PEM format. This format is sometimes used by commercial products. Instead, I had to convert the key using openssl.

# generate an RSA key of size 2048 bits
ssh-keygen -t rsa -b 2048 -f jabba -C 'ronnie-jabba'

# copy key to 10.1.56.50 and add to authorized_keys

# convert private key to PEM format
openssl rsa -in jabba -outform PEM -out jabba.pem
chmod 700 jabba.pem

# test key
ssh -i ./jabba.pem rmaini@10.1.56.50 -p 2222

# add a passphrase
ssh-keygen -p -f jabba.pem

# does it have a passphrase
ssh-keygen -y -f jabba.pem

# test key, now with passphrase
ssh -i ./jabba.pem rmaini@10.1.56.50 -p 2222
@wahyuseptiawan26
Copy link

syntax : openssl rsa -in jabba -outform PEM -out jabba.pem
result : Could not read private key from jabba

what should I fix ??

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment