Key-based authentication in OpenSSH for Windows _ Microsoft Learn
Key-based authentication in OpenSSH for Windows _ Microsoft Learn
for Windows
Article • 02/14/2024
Applies to Windows Server 2022, Windows Server 2019, Windows 10 (build 1809 and
later)
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)".
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 circumstances. 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.
) Important
A remote session opened via key based authentication does not have associated user
credentials and hence is not capable of outbound authentication as the user, this is by
design.
) 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:
PowerShell
To generate key files using the Ed25519 algorithm, run the following command from a
PowerShell or cmd prompt on your client:
PowerShell
ssh-keygen -t ed25519
The output from the command should display the following output (where "username" is
replaced by your username):
Output
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.
Output
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:
Output
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:
PowerShell
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 it from the local system, after adding it to ssh-agent. The private key
cannot be retrieved from the agent providing a strong algorithm has been used, such
as Ed25519 in this example. If you lose access to the private key, you will have to
create a new key pair and update the public key on all systems you interact with.
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.
PowerShell
# 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
variable
ssh username@[email protected] $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" is replaced by your user name). You'll need to use the password for the user
account for the server initially.
7 Note
This example shows the steps for creating the administrators_authorized_keys file.
This only applies to administrator accounts and must be used instead of the per user
file within the user's profile location.
PowerShell
# 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
variable
ssh username@[email protected] $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 :
PowerShell
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.