Skip to content

ERR_ECH_REQUIRED

Key idea:

ERR_ECH_REQUIRED — rare error (Chrome 123+): server signals it requires ECH (Encrypted Client Hello, RFC 9460) for the connection, but client either does not support it or did not get ECHConfig from DNS HTTPS RR. ECH encrypts SNI + ALPN in TLS 1.3 — privacy of browsing history from corporate proxies.

Below: causes, fixes, FAQ.

Check your site's SSL →

Common Causes

  • Server serves HTTPS resource record with ECHConfig but client skipped it
  • DNSSEC validation failed for HTTPS RR (intermediate resolver stripped)
  • ECHConfig expired (server rotated public key)
  • Client on old Chrome version (<115)
  • Enterprise proxy strips HTTPS DNS records

Step-by-Step Fix

  1. Update Chrome ≥ 115
  2. DNS provider support HTTPS records: Cloudflare ✅, Route 53 ✅, most 🟡
  3. Enable DNSSEC on domain
  4. Server-side: chrome://flags/#encrypted-client-hello toggle
  5. Enterno SSL checks HTTPS record presence

Check SSL Certificate →

Related SSL Errors

ERR_ECH_REQUIRED Overview and Immediate Solutions

The ERR_ECH_REQUIRED error indicates that the server requires the use of Encrypted Client Hello (ECH) for secure connections, and your browser does not support this feature. To resolve this issue, ensure that your browser is updated to the latest version, or switch to a different browser that supports ECH, such as recent versions of Chrome or Firefox. If you are managing the server, ensure that ECH is properly configured in your server settings.

Understanding Encrypted Client Hello (ECH)

Encrypted Client Hello (ECH) is an extension of the TLS protocol that enhances privacy by encrypting the initial handshake data sent from the client to the server. This is crucial in preventing eavesdropping and tampering during the connection setup phase. ECH is particularly relevant as more organizations adopt privacy-focused practices, and it is supported by several modern web browsers.

When a user attempts to establish a secure connection without ECH support, the server may respond with the ERR_ECH_REQUIRED error. This typically occurs when the server is configured to require ECH for all incoming connections, which can be a common practice among websites that prioritize user privacy and data security.

How ECH Works

With ECH, the client's initial handshake is encrypted, allowing sensitive information such as the hostname being accessed to remain confidential. Here’s a simplified overview of the ECH handshake process:

  1. The client sends an encrypted ClientHello message containing a randomly generated key.
  2. The server decrypts this message and processes the connection request.
  3. The server sends back a response, which is also encrypted, completing the handshake.

Because of this encryption, traditional network monitoring methods cannot easily inspect the contents of the handshake, thus enhancing privacy.

Configuring Servers for ECH Support

To avoid the ERR_ECH_REQUIRED error and ensure that your server supports ECH, you need to configure your web server appropriately. Below is an example configuration for Nginx, which has been updated to support ECH:

server {
    listen 443 ssl;
    server_name example.com;

    ssl_certificate /path/to/certificate.crt;
    ssl_certificate_key /path/to/private.key;

    # Enable ECH
    ssl_conf_command ECH on;

    location / {
        proxy_pass http://backend;
    }
}

In this example, the `ssl_conf_command ECH on;` directive enables ECH support on your Nginx server. Make sure to replace `/path/to/certificate.crt` and `/path/to/private.key` with the actual paths to your SSL certificate and private key.

For Apache servers, the configuration would look like this:

<VirtualHost *:443>
    ServerName example.com

    SSLEngine on
    SSLCertificateFile /path/to/certificate.crt
    SSLCertificateKeyFile /path/to/private.key

    # Enable ECH
    ECH on;
</VirtualHost>

Once you have updated your server configurations, restart the server to apply the changes. Ensure that your clients are also using browsers that support ECH to avoid the ERR_ECH_REQUIRED error.

For testing ECH support, you can use tools like ECH.dev to verify if your server is correctly configured and can handle ECH requests. This proactive approach will help mitigate potential connectivity issues for users accessing your site.

ERR_ECH_REQUIRED Quick Fix

The ERR_ECH_REQUIRED error occurs when a web server requires Encrypted Client Hello (ECH) support, but the client (browser) does not support it. To resolve this issue, ensure that your browser is updated to the latest version that supports ECH, or configure your server to disable ECH if it's not necessary for your use case.

Troubleshooting ERR_ECH_REQUIRED in Different Browsers

When encountering the ERR_ECH_REQUIRED error, it's essential to identify the browser and its version, as ECH support varies across different platforms. Below are some troubleshooting steps tailored for popular browsers:

Google Chrome

  • Ensure you are using Chrome version 92 or later, as ECH support was introduced in this version.
  • To check your version, navigate to chrome://settings/help.
  • If you are on an earlier version, update Chrome through the settings menu.

