Key-based authentication in OpenSSH for Windows (2024)

  • Article

Applies to Windows Server 2022, Windows Server 2019, Windows 10 (build 1809 and later)

Most authentication in Windows environments is done with a username-password pair, which works well for systems that share a common domain. When working across domains, such as between on-premises and cloud-hosted systems, it becomes vulnerable to brute force intrusions.

By comparison, Linux environments commonly use public-key/private-key pairs to drive authentication that doesn't require the use of guessable passwords. OpenSSH includes tools to help support key based authentication, specifically:

  • ssh-keygen for generating secure keys
  • ssh-agent and ssh-add for securely storing private keys
  • scp and sftp to securely copy public key files during initial use of a server

This document provides an overview of how to use these tools on Windows to begin using key-based authentication with SSH.If you're unfamiliar with SSH key management, we strongly recommend you review NIST document IR 7966 titled "Security of Interactive and Automated Access Management Using Secure Shell (SSH)".

About key pairs

Key pairs refer to the public and private key files that are used by certain authentication protocols.

SSH public key authentication uses asymmetric cryptographic algorithms to generate two key files – one "private" and the other "public". The private key files are the equivalent of a password, and should stay protected under all circ*mstances. If someone acquires your private key, they can sign in as you to any SSH server you have access to. The public key is what is placed on the SSH server, and may be shared without compromising the private key.

Key based authentication enables the SSH server and client to compare the public key for a user name provided against the private key. If the server-side public key can't be validated against the client-side private key, authentication fails.

Multi-factor authentication may be implemented with key pairs by entering a passphrase when the key pair is generated (see user key generation below). The user will be prompted for the passphrase during authentication. The passphrase is used along with the presence of the private key on the SSH client to authenticate the user.

Important

A remote session opened via key based authentication does not have associated user credentials andhence is not capable of outbound authentication as the user, this is by design.

Host key generation

Public keys have specific ACL requirements that, on Windows, equate to only allowing access to administrators and System. On first use of sshd, the key pair for the host will be automatically generated.

Important

You need to have OpenSSH Server installed first. Please see Getting started with OpenSSH.

By default the sshd service is set to start manually. To start it each time the server is rebooted, run the following commands from an elevated PowerShell prompt on your server:

# Set the sshd service to be started automaticallyGet-Service -Name sshd | Set-Service -StartupType Automatic# Now start the sshd serviceStart-Service sshd

Since there's no user associated with the sshd service, the host keys are stored under C:\ProgramData\ssh.

User key generation

To use key-based authentication, you first need to generate public/private key pairs for your client. ssh-keygen.exe is used to generate key files and the algorithms DSA, RSA, ECDSA, or Ed25519 can be specified. If no algorithm is specified, RSA is used. A strong algorithm and key length should be used, such as Ed25519 in this example.

To generate key files using the Ed25519 algorithm, run the following command from a PowerShell or cmd prompt on your client:

ssh-keygen -t ed25519

The output from the command should display the following output (where "username" is replaced by your username):

Generating public/private ed25519 key pair.Enter file in which to save the key (C:\Users\username/.ssh/id_ed25519):

You can press Enter to accept the default, or specify a path and/or filename where you would like your keys to be generated.At this point, you'll be prompted to use a passphrase to encrypt your private key files. The passphrase can be empty but it's not recommended.The passphrase works with the key file to provide two-factor authentication. For this example, we're leaving the passphrase empty.

Enter passphrase (empty for no passphrase):Enter same passphrase again:Your identification has been saved in C:\Users\username/.ssh/id_ed25519.Your public key has been saved in C:\Users\username/.ssh/id_ed25519.pub.The key fingerprint is:SHA256:OIzc1yE7joL2Bzy8!gS0j8eGK7bYaH1FmF3sDuMeSj8 username@LOCAL-HOSTNAMEThe key's randomart image is:+--[ED25519 256]--+| . || o || . + + . || o B * = . || o= B S . || .=B O o || + =+% o || *oo.O.E ||+.o+=o. . |+----[SHA256]-----+

Now you have a public/private ed25519 key pair in the location specified. The .pub files are public keys, and files without an extension are private keys:

