Set up SSH public key authentication to connect to a remote system (2024)

On this page:

  • Before you begin
  • Set up public key authentication using SSH on a Linux or macOS computer
  • Set up public key authentication using PuTTY on a Windows 11, Windows 10, or Windows 8.x computer

Before you begin

Using SSH public key authentication to connect to a remote system is a robust, more secure alternative to logging in with an account password or passphrase. SSH public key authentication relies on asymmetric cryptographic algorithms that generate a pair of separate keys (a key pair), one "private" and the other "public". You keep the private key a secret and store it on the computer you use to connect to the remote system. Conceivably, you can share the public key with anyone without compromising the private key; you store it on the remote system in a .ssh/authorized_keys directory.

To use SSH public key authentication:

  • The remote system must have a version of SSH installed. The information in this document assumes the remote system uses OpenSSH. If the remote system is using a different version of SSH (for example, Tectia SSH), the process outlined below may not be correct.
  • The computer you use to connect to the remote server must have a version of SSH installed. This document includes instructions for generating a key pair with command-line SSH on a Linux or macOS computer, and with PuTTY on a Windows computer.
  • You need to be able to transfer your public key to the remote system. Therefore, you must either be able to log into the remote system with an established account username and password/passphrase, or have an administrator on the remote system add the public key to the ~/.ssh/authorized_keys file in your account.

    Note:

    You may need to remove group read and write permissions for the .ssh directory and the files in it. For help changing permissions, see Manage file permissions on Unix-like systems.

  • Two-factor authentication using Two-Step Login (Duo) is required for access to the login nodes on IU research supercomputers, and for SCP and SFTP file transfers to those systems. SSH public key authentication remains an option for researchers who submit the "SSH public key authentication to HPS systems" agreement, in which you agree to set a passphrase on your private key when you generate your key pair. If you have questions about how two-factor authentication may impact your workflows, contact the UITS Research Applications and Deep Learning team. For help, see Get started with Two-Step Login (Duo) at IU and Help for Two-Step Login (Duo).

Set up public key authentication using SSH on a Linux or macOS computer

