Add an SSH Server With Certificate Auth
Last modified on October 25, 2024
On this page
Overview
An SSH server is a combination of a specific SSH destination and the credentials to access it. This guide describes how to set up an SSH server with a certificate in the Admin UI.
Using certificate authentication eliminates the need to manage unique key pairs for each of your servers. By using a certificate authority managed by StrongDM, every connection is secured with a short-lived private/public key pair, thus eliminating the risk of lost keys being compromised.
Prerequisites
Before you begin, ensure that the server you are attempting to add is accessible from your StrongDM gateways or relays. You must have a properly functioning gateway or relay up and running, and it must be able to reach the target server before you can proceed.
To verify, go to the gateway or relay server and from a command prompt, type ping <YOUR_HOSTNAME>
. If your gateway or relay can connect to this hostname, you can continue.
For more information see nodes.
Review StrongDM CA Public Key
Every organization in StrongDM is automatically assigned a unique Certificate Authority (CA) for SSH, known as a Strong CA. The Strong CA is a cryptographic key pair in charge of issuing and validating certificates for every SSH session. You need to add the SSH CA public key as a trusted source on any hosts you want to access with this option.
As an alternative to the Strong CA, organizations that have the Enterprise plan enabled may use an SSH CA issued by a third-party issuer (for example, HashiCorp). Third-party CAs are managed in the same way as the Strong CA.
All SSH CAs available to your organization are listed on the Admin UI’s Settings > Credentials Management within the Certificate Authorities tab. Selecting a CA opens that CA’s settings, which shows all certificates issued by the CA. Each certificate is identified by a unique fingerprint and the time and date when it was created.
Multiple certificates can exist, but only one can be active at a time. An active certificate is the one configured to authenticate to the resource. The active certificate is highlighted and shown in blue, whereas inactive certificates are shown in gray.
Only one active SSH CA is permitted per organization. If the CA is rotated, all SSH sessions using the last active CA are terminated. Please rotate with caution.
Certificate rotation may be done in the Admin UI only from Settings > Credentials Management within the Certificate Authorities tab. For more information, please see Certificate Authorities.
How to view and copy the SSH CA public key
- Log in to the StrongDM Admin UI.
- Go to Settings > Credentials Management and to the Certificate Authorities tab and select either StrongDM SSH Certificate Authority or another SSH CA.
- From the SSH CA’s Settings tab, select one of the certificates shown, or create a new certificate.
- Click the i button beside the certificate’s fingerprint.
- From the SSH Certificate dialog that displays, use the Copy button to copy the SSH CA public key to your clipboard.
Add the StrongDM CA to Your Host
The next step is to tell your host to trust certificates issued by your organization’s CA. If you have not already, add your organization’s SSH CA public key to the targeted host.
Create a
/etc/ssh/sdm_ca.pub
file and add the SSH CA public key.SSH can sometimes be unpredictable if permissions are not set correctly. Therefore, update the file’s permissions:
sudo chmod 600 /etc/ssh/sdm_ca.pub
With your editor of choice, modify
/etc/ssh/sshd_config
by appending the following lines:# StrongDM CA TrustedUserCAKeys /etc/ssh/sdm_ca.pub
Restart the SSH service on this host for the changes to take effect. Note that the command you execute may differ based on your system configuration, and you may need to restart
sshd
orssh
, as in the following example:sudo systemctl restart sshd
Restrict access by username
Because the certificates generated by the CA use the resource settings, anyone with access to modify these settings can change the username and thus elevate their privileges, allowing them to assume root or any existing account on the target system. Of course, any actions are logged by StrongDM. However, we still strongly recommend disabling SSH access for the root account entirely.
Additionally, you can restrict what users or principals are allowed to authenticate with the CA. Every certificate created by the StrongDM CA contains two principals: the username specified in the datasource settings and the literal string strongdm
. You can use the following steps to restrict access to only this user, replacing user-one
with your desired username.
Create a folder to contain the user files.
mkdir /etc/ssh/sdm_users
With your editor of choice, create a file that matches the desired username, as in the following example. Then type the string
strongdm
, save, and close.sudo vim /etc/ssh/sdm_users/user-one
Modify
/etc/ssh/sshd_config
and append the following line:AuthorizedPrincipalsFile /etc/ssh/sdm_users/%u
After making these changes, restart the sshd service. It then uses the updated version of the AuthorizedPrincipalsFile.
sudo systemctl restart sshd
You can find additional ways to restrict access by username in Red Hat’s Creating SSH Certificates documentation.
Add an SSH Certificate-Based Server in the Admin UI
To add your new SSH certificate-based server as a StrongDM resource, use the following steps.
- Log in to the Admin UI and go to Resources > Servers.
- Click Add server.
- Select SSH (Certificate Based) as the Server Type and set other resource properties to configure how the StrongDM relay connects to the server via SSH.
- Click create to save the resource.
- Click the resource name to view status, diagnostic information, and setting details. After the server is created, the Admin UI displays that resource as unhealthy until the health checks run successfully. When the resource is ready, the Health icon indicates a positive, green status.
Resource properties
Configuration properties are visible when you add a Server Type or when you click to view the server’s settings. The following table describes the settings available for your SSH (Certificate Based) server.
Property | Requirement | Description |
---|---|---|
Display Name | Required | Meaningful name to display the resource throughout StrongDM; exclude special characters like quotes (") or angle brackets (< or >) |
Server Type | Required | Select SSH (Certificate Based) |
Hostname | Required | Hostname or IP address to which you are connecting, such as testserver-01.example.org ; relay server should be able to connect to your target server or hostname |
Port | Required | Port to connect to the resource; default port value 22 |
Bind Interface | Read only | Automatically generated IP address value in the 127.0.0.1 to 127.255.255.254 IP address range; default is 127.0.0.1 ; preferred bind interface value can be modified later under Settings > Port Overrides |
Port Override | Read only | Automatically generated with a value between 1024 to 59999 as long as that port is not used by another resource; preferred port can be modified later under Settings > Port Overrides |
Certificate Authority | Required | Where the credentials for the server are stored; defaults to Strong CA; to learn more, see Certificate Authority options |
Key Type | Required | Signing algorithm with default value set to RSA-2048; other options include RSA-4096, ECDSA-256, ECDSA-384, ECDSA-521, and ED25519; to learn more, see Key Type options |
Authentication | Required | Select Leased Credentials (default) or Identity Aliases |
Username | Required | Displays if Authentication is set to Leased Credentials; enter the username the relay should utilize to connect to the server via SSH (for example, bob.belcher ) |
Identity Set | Required | Displays if Authentication is set to Identity Aliases; select an Identity Set name from the list |
Healthcheck Username | Required | Displays if Authentication is set to Identity Alias; enter the username that will be utilized to verify StrongDM’s connection to the server; username must exist on the target server |
Allow Port Forwarding | Optional | When enabled, allows SSH connections proxied by StrongDM for this server to accept local forwarding requests; this checkbox is shown when the Allow port forwarding through SSH? option is turned on in the Admin UI security settings; see Port Forwarding for more information |
Resource Tags | Optional | Resource tags consisting of key-value pairs <KEY>=<VALUE> (for example, env=dev ) |
Certificate Authority options
By default, server credentials are stored in Strong CA. If the Enterprise plan is enabled for your organization, you may use a third-party CA, instead of the default Strong CA, to issue certificates for authentication to your certificate-based SSH resources.
For more information, please see Certificate Authorities.
Key type options
The following table describes the different key types StrongDM can use to encrypt and secure SSH connections.
Key type | Description | Additional information |
---|---|---|
RSA-2048 | 2048-bit key generated with RSA algorithm | Lowest security guarantees, but has broad support across hosts |
RSA-4096 | 4096-bit key generated with RSA algorithm | Slightly better than RSA-2048; still uses RSA, but larger keys can prolong the time to crack if an attacker gains access |
ECDSA-256 | Key generated with 256-bit elliptic curve and ECDSA algorithm | Provides better security guarantees than RSA |
ECDSA-384 | Key generated with 384-bit elliptic curve and ECDSA algorithm | Slightly better than ECSDA-256 |
ECDSA-521 | Key generated with 521-bit elliptic curve and ECDSA algorithm | Serves as the best ECDSA choice from a security standpoint |
ED25519 | Key generated with ED25519 algorithm | Provides the best performance and comparable security to ECDSA; much smaller keys, but not as widely supported as other options |
Additional Considerations
- You may have an existing CA key pair and certificate to perform direct SSH or other tasks. You can continue to use this key pair, but you cannot import this CA into StrongDM.
- You do not need to sign these keys, or any user keys. StrongDM handles that for you and for your users.
- Session-based certificates for users are automatically renewed every 3 minutes.