Posted November 6, 2024Nov 6 Yesterday, Roskomnadzor blocked the ESN service from CloudFlare, which is forcibly enabled for all sites protected by CFTo correct the situation, you need to disable this very ECH function.On PRO tariffs, this can be done directly in the domain settingson Free tariffs you need to execute the CURL command replacing ZONE_ID and API_KEY with your own:curl -X PATCH "https://api.cloudflare.com/client/v4/zones/{ZONE_ID}/settings/ech" \ -H "Authorization: Bearer {API_KEY}" \ -H "Content-Type:application/json" --data '{"id":"ech","value":"off"}'
November 7, 2024Nov 7 Author If the first option doesn't work, there is a second one:curl -X PATCH "https://api.cloudflare.com/client/v4/zones/DOMAIN_KEY/settings/ech" \-H "X-Auth-Email: EMAIL_ACCOUNT"\-H "X-Auth-Key: GLOBAL_API_KEY" \-H "Content-Type: application/json" \--data '{"id":"ech","value":"off"}'DOMAIN_KEY - Zone ID of the domainEMAIL_ACCOUNT - your cloudflare account emailGLOBAL_API_KEY - on the page https://dash.cloudflare.com/profile/api-tokens
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.