Mode LastWriteTime Length Name---- ------------- ------ -----a---- 6/3/2021 2:55 PM 464 id_ed25519-a---- 6/3/2021 2:55 PM 103 id_ed25519.pub

Remember that private key files are the equivalent of a password should be protected the same way you protect your password.Use ssh-agent to securely store the private keys within a Windows security context, associated with your Windows account. To start the ssh-agent service each time your computer is rebooted, and use ssh-add to store the private key run the following commands from an elevated PowerShell prompt on your server:

# By default the ssh-agent service is disabled. Configure it to start automatically.# Make sure you're running as an Administrator.Get-Service ssh-agent | Set-Service -StartupType Automatic# Start the serviceStart-Service ssh-agent# This should return a status of RunningGet-Service ssh-agent# Now load your key files into ssh-agentssh-add $env:USERPROFILE\.ssh\id_ed25519

Once you've added the key to the ssh-agent on your client, the ssh-agent will automatically retrieve the local private key and pass it to your SSH client.

Important

It is strongly recommended that you back up your private key to a secure location, then delete itfrom the local system, after adding it to ssh-agent. The private key cannot be retrieved fromthe agent providing a strong algorithm has been used, such as Ed25519 in this example. If you loseaccess to the private key, you will have to create a new key pair and update the public key on allsystems you interact with.

Deploying the public key

To use the user key that was created above, the contents of your public key (\.ssh\id_ed25519.pub) needs to be placed on the server into a text file. The name and location of the file depends on whether the user account is a member of the local administrators group or a standard user account. The following sections cover both standard and administrative users.

Standard user

The contents of your public key (\.ssh\id_ed25519.pub) needs to be placed on the server into a text file called authorized_keys in C:\Users\username\.ssh\. You can copy your public key using the OpenSSH scp secure file-transfer utility, or using a PowerShell to write the key to the file.

The example below copies the public key to the server (where "username" is replaced by your username). You'll need to use the password for the user account for the server initially.

# Get the public key file generated previously on your client$authorizedKey = Get-Content -Path $env:USERPROFILE\.ssh\id_ed25519.pub# Generate the PowerShell to be run remote that will copy the public key file generated previously on your client to the authorized_keys file on your server$remotePowershell = "powershell New-Item -Force -ItemType Directory -Path $env:USERPROFILE\.ssh; Add-Content -Force -Path $env:USERPROFILE\.ssh\authorized_keys -Value '$authorizedKey'"# Connect to your server and run the PowerShell using the $remotePowerShell variablessh username@domain1@contoso.com $remotePowershell

Administrative user

The contents of your public key (\.ssh\id_ed25519.pub) needs to be placed on the server into a text file called administrators_authorized_keys in C:\ProgramData\ssh\. You can copy your public key using the OpenSSH scp secure file-transfer utility, or using a PowerShell to write the key to the file. The ACL on this file needs to be configured to only allow access to administrators and System.

The example below copies the public key to the server and configures the ACL (where "username" isreplaced by your user name). You'll need to use the password for the user account for the serverinitially.

Note

This example shows the steps for creating the administrators_authorized_keys file. This onlyapplies to administrator accounts and must be used instead of the per user file within the user'sprofile location.

# Get the public key file generated previously on your client$authorizedKey = Get-Content -Path $env:USERPROFILE\.ssh\id_ed25519.pub# Generate the PowerShell to be run remote that will copy the public key file generated previously on your client to the authorized_keys file on your server$remotePowershell = "powershell Add-Content -Force -Path $env:ProgramData\ssh\administrators_authorized_keys -Value '''$authorizedKey''';icacls.exe ""$env:ProgramData\ssh\administrators_authorized_keys"" /inheritance:r /grant ""Administrators:F"" /grant ""SYSTEM:F"""# Connect to your server and run the PowerShell using the $remotePowerShell variablessh username@domain1@contoso.com $remotePowershell

For non-English localized versions of the operating system, the script will need to be modified to reflect group names accordingly. To prevent errors when granting permissions to group names, the Security Identifier (SID) can be used in its place. The SID can be retrieved by running Get-LocalGroup | Select-Object Name, SID. When using the SID in place of the group name, it must be preceded by an asterisk (*). In the following example, the Administrators group uses the SID S-1-5-32-544:

