Hello, my website is hosted on Bubble and I’m getting an error message from them about my DNS records. The message says that their infrastructure doesn’t support IPV6 lookups and there are two AAAA records pointing at a Cloudflare account that doesn’t belong to Bubble. When I go to my Cloudflare account, I can’t find the records it’s referring to. Any idea how to fix this?
Proxied hostnames get IPv6 and IPv4 addresses, but you can turn off IPv6. That setting is in the dashboard, but only Enterprise plans can disable via the dashboard:
For all other plans, you’d have to use the API:
https://developers.cloudflare.com/api/operations/zone-settings-change-i-pv6-setting
curl --request PATCH \
--url https://api.cloudflare.com/client/v4/zones/ZONE_ID/settings/ipv6 \
--header 'X-Auth-Email: YOUR_EMAIL \
--header 'X-Auth-Key: GLOBAL_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"value": "off"
}'
ZoneID comes from the Overview page for your domain the dashboard, lower right corner. Plus you’ll need the Global API Key:
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.