How to View Your SSH Keys in Linux, macOS, and Windows

How to View Your SSH Keys in Linux, macOS, and Windows

How to View Your SSH Keys in Linux, macOS, and Windows

619-724-9517
✉️ info@zeorbit.com

There will be times when you need to actually view your SSH certificates on Linux. Why? For example, you need to add a certificate for authentication on GitHub (or any other online service that requires SSH authentication). You know you’ve created those SSH certificates, but how do you view them?

For those who are familiar with SSH, you probably already know the answer to that question. After all, this is pretty basic SSH stuff. For those who are new to the ways of SSH (or Linux, macOS or Windows, for that matter), the task might stump you.

In this article, and the video tutorial above, I’ll show you how easy it is to view those SSH keys, so you can use them for third-party services.

SEE: How to Create and Copy SSH Keys with 2 Simple Commands (TechRepublic)

What you’ll need

The only thing you’ll need for this is access to a server or desktop (Linux, macOS, or Windows) and an SSH key created. If you’ve not already created your SSH key pair, you can do so with the command:

ssh-keygen

That command will generate a key pair, both public and private keys. The public key is the one you send to servers for SSH key authentication. When you attempt to log in to that server, SSH will compare the public and private keys. If those keys match, you’ll be allowed access. Simple enough. You’re ready to move on.

How to view your SSH public key on Linux

There are two easy ways to view your SSH public key in Linux: using the cat command or using both the ssh-agent and ssh-add commands, which is a bit more complicated. The second method is probably overkill for what you need, but it’s a good way to view the key while requiring your SSH keypair password.

Using the ssh-agent command

  1. Run the command:
    ssh-agent sh -c 'ssh-add; ssh-add -L'
  2. Upon successful authentication, your SSH public key will print out in the terminal.
  3. You can then copy that and paste it where you need it.

If you don’t want to have to memorize yet another command, you could simply use the cat command.

Using the cat command

  1. Run the command:
    cat ~/.ssh/id_rsa.pub
  2. The command will print out your SSH key on your Linux machine without prompting you for your key authentication password.

SEE: How to Mount Remote Directories with SSH (TechRepublic)

How to view your SSH public key on macOS

Viewing your keys on MacOS can be done in a similar fashion to Linux.

To view the SSH public key on macOS

  1. Open your terminal window, and run the command
    cat ~/.ssh/id_rsa.pub
    or
    cat /Users/USERNAME/.ssh/id_rsa.pub
    Where USERNAME is your macOS username.
  2. The above commands will print out your SSH public key.

macOS also has one more nifty trick up its sleeve. You can copy the contents of the SSH key directly to the clipboard, without displaying the key, using the pbcopy tool.

To copy the SSH public key on Mac

  1. Run the command:
    cat ~/.ssh/id_rsa.pub | pbcopy
  2. Once you’ve copied the key to your clipboard, you can paste it wherever you need it.

SEE: How to Use an SSH Config File on macOS for Easier Connections to Your Data Center Servers (TechRepublic)

How to view your SSH public key on Windows

If you have not generated an SSH Key yet, you can generate one now.

To generate an SSH public key on Windows

  1. Run the command:
    ssh-keygen
  2. You’ll be asked where to save the key.
  3. If you use the defaults, it will save your keys in C:\User[YourUserName].sshid.
  4. You will then be prompted to enter a passphrase. You can hit Enter for an empty/no passphrase.
  5. It will then ask you to confirm the passphrase.
  6. Your key will be generated.

To view your SSH public key on Windows

  1. Run the command:
    type ~\.ssh\id_rsa.pub
    Where USERNAME is the name of your user.
  2. The command will display your SSH public key.
  3. Now, use the Ctrl+C keyboard shortcut to copy the file’s contents.

You can also do something similar to what we did on macOS (copying the SSH public key directly to the clipboard).

To copy the SSH public key on Windows

  1. Issue the command:
    type ~\.ssh\id_rsa.pub | clip
    Where USERNAME is your username.
  2. Now, paste that key on a word processor or wherever you need it.

SEE: Top Commands Linux Admins Need to Know (TechRepublic Premium)

How to view your private key

Chances are, you’ll never have to view your private key. After all, that’s the secret in the sauce that’s never on display for anyone to see. But on the off chance you do need to view that key, you can follow the same steps as above, but remove the .pub from the file name in any instance.

Remember, id_rsa is the private key, and id_rsa.pub is the public key. And that’s all there is to viewing your SSH public and private keys on Linux, macOS, and Windows.

Be sure to treat these keys with the care and security they deserve. Although your public key will be handed out to other users and services, that private key needs to be tucked away and never shown to the public.

If you do accidentally release that private key, you’ll need to:

  1. Remove the public key from the authorized_keys file on every server that uses the key pair.
  2. Delete the public and private keys on the host.
  3. Generate a new key pair.
  4. Send the new key pair to the servers you must log in to with SSH key authentication.

If you leave any trace of that compromised key pair on any server or desktop, you risk allowing someone access.

619-724-9517
✉️ info@zeorbit.com

[Disclaimer: Credits to original creators.]

Leave a Reply

Your email address will not be published. Required fields are marked *

Secured By miniOrange