$remotePowershell = "powershell Add-Content -Force -Path $env:ProgramData\ssh\administrators_authorized_keys -Value '''$authorizedKey''';icacls.exe ""$env:ProgramData\ssh\administrators_authorized_keys"" /inheritance:r /grant ""*S-1-5-32-544:F"" /grant ""SYSTEM:F"""

These steps complete the configuration required to use key-based authentication with OpenSSH on Windows.Once the example PowerShell commands have been run, the user can connect to the sshd host from any client that has the private key.

Key-based authentication in OpenSSH for Windows (2024)

FAQs

What is key-based authentication for OpenSSH on Windows? ›

To use key-based authentication, you first need to generate public/private key pairs for your client. ssh-keygen.exe is used to generate key files and the algorithms DSA, RSA, ECDSA, or Ed25519 can be specified. If no algorithm is specified, RSA is used.

What is key-based authentication in OpenSSH? ›

Key-based authentication provides two primary benefits: Helps mitigate brute-force password attacks against SSH. Prevents administrators from being required to manually type passwords in automated processes such as scripts or Ansible.

How to add authorized keys to SSH 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 do I enable OpenSSH authentication agent in Windows? ›

Set up a Windows 10 SSH server:
  1. Open “Settings” > “Apps” > “Apps & Features” > “Optional Features.
  2. Select “Add Features” and “OpenSSH Server” and “Install” (admin rights required).
  3. Set the startup type for “OpenSSH Authentication Agent” and “OpenSSH Server” to “Automatic” in the Windows “Services” app.
Oct 4, 2023

How do I create an OpenSSH key in Windows? ›

To generate an SSH key in Windows 10 using OpenSSH, follow these steps:
  1. Open the Windows Terminal or Command Prompt.
  2. Run the command: ssh-keygen -t rsa to generate a new SSH key pair.
  3. Specify a location to save the key files when prompted (optional).
  4. Enter a passphrase for added security (optional).
Nov 24, 2023

Is OpenSSH for Windows Secure? ›

OpenSSH is a connectivity tool for remote sign-in that uses the SSH protocol. It encrypts all traffic between client and server to eliminate eavesdropping, connection hijacking, and other attacks.

How do I permanently add SSH key to Windows? ›

How To Setup SSH key in Windows
  1. Step1: Set up your default identity. firs of all open your terminals like gitbash or cmDer . ...
  2. Step 2: Add SSH in Bitbucket. let's fire command cat id_rsa. ...
  3. Step 3: Add the SSH key to the ssh-agent. ...
  4. Step 4: Check Login in terminal.
Jan 10, 2022

How to setup SSH authorized_keys? ›

Procedure
  1. Use the ssh-keygen tool to create a key pair. ...
  2. Validate that the keys were generated. ...
  3. Enable key-based authentication in the /etc/ssh directory on the SSH server. ...
  4. Copy the rsa. ...
  5. If you have an existing authorized_keys file, edit it to remove any no-pty restrictions.

Where are ssh keys in Windows? ›

Your public SSH key is located by default at C:\Users\<username>\. ssh\id_rsa. pub and is perfectly safe to be shared with anyone. Your private SSH key will be located by default at C:\Users\<username>\.

How do I enable OpenSSH on Windows? ›

Install OpenSSH (GUI Method):
  1. Go to Settings → System → Optional Features.
  2. Check if OpenSSH is installed. ...
  3. Confirm OpenSSH is listed in Apps and Optional Features.
  4. Open the Services app, find OpenSSH SSH Server, set its startup type to Automatic, and start the service.

How to add ssh key to ssh-agent windows? ›

Add your key to the SSH agent
  1. Run the following command, replacing the {ssh-key-name} with the name of the private key: 1 ssh-add ~/{ssh-key-name}
  2. To ensure the correct SSH key is used when connecting to Bitbucket, update or create your SSH configuration file (~/.ssh/config) with the following settings:

How to generate SSH key for authentication? ›