Mozilla Firefox

  • Firefox introduced ECH support in version 94. Check your version by going to about:support.
  • Update Firefox if you are using an older version.

Microsoft Edge

  • Edge users should ensure they are on version 92 or newer.
  • Check your version using edge://settings/help.

If all browsers are updated and the error persists, consider testing in incognito mode to rule out extensions that might interfere with ECH.

Server Configuration for ECH Support

To effectively handle the ERR_ECH_REQUIRED error, proper server configuration is crucial. Implementing ECH involves updating your server's TLS settings. Here’s a practical example using Nginx:

Nginx Configuration

server {
listen 443 ssl;
server_name example.com;

ssl_certificate /path/to/certificate.pem;
ssl_certificate_key /path/to/private.key;
ssl_protocols TLSv1.3;
ssl_early_data on;
ssl_ecdh_curve X25519:secp256r1;
ssl_ciphers 'ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256';
# Enable ECH
ssl_ech on;
}

In this configuration:

  • The server listens on port 443 with SSL enabled.
  • Ensure that the server uses TLS 1.3, as ECH is supported only in this version.
  • Set the ssl_ech directive to on to enable ECH support.

After making these changes, test your configuration using tools like SSL Labs to verify ECH support. If the test indicates that ECH is not supported, double-check your server and client configurations.

CertificateExpiry, issuer, domains (SAN)
ChainIntermediate and root CA validation
TLS ProtocolTLS version and cipher suite
VulnerabilitiesHeartbleed, POODLE, weak ciphers

Why teams trust us

TLS 1.3
supported
Full
CA chain check
<2s
result
30/14/7
days-to-expiry alerts

How it works

1

Enter domain

2

TLS chain verified

3

Expiry date & vulnerabilities

What Does the SSL Check Cover?

SSL/TLS is the encryption protocol that protects data between the browser and server. Our tool analyzes the certificate, chain of trust, TLS version, and knownvulnerabilities.

Certificate Details

Issuer, validity period, signature algorithm, covered domains (SAN), and validation type (DV/OV/EV).

Chain of Trust

Full chain verification: from leaf certificate through intermediates to root CA.

TLS Analysis

Protocol version (TLS 1.2/1.3), cipher suites, Perfect Forward Secrecy (PFS) support.

Expiry Alerts

Set up a monitor — get Telegram and email alerts 30/14/7 days before expiration.

DV vs OV vs EV Certificates

DV (Domain Validation)
  • Confirms domain ownership only
  • Issued in minutes automatically
  • Free via Let's Encrypt
  • Suitable for most websites
  • Most common certificate type
OV / EV
  • Organization (OV) or Extended Validation (EV)
  • Issued in 1-5 business days
  • Costs $50 to $500/year
  • For finance, e-commerce, government sites
  • Increases user trust

Who uses this

DevOps

SSL certificate monitoring

Security

TLS config audit

SEO

HTTPS as ranking factor

E-commerce

customer trust

Common Mistakes

Expired certificateBrowsers block sites with expired SSL. Set up auto-renewal or monitoring.
Incomplete certificate chainWithout intermediate CA, some browsers and bots cannot verify the certificate.
Mixed content on HTTPS siteHTTP resources on an HTTPS page — the browser lock icon disappears, reducing trust.
Using TLS 1.0/1.1Legacy TLS versions have known vulnerabilities. Use TLS 1.2+ or 1.3.
Domain mismatch in certificateThe certificate must cover all site domains, including www and subdomains.

Best Practices

Set up auto-renewalLet's Encrypt + certbot with cron — certificate renews automatically every 60-90 days.
Enable HSTSStrict-Transport-Security header forces browsers to always use HTTPS.
Use TLS 1.3TLS 1.3 is faster (1-RTT handshake) and safer — legacy ciphers removed.
Monitor expiration datesCreate a monitor on Enterno.io — get notified well before expiration.
Verify chain after renewalAfter certificate renewal, confirm that intermediate certificates are installed.

Get more with a free account

SSL certificate monitoring, check history and alerts 30 days before expiry.

Sign up free

Learn more

Sources

Frequently Asked Questions

ECH adoption 2026?

Cloudflare ECH enabled on millions of sites (default if HTTPS RR present). Chrome 115+ supports. Firefox 118+. Safari 17+.

Why ECH?

Traditional TLS leaks SNI (domain) to middleboxes. ECH hides SNI — privacy for https://adult-site or https://politicsafe.

Blocked by governments?

Some countries (Russia, China) block or filter ECH traffic. If domain blocked — ECH helps only partially.

How to test ECH?

browsers.cloudflare.com/ech — online test. <code>curl --ech</code> in future.

Try the live tool that powered this guide

Free plan — 10 monitors, checks every 5 min, no card required. Upgrade for 1-minute interval and multi-region monitoring.