Cloudflare Docs
Cloudflare-One
Visit Cloudflare Zero Trust on GitHub
Set theme to dark (⇧+D)

Configure short-lived certificates

Cloudflare Access can replace traditional SSH key models with short-lived certificates issued to your users based on the token generated by their Access login. In traditional models, users generate a keypair and commit their public key into an infrastructure management tool, like Salt, or otherwise upload it to an administrator. These keys can remain unchanged for months or years.

Cloudflare Access removes the burden on the end user of generating a key, while also improving security of access to infrastructure with ephemeral certificates.

1. Secure a server behind Cloudflare Access.

To protect a resource behind Cloudflare Access, first follow these instructions to secure the server.

2. Generate a short-lived certificate public key.

  1. On the Zero Trust dashboard, navigate to Access > Service Auth.

  2. In the dropdown, choose the application that represents the resource you secured in Step 1.

    New Cert

  3. Click Generate certificate. A row will appear with a public key scoped to your application.

  4. Save the key or keep it somewhere convenient for configuring your server. You can return to copy this public key any time in the Service Auth dashboard.

    Pub Key Cert

3. Ensure Unix usernames match user SSO identities

Cloudflare Access will take the identity from a token and, using short-lived certificates, authorize the user on the target infrastructure. Access matches based on the identity that precedes an email domain. Unix usernames must match the identity preceding the email domain.

For example, if the user’s identity in your Okta or GSuite provider is jdoe@example.com then Access will look to match that identity to the Unix user jdoe.

You can create a user entry with duplicate uid, gid, and home directory to link an identity to an existing user with a different username. You will need to create a password for it separately and add it to the same groups to replicate permissions.

For testing purposes, you can run the following command to generate a Unix user on the machine:

$ sudo adduser jdoe

4. Save your public key

  1. Save the public key generated from the dashboard in Step 2 as a new .pub file to your local system.

  2. Use the following command to change directories to the SSH configuration directory on the remote target machine:

$ cd /etc/ssh
  1. Once there, you can use the following command to both generate the file and open a text editor to input/paste the public key.
$ vim ca.pub
  1. In the ca.pub file, paste the public key generated in Access without any modifications. Save the file. In some systems, you may need to use the following command to force the file to save depending on your permissions.
:w !sudo tee %
:q!

5. Modify your SSHD config

Cloudflare Access requires two changes to the sshd_config file used on the remote target machine.

The first change requires that you uncomment a field already set in most default configurations; the second change adds a new field.

  1. While staying within the /etc/ssh directory on the remote machine, open the sshd_config file.
$ vim /etc/ssh/sshd_config
  1. Navigate to the row named PubkeyAuthentication. In most default configurations, the row will appear commented out as follows:
# PubkeyAuthentication yes
  1. Remove the # symbol to uncomment the line; keep the setting yes enabled.

  2. Next, add a new line below PubkeyAuthentication as follows:

TrustedUserCAKeys /etc/ssh/ca.pub

The change above will tell your SSH configuration to use the public key saved in Step 5 for authorizing users. Save the file and quit the editor. You might need to use the following command again to save and exit.

:w !sudo tee %
:q!

6. Restart your SSH server

Once you have modified your SSHD configuration, you still need to restart the SSH service on the remote machine. Commands are provided below that cover servers running systemd, as well. You can execute both.

Debian/Ubuntu

$ sudo service ssh restart
$ sudo systemctl restart ssh

CentOS/RHEL

$ sudo service sshd restart
$ sudo systemctl restart sshd

7. Connect as a user

Configure your client SSH config

On the client side, follow this tutorial to configure your device to use Cloudflare Access to reach the protected machine. To use short-lived certificates, you must include the following settings in your SSH config file.

To save time, you can use the following cloudflared command to print the required configuration command:

$ cloudflared access ssh-config --hostname vm.example.com --short-lived-cert

If you prefer to configure manually, these are the required commands:

Host vm.example.com
    ProxyCommand bash -c '/usr/local/bin/cloudflared access ssh-gen --hostname %h; ssh -tt %r@cfpipe-vm.example.com >&2 <&1'
Host cfpipe-vm.example.com
    HostName vm.example.com
    ProxyCommand /usr/local/bin/cloudflared access ssh --hostname %h
    IdentityFile ~/.cloudflared/vm.example.com-cf_key
    CertificateFile ~/.cloudflared/vm.example.com-cf_key-cert.pub

Connect through a browser-based terminal

End users can connect to the SSH session without any configuration by using Cloudflare’s browser-based terminal. Users visit the URL of the application and Cloudflare’s terminal handles the short-lived certificate flow. To enable, follow the instructions here .