🗝️Generating SSH Keys
How to generate your SSH keys
Last updated
Was this helpful?
How to generate your SSH keys
This method of generating SSH keys should be used, regardless of your OS
Generate your keys via this command
ssh-keygen -t rsa -m PEM This generates 2 files, a private key file and a public key file
Private key file: id-rsa
Private key file: id-rsa.pub
Example of the generated private key format (id-rsa)
-----BEGIN PRIVATE KEY-----
MIIG/gIBAXXXL+CaxDa
-----END PRIVATE KEY-----Example of the generated public key format (id-rsa.pub)
ssh-rsa AAAAB3NXXX= administrator@XXXLast updated
Was this helpful?
Was this helpful?