Mutual TLS
Mutual TLS (mTLS) authentication ↗ ensures that traffic is both secure and trusted in both directions between a client and server. It allows requests that do not log in with an identity provider (like IoT devices) to demonstrate that they can reach a given resource. Client certificate authentication is also a second layer of security for team members who both log in with an identity provider (IdP) and present a valid client certificate.
With a root certificate authority (CA) in place, Access only allows requests from devices with a corresponding client certificate. When a request reaches the application, Access responds with a request for the client to present a certificate. If the device fails to present the certificate, the request is not allowed to proceed. If the client does have a certificate, Access completes a key exchange to verify.
To enforce mTLS authentication from Zero Trust ↗:
-
Go to Access > Service auth > Mutual TLS.
-
Select Add mTLS Certificate.
-
Give the Root CA any name.
-
Paste the content of the
ca.pem
file into the Certificate content field.- The CA certificate can be from a publicly trusted CA or self-signed.
- In the certificate
Basic Constraints
, the attributeCA
must be set toTRUE
. - The certificate must use one of the signature algorithms listed below:
Allowed signature algorithms
x509.SHA1WithRSA
x509.SHA256WithRSA
x509.SHA384WithRSA
x509.SHA512WithRSA
x509.ECDSAWithSHA1
x509.ECDSAWithSHA256
x509.ECDSAWithSHA384
x509.ECDSAWithSHA512
-
In Associated hostnames, enter the fully-qualified domain names (FQDN) that will use this certificate.
These FQDNs will be the hostnames used for the resources being protected in the Access policy. You must associate the Root CA with the FQDN that the application being protected uses.
-
Select Save.
If your zone is using an intermediate certificate in addition to the root certificate, upload the entire chain.
-
Next, go to Access > Applications.
-
Find the application you would like to enforce mTLS on and select Edit. The application must be included in the Associated hostnames list from Step 5.
-
Create a new (or amend an existing) Access policy.
If this is for a client who does not need to log in through an IdP, set the policy Action to Service Auth.
-
Add an mTLS authentication rule using the following selectors:
Selector Description Common Name Only client certificates with a specific common name will be allowed to proceed. Valid Certificate Any client certificate that can authenticate with the Root CA will be allowed to proceed. -
Save the policy.
To test the application protected by an mTLS policy:
-
First, attempt to curl the site without a client certificate. This curl command example is for the site
example.com
that has an Access policy set forhttps://auth.example.com
:Without a client certificate in the request, a
403 forbidden
response displays and the site cannot be accessed. -
Now, add your client certificate information to the request:
When the authentication process completes successfully, a CF_Authorization Set-Cookie
header returns in the response.
You can use Cloudflare’s open source tools for private key infrastructure (PKI) to test the mTLS feature in Cloudflare Access. This guide details the process to generate a Root Client Authority (CA), add it to the Cloudflare dashboard, and issue client certificates that can authenticate against the root CA and reach a protected resource.
The process requires two packages from Cloudflare’s PKI toolkit:
cf-ssl
cfssljson
You can install these packages from the Cloudflare SSL GitHub repository ↗. You will need a working installation of Go, version 1.12 or later. Alternatively, you can download the packages ↗ directly. Use the instructions under Installation to install the toolkit, and ensure that you install all of the utility programs in the toolkit.
-
Create a new directory to store the Root CA.
-
Within that directory, create two new files:
-
CSR. Create a file named
ca-csr.json
and add the following JSON blob, then save the file. -
config. Create a file named
ca-config.json
and add the following JSON blob, then save the file.
-
-
Now, run the following command to generate the Root CA with those files.
-
Within the directory, check its content to confirm the output was successful.
The output should now return the following content:
Returning to the terminal, generate a client certificate that will authenticate against the Root CA uploaded.
-
Create a file named
client-csr.json
and add the following JSON blob: -
Now, use the following command to generate a client certificate with the Cloudflare PKI toolkit:
-
You can now test the client certificate with the following
cURL
command.
The instructions here cover usage with a computer running macOS.
- In the same working directory, run the following command to add the client certificate into the macOS Keychain.
- Select the certificate in the Keychain list to set the certificate to trusted. Confirm that the certificate is listed in My Certificates.
You can use the Cloudflare PKI toolkit to generate a certificate revocation list (CRL), as well. This list will contain client certificates that are revoked.
-
Get the serial number from the client certificate generated earlier. Add that serial number, or any others you intend to revoke, in hex format in a text file. This example uses a file named
serials.txt
. -
Create the CRL with the following command.
You will need to add the CRL to your server or enforce the revocation in a Cloudflare Worker. An example Worker Script can be found on the Cloudflare GitHub repository ↗.
In addition to enforcing mTLS authentication for your host, you can also forward a client certificate to your origin server as an HTTP header. This setup is often helpful for server logging.
The most common approach to forwarding a certificate is to use the Cloudflare API to update an mTLS certificate’s hostname settings.
Once client_certificate_forwarding
is set to true
, the first request of an mTLS connection will now include the following headers:
Cf-Client-Cert-Der-Base64
Cf-Client-Cert-Sha256
You can also modify HTTP response headers using Managed Transforms to pass along TLS client auth headers.
Additionally, Workers can provide details around the client certificate.
mTLS does not currently work for:
- HTTP/3 traffic
- Cloudflare Pages site served on a custom domain
- Cloudflare R2 public bucket served on a custom domain
You can configure alerts to receive notifications before your mutual TLS certificates expire.
Access mTLS Certificate Expiration Alert
Who is it for?Access customers that use client certificates for mutual TLS authentication. This notification will be sent 30 and 14 days before the expiration of the certificate.
Other options / filtersNone.
Included withPurchase of Access and/or Cloudflare for SaaS.
What should you do if you receive one?Upload a renewed certificate.
Refer to Cloudflare Notifications for more information on how to set up an alert.