Configure DNS over HTTPS
With Cloudflare Gateway, you can filter DNS over HTTPS (DoH) requests by DNS location or by user without needing to install the WARP client on your devices.
Location-based policies require that you send DNS requests to a location-specific DoH endpoint, while identity-based policies require that requests include a user-specific DoH token.
Filter DoH requests by location
Location-based policies require that you send DNS requests to a unique DoH endpoint assigned to the location:
https://<YOUR_DOH_SUBDOMAIN>.cloudflare-gateway.com/dns-query
Prerequisites
Obtain your location’s DoH subdomain.
Configure browser for DoH
Browsers can be configured to use any DNS over HTTPS (DoH) endpoint. If you choose to configure DoH directly in your browser, you must choose a Gateway DNS location as your DoH endpoint, otherwise DNS filtering will not occur in that browser. Read more about enabling DNS over HTTPS on Chrome.Mozilla Firefox
https://<YOUR_DOH_SUBDOMAIN>.cloudflare-gateway.com/dns-query
.162.159.36.5
.3
.Google Chrome
https://<YOUR_DOH_SUBDOMAIN>.cloudflare-gateway.com/dns-query
.Microsoft Edge
https://<YOUR_DOH_SUBDOMAIN>.cloudflare-gateway.com/dns-query
.Brave
https://<YOUR_DOH_SUBDOMAIN>.cloudflare-gateway.com/dns-query
.Safari
Your DNS queries will now be sent to Gateway for filtering. To filter these requests, build a DNS policy using the DNS Location selector.
Filter DoH requests by user
In order to filter DoH queries based on user identity, each query must include a user-specific authentication token. If you have several devices per user and want to apply device-specific policies, you will need to map each device to a different email.
Currently, authentication tokens can only be generated through the API. You can run this interactive Python script which automates the setup procedure, or follow the steps described below.
1. Create a service token for the account
curl -X POST "https://api.cloudflare.com/client/v4/accounts/<ACCOUNT_ID>/access/service_tokens" \ -H "X-Auth-Email: <EMAIL>" \ -H "X-Auth-Key: <API_KEY>" \ -H "Content-Type: application/json" \ --data '{"name":"ACME Corporation service token"}'
Save the service token’s client_id
, client_secret
, and id
.Example response
2. Enable DoH functionality for the service token
curl -X PUT "https://api.cloudflare.com/client/v4/accounts/<ACCOUNT_ID>/access/organizations/doh/<ID>" \ -H "X-Auth-Email: <EMAIL>" \ -H "X-Auth-Key: <API_KEY>" \ -H "Content-Type: application/json" \
If you get an access.api.error.service_token_not_found
error, check that <SERVICE_TOKEN_ID>
is the value of id
and not client_id
.Example response
3. Create a user
Create a new user and optionally add them to a group.
curl -X POST "https://api.cloudflare.com/client/v4/accounts/<ACCOUNT_ID>/access/users" \ -H "X-Auth-Email: <EMAIL>" \ -H "X-Auth-Key: <API_KEY>" \ -H "Content-Type: application/json" \ --data '{ "name":"John Doe", "email":"jdoe@acme.com", "custom": {"groups":[{"id": "02fk6b3p3majl10", "email": "finance@acme.com", "name": "Finance"}]} }'
Save the user’s id
returned in the response.Example response
4. Generate a DoH token for the user
Request a DoH token for the user, using your service token to authenticate into your team domain.
curl -s -X GET "https://<TEAM_NAME>.cloudflareaccess.com/cdn-cgi/access/doh-token?account-id=<ACCOUNT_ID>&user-id=<USER_ID>&auth-domain=<TEAM_NAME>.cloudflareaccess.com" \ -H "Cf-Access-Client-Id: <CLIENT_ID>" \ -H "Cf-Access-Client-Secret: <CLIENT_SECRET>" -H "Content-Type: application/json" \
The response contains a unique DoH token associated with the user. This token expires in 24 hours. We recommend setting up a refresh flow for the DoH token instead of generating a new one for every DoH query.Example response
5. Send an authenticated DoH query
Send DoH queries to the resolver at https://<ACCOUNT_ID>.cloudflare-gateway.com/dns-query
, making sure to include the user’s DoH token in the CF-Authorization
header.
curl -s 'https://<ACCOUNT_ID>.cloudflare-gateway.com/dns-query?name=example.com' \ -H 'accept: application/dns-json' \ -H 'CF-Authorization: <USER_DOH_TOKEN>' | jq
If the site is blocked and you have enabled Display block page for the policy, the query will return 162.159.36.12
(the IP address of the Gateway block page). If the block page is disabled, the response will be 0.0.0.0
.Example response
You can verify that the request was associated with the correct user email by checking your Gateway DNS logs. To filter these requests, build a DNS policy using any of the Gateway identity-based selectors.