Generating a new SSH key
  1. Open Terminal .
  2. Paste the text below, replacing the email used in the example with your GitHub email address. ssh-keygen -t ed25519 -C "your_email@example.com" ...
  3. At the prompt, type a secure passphrase. For more information, see "Working with SSH key passphrases."

What is the default password authentication for OpenSSH? ›

Password Authentication for OpenSSH Server on Ubuntu is enabled by default, so it's possible to login without changing any settings. Furthermore, root account is prohibited Password Authentication by default with [PermitRootLogin prohibit-password], so default setting is good for use.

What is the difference between public key and password authentication as offered by SSH? ›

Ssh keys are stronger that passwords for 2 distinct reasons: There is no "shared secret" so the private key is never known by the server. The server sends a challenge (a random value), the client encodes it with the private key, and the server validates it with the public key.

What are the SSH key authentication methods? ›

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.

What is the default key type for OpenSSH? ›

ssh-keygen defaults to RSA therefore there is no need to specify it with the -t option. It provides the best compatibility of all algorithms but requires the key size to be larger to provide sufficient security.

Top Articles
What to do if you're in a financially dependent relations
Disgraced former FTX CEO Sam Bankman-Fried sentenced to 25 years for financial fraud, must forfeit $11 billion for victims
Omega Pizza-Roast Beef -Seafood Middleton Menu
Dunhams Treestands
Http://N14.Ultipro.com
Online Reading Resources for Students & Teachers | Raz-Kids
Ross Dress For Less Hiring Near Me
Www.craigslist Augusta Ga
Craigslist Dog Sitter
Scentsy Dashboard Log In
Obituary | Shawn Alexander | Russell Funeral Home, Inc.
Nebraska Furniture Tables
Cashtapp Atm Near Me
London Ups Store
Spider-Man: Across The Spider-Verse Showtimes Near Marcus Bay Park Cinema
Fraction Button On Ti-84 Plus Ce
Craigslist Pet Phoenix
Busted Campbell County
Orange Pill 44 291
Never Give Up Quotes to Keep You Going
Spn 520211
27 Paul Rudd Memes to Get You Through the Week
What Is The Lineup For Nascar Race Today
Hannah Palmer Listal
Craigslist List Albuquerque: Your Ultimate Guide to Buying, Selling, and Finding Everything - First Republic Craigslist
Restaurants In Shelby Montana
O'reilly's In Mathis Texas
Meggen Nut
Wasmo Link Telegram
Lehpiht Shop
Texters Wish You Were Here
Lichen - 1.17.0 - Gemsbok! Antler Windchimes! Shoji Screens!
Vip Lounge Odu
Tal 3L Zeus Replacement Lid
AI-Powered Free Online Flashcards for Studying | Kahoot!
Myfxbook Historical Data
Daily Times-Advocate from Escondido, California
15 Best Things to Do in Roseville (CA) - The Crazy Tourist
Colorado Parks And Wildlife Reissue List
Lacy Soto Mechanic
All-New Webkinz FAQ | WKN: Webkinz Newz
VPN Free - Betternet Unlimited VPN Proxy - Chrome Web Store
Ds Cuts Saugus
18006548818
R: Getting Help with R
Satucket Lectionary
Brake Pads - The Best Front and Rear Brake Pads for Cars, Trucks & SUVs | AutoZone
Brauche Hilfe bei AzBilliards - Billard-Aktuell.de
UT Announces Physician Assistant Medicine Program
Amy Zais Obituary
Booked On The Bayou Houma 2023
Latest Posts
Article information

Author: Corie Satterfield

Last Updated:

Views: 6630

Rating: 4.1 / 5 (42 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Corie Satterfield

Birthday: 1992-08-19

Address: 850 Benjamin Bridge, Dickinsonchester, CO 68572-0542

Phone: +26813599986666

Job: Sales Manager

Hobby: Table tennis, Soapmaking, Flower arranging, amateur radio, Rock climbing, scrapbook, Horseback riding

Introduction: My name is Corie Satterfield, I am a fancy, perfect, spotless, quaint, fantastic, funny, lucky person who loves writing and wants to share my knowledge and understanding with you.