To set up public key authentication using SSH on a Linux or macOS computer:

  1. Log into the computer you'll use to access the remote host, and then use command-line SSH to generate a key pair using the RSA algorithm.

    To generate RSA keys, on the command line, enter:

    ssh-keygen -t rsa
  2. You will be prompted to supply a filename (for saving the key pair) and a password (for protecting your private key):
    • Filename: To accept the default filename (and location) for your key pair, press Enter or Return without entering a filename.

      Alternatively, you can enter a filename (for example, my_ssh_key) at the prompt, and then press Enter or Return. However, many remote hosts are configured to accept private keys with the default filename and path (~/.ssh/id_rsa for RSA keys) by default. Consequently, to authenticate with a private key that has a different filename, or one that is not stored in the default location, you must explicitly invoke it either on the SSH command line or in an SSH client configuration file (~/.ssh/config); see below for instructions.

    • Password: Enter a password that contains at least five characters, and then press Enter or Return. If you press Enter or Return without entering a password, your private key will be generated without password-protection.

      Important:

      If you don't password-protect your private key, anyone with access to your computer conceivably can SSH (without being prompted for a password) to your account on any remote system that has the corresponding public key.

    Your private key will be generated using the default filename (for example, id_rsa) or the filename you specified (for example, my_ssh_key), and stored on your computer in a .ssh directory off your home directory (for example, ~/.ssh/id_rsa or ~/.ssh/my_ssh_key).

    The corresponding public key will be generated using the same filename (but with a .pub extension added) and stored in the same location (for example, ~/.ssh/id_rsa.pub or ~/.ssh/my_ssh_key.pub).

  3. Use SFTP or SCP to copy the public key file (for example, ~/.ssh/id_rsa.pub) to your account on the remote system (for example, darvader@deathstar.empire.gov); for example, using command-line SCP:
    scp ~/.ssh/id_rsa.pub darvader@deathstar.empire.gov:

    You'll be prompted for your account password. Your public key will be copied to your home directory (and saved with the same filename) on the remote system.

  4. Log into the remote system using your account username and password.

    Note:

    If the remote system is not configured to support password-based authentication, you will need to ask system administrators to add your public key to the ~/.ssh/authorized_keys file in your account (if your account doesn't have a ~/.ssh/authorized_keys file, system administrators can create one for you). Once your public key is added to your ~/.ssh/authorized_keys file on the remote system, the setup process is complete, and you should now be able to SSH to your account from the computer that has your private key.

  5. If your account on the remote system doesn't already contain a ~/.ssh/authorized_keys file, create one; on the command line, enter the following commands:
    mkdir -p ~/.sshtouch ~/.ssh/authorized_keys

    Note:

    If your account on the remote system already has a ~/.ssh/authorized_keys file, executing these commands will not damage the existing directory or file.

  6. On the remote system, add the contents of your public key file (for example, ~/id_rsa.pub) to a new line in your ~/.ssh/authorized_keys file; on the command line, enter:
    cat ~/id_rsa.pub >> ~/.ssh/authorized_keys

    You may want to check the contents of ~/.ssh/authorized_keys to make sure your public key was added properly; on the command line, enter:

    more ~/.ssh/authorized_keys
  7. You may now safely delete the public key file (for example, ~/id_rsa.pub) from your account on the remote system; on the command line, enter:
    rm ~/id_rsa.pub

    Alternatively, if you prefer to keep a copy of your public key on the remote system, move it to your .ssh directory; on the command line, enter:

    mv ~/id_rsa.pub ~/.ssh/
  8. Optionally, repeat steps 3-7 to add your public key to other remote systems that you want to access from the computer that has your private key using SSH public key authentication.
  9. You now should be able to SSH to your account on the remote system (for example, username@host2.somewhere.edu) from the computer (for example, host1) that has your private key (for example, ~/.ssh/id_rsa):
    • If your private key is password-protected, the remote system will prompt you for the password or passphrase (your private key password/passphrase is not transmitted to the remote system):
      [username@host1 ~]$ ssh username@host2.somewhere.eduEnter passphrase for key '/username/Host1/.ssh/id_rsa':Last login: Mon Oct 20 09:23:17 2014 from host1.somewhere_else.edu
    • If your private key is not password-protected, the remote system will place you on the command line in your home directory without prompting you for a password or passphrase:
      [username@host1 ~]$ ssh username@host2.somewhere.eduLast login: Mon Oct 20 09:23:17 2014 from host1.somewhere_else.edu

    If the private key you're using does not have the default name, or is not stored in the default path (not ~/.ssh/id_rsa), you must explicitly invoke it in one of two ways:

    • On the SSH command line: Add the -i flag and the path to your private key.

      For example, to invoke the private key host2_key, stored in the ~/.ssh/old_keys directory, when connecting to your account on a remote host (for example, username@host2.somewhere.edu), enter:

      ssh -i ~/.ssh/old_keys/host2_key username@host2.somewhere.edu
    • In an SSH client configuration file: SSH gets configuration data from the following sources (in this order):
      1. From command-line options
      2. From the user's client configuration file (~/.ssh/config), if it exists
      3. From the system-wide client configuration file (/etc/ssh/ssh_config)

      The SSH client configuration file is a text file containing keywords and arguments. To specify which private key should be used for connections to a particular remote host, use a text editor to create a ~/.ssh/config that includes the Host and IdentityFile keywords.

      For example, for connections to host2.somewhere.edu, to make SSH automatically invoke the private key host2_key, stored in the ~/.ssh/old_keys directory, create a ~/.ssh/config file with these lines included:

      Host host2.somewhere.eduIdentityFile ~/.ssh/old_keys/host2_key

      Once you save the file, SSH will use the specified private key for future connections to that host.

      You can add multiple Host and IdentityFile directives to specify a different private key for each host listed; for example:

      Host host2.somewhere.eduIdentityFile ~/.ssh/old_keys/host2_keyHost host4.somewhere.eduIdentityFile ~/.ssh/old_keys/host4_keyHost host6.somewhere.eduIdentityFile ~/.ssh/old_keys/host6_key

      Alternatively, you can use a single asterisk ( * ) to provide global defaults for all hosts (specify one private key for several hosts); for example:

      Host *.somewhere.eduIdentityFile ~/.ssh/old_keys/all_hosts_key

      For more about the SSH client configuration file, see the OpenSSH SSH client configuration file on the web or from the command line (man ssh_config).

Set up public key authentication using PuTTY on a Windows 11, Windows 10, or Windows 8.x computer

The PuTTY command-line SSH client, the PuTTYgen key generation utility, the Pageant SSH authentication agent, and the PuTTY SCP and SFTP utilities are packaged together in a Windows installer available under The MIT License for free download from the PuTTY development team.

After installing PuTTY:

  1. Launch PuTTYgen.
  2. In the "PuTTY Key Generator" window, under "Parameters":
    • For "Type of key to generate", select RSA. (In older versions of PuTTYgen, select SSH2-RSA.)
    • For "Number of bits in a generated key", leave the default value (2048).
  3. Under "Actions", click Generate.
  4. When prompted, use your mouse (or trackpad) to move your cursor around the blank area under "Key"; this generates randomness that PuTTYgen uses to generate your key pair.
  5. When your key pair is generated, PuTTYgen displays the public key in the area under "Key". In the "Key passphrase" and "Confirm passphrase" text boxes, enter a passphrase to passphrase-protect your private key.

    Note:

    If you don't passphrase-protect your private key, anyone with access to your computer will be able to SSH (without being prompted for a passphrase) to your account on any remote system that has the corresponding public key.

  6. Save your public key:
    1. Under "Actions", next to "Save the generated key", click Save public key.
    2. Give the file a name (for example, putty_key), select a location on your computer to store it, and then click Save.
  7. Save your private key:
    1. Under "Actions", next to "Save the generated key", click Save private key.

      Note:

      If you didn't passphrase-protect your private key, the utility will ask whether you're sure you want to save it without a passphrase. Click Yes to proceed or No to go back and create a passphrase for your private key.

    2. Keep "Save as type" set to PuTTY Private Key Files (*.ppk), give the file a name (for example, putty_private_key), select a location on your computer to store it, and then click Save.
    3. If you wish to connect to a remote desktop system such as Research Desktop (RED), click Conversions>ExportOpenSSHkey, give the file a name (for example, putty_rsa), select a location on your computer to store it, and then click Save.
  8. Log into the remote system using your account username and password.

    If the remote system does not support password-based authentication, you will need to ask system administrators to add your public key to the ~/.ssh/authorized_keys file in your account (if your account doesn't have a ~/.ssh/authorized_keys file, system administrators can create one for you). Once your public key is added to your account's ~/.ssh/authorized_keys file on the remote system...

  9. If your account on the remote system doesn't already contain a ~/.ssh/authorized_keys file, create one; on the command line, enter the following commands:
    mkdir -p ~/.sshtouch ~/.ssh/authorized_keys

    If your account on the remote system already has ~/.ssh/authorized_keys, executing these commands will not damage the existing directory or file.

  10. On your computer, in the PuTTYgen utility, copy the contents of the public key (displayed in the area under "Key") onto your Clipboard. Then, on the remote system, use your favorite text editor to paste it onto a new line in your ~/.ssh/authorized_keys file, and then save and close the file.
  11. On your computer, open the Pageant SSH authentication agent. This utility runs in the background, so when it opens, you should see its icon displayed in the Windows notification area.
  12. In the Windows notification area, right-click on the Pageant icon, select Add Key, navigate to the location where you saved your private key (for example, putty_private_key.ppk), select the file, and then click Open.
  13. If your private key is passphrase-protected, Pageant will prompt you to enter the passphrase; enter the passphrase for your private key, and then click OK.

    If your private key is not passphrase-protected, Pageant will add your private key without prompting you for a passphrase.

    Either way, Pageant stores the unencrypted private key in memory for use by PuTTY when you initiate an SSH session to the remote system that has your public key.

  14. On your computer, open the PuTTY SSH client:
    1. On the Session screen:
      • Under "Host Name (or IP address)", enter your username coupled with the hostname of the remote server that has your public key; for example:
        dsidious@deathstar.empire.gov
      • Under "Connection type", make sure SSH is selected.
    2. In the "Category" list on the left, navigate to the Auth screen (Connection > SSH > Auth). On the Auth screen, under "Authentication methods", select Attempt authentication using Pageant.
    3. Return to the Session screen, and under "Saved Sessions", enter a name (for example, Deathstar), and then click Save.
    4. Click Open to connect to your account on the remote system. With Pageant running in the background, PuTTY will retrieve the unencrypted private key automatically from Pageant and use it to authenticate. Because Pageant has your private key's passphrase saved (if applicable), the remote system will place you on the command line in your account without prompting you for the passphrase.

    Note:

    Technically, at this point, the setup is complete. In the future, whenever you log into your Windows desktop, you can run Pageant, add the private key, and then use PuTTY to SSH to any remote resource that has your public key. Alternatively, you can create a shortcut in your Windows Startup folder to launch Pageant and load your private key automatically whenever you log into your desktop. For instructions, finish the rest of the following steps.

  15. Open your Startup folder. Press Win-r, and in the "Open" field, type shell:startup, and then press Enter.
  16. Right-click inside the Startup folder, and then select New and Shortcut.
  17. In the "Type the location of the item" text box, enter the path to the Pageant executable (pageant.exe) followed by the path to your private key file (for example, putty_private_key.ppk); enclose both paths in double quotes and separate them with a space; for example:
    "C:\Program Files (x86)\PuTTY\pageant.exe""C:\Users\user_profile\ssh_key\putty_private.ppk"
  18. Click Next, and then, in the "Type a name for this shortcut" text box, enter a name for the shortcut (for example, PAGEANT).
  19. Click Finish.

The next time you log into your Windows desktop, Pageant will start automatically, load your private key, and (if applicable) prompt you for the passphrase.

Related documents

About ssh-agent and ssh-add in Unix

This is document aews in the Knowledge Base.
Last modified on 2024-01-18 14:59:02.

Set up SSH public key authentication to connect to a remote system (2024)

FAQs

How to connect to remote server using SSH public key? ›

The SSH public key authentication has four steps:
  1. Generate a private and public key, known as the key pair. ...
  2. Add the corresponding public key to the server.
  3. The server stores and marks the public key as approved.
  4. The server allows access to anyone who proves the ownership of the corresponding private key.
Aug 10, 2021

How to set up SSH key for remote login? ›

How to setup SSH keys
  1. Step 1: Generate SSH Keys. Open the terminal on your local machine. ...
  2. Step 2: Name your SSH keys. ...
  3. Step 3: Enter a passphrase (optional) ...
  4. Step 4: Move the public key to the remote machine. ...
  5. Step 5: Test your connection.
Jan 8, 2017

How to configure SSH for remote access? ›

How to Enable an SSH Connection
  1. Go to System Settings.
  2. Click General in the left menu.
  3. Locate and open Sharing.
  4. Enable Remote Login to allow SSH access to the device.
Nov 23, 2023

How do I set up SSH authentication keys? ›

How to set up SSH keys
  1. Create the ssh key pair using ssh-keygen command.
  2. Copy and install the public ssh key using ssh-copy-id command on a Linux or Unix server.
  3. Add yourself to sudo or wheel group admin account.
  4. Disable the password login for root account.
Mar 5, 2024

How do I connect to a remote server via SSH? ›

Once downloaded, double-click putty-64bit-0.78-installer to install PuTTY. After the installation, open PuTTY, and the configuration window will be displayed on your computer. Once you enter the server's name or IP address, click Open to connect to the remote servers using SSH protocol.

How to push public key to remote server? ›

Copying Public Keys to Remote Servers
  1. Use the ssh-copy-id command to append the public key in the local ~/.ssh/id_rsa.pub file to the ~/.ssh/authorized_keys file on the remote system, for example: ssh-copy-id remote_user@host.
  2. When prompted, enter the password for the remote system.

How do you access the remote device over SSH? ›

To access your remote system via SSH from a desktop device:
  1. Open Command Prompt (on Windows) or Terminal (on Linux or macOS).
  2. Enter the following command, where <username> is your remote PC account name and <server> is the Nord name or Meshnet IP of the computer you want to access:
Apr 15, 2024

How to setup SSH connectivity? ›

  1. Step1: Install and enable SSH Server. ...
  2. Step2: Enable SSH Protocol Version 2. ...
  3. Step 3: Customize the default SSH port (22) ...
  4. Step4: Disable root login (SSH) ...
  5. Step 5: Use ssh keys (Public and Private) ...
  6. Step 6: Disable X11 Forwarding. ...
  7. Step 7: Disable Empty Passwords. ...
  8. Step 8: Set Max Authentication Attempts.
Mar 17, 2023

How to use SSH for Remote Desktop? ›

Connect via SSH⁠ ​
  1. Optional: create an SSH key pair and place a public SSH key on the server.
  2. Open the CLI.
  3. Connect to the server: ssh <username>@<ip_address> ...
  4. Enter your password. The password can be viewed in Control Panel under Servers and Hardware → Servers → Server page → Operating System tab → Password field.
Apr 10, 2024

How to create a SSH public key? ›

Generate an SSH Key Pair
  1. Run the ssh-keygen command. You can use the -t option to specify the type of key to create. ...
  2. The command prompts you to enter the path to the file in which you want to save the key. ...
  3. The command prompts you to enter a passphrase. ...
  4. When prompted, enter the passphrase again to confirm it.

What is public key authentication in SSH? ›

SSH public key authentication relies on asymmetric cryptographic algorithms that generate a pair of separate keys (a key pair), one "private" and the other "public". You keep the private key a secret and store it on the computer you use to connect to the remote system.

How do I find my SSH public key? ›

Open your file explorer. You can now navigate to the hidden “.ssh” directory in your home folder. You should see two new files. The identification is saved in the id_rsa file and the public key is labeled id_rsa.pub.

How to connect to a server using private key in SSH? ›

Connect to Server with Private Key
  1. Enter the remote server Host Name or IP address under "Session".
  2. Navigate to "Connection" > "SSH" > "Auth".
  3. Click "Browse..." under "Authentication parameters" / "Private key file for authentication".
  4. Locate the "id_rsa.
Jan 26, 2023

How to connect SSH with public key Windows? ›

For Windows 10 & 11
  1. Press the Windows key or open up the Start Menu. Type “cmd”.
  2. Under “Best Match”, click “Command Prompt”.
  3. In the command prompt, use the ssh-keygen command: ...
  4. The system will now generate the key pair and display the key fingerprint and a randomart image. ...
  5. Open your file explorer.

How to connect SSH with public key putty? ›

The example used is for putty version 0.79.
  1. Launch PuTTY but do not connect to a remote system.
  2. In the Category window, browse to Connection>Data.
  3. Set the Auto-login username to the remote SSH username. ...
  4. Browse to Connection>SSH>Auth>Credentials. ...
  5. Test key-based authentication. ...
  6. Select Open to test the session.
Nov 23, 2023

How to connect rdp via SSH? ›

To start an RDP session, or connect to an existing one:
  1. Open a terminal (on MacOS or Linux) or cmd (on Windows 10 1809 or later), and type ssh myutorid@rdp1.teach.cs.toronto.edu -L3388:localhost:3389. ...
  2. When prompted, log in using your Teaching Labs password.
  3. Once logged in, leave the ssh session running; don't exit.

Top Articles
Latest Posts
Article information

Author: Catherine Tremblay

Last Updated:

Views: 6616

Rating: 4.7 / 5 (67 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Catherine Tremblay

Birthday: 1999-09-23

Address: Suite 461 73643 Sherril Loaf, Dickinsonland, AZ 47941-2379

Phone: +2678139151039

Job: International Administration Supervisor

Hobby: Dowsing, Snowboarding, Rowing, Beekeeping, Calligraphy, Shooting, Air sports

Introduction: My name is Catherine Tremblay, I am a precious, perfect, tasty, enthusiastic, inexpensive, vast, kind person who loves writing and wants to share my knowledge and understanding with you.