# Vercel CLI now supports verifying DNS configuration

DevFeed: [Vercel CLI now supports verifying DNS configuration](<https://devfeed.tech/articles/vercel-cli-now-supports-verifying-dns-configuration-1134.md>)

Original publisher: [Read original article](<https://vercel.com/changelog/vercel-cli-now-supports-verifying-dns-configuration>)

Author: Elliot Dauber

Published: 2026-06-23T00:00:00Z

Content type: release

Language: en

Sources: [Vercel News](<https://devfeed.tech/sources/vercel-news.md>)

Topics: [Command-line interface](<https://devfeed.tech/topics/cli.md>), [Network Configuration](<https://devfeed.tech/topics/network-configuration.md>), [Vercel](<https://devfeed.tech/topics/vercel.md>), [DNSSEC](<https://devfeed.tech/topics/dnssec.md>), [ci](<https://devfeed.tech/topics/ci.md>), [Automation](<https://devfeed.tech/topics/automation.md>), [JSON](<https://devfeed.tech/topics/json.md>)

Tags: [automation](<https://devfeed.tech/tags/automation.md>), [ci](<https://devfeed.tech/tags/ci.md>), [cli](<https://devfeed.tech/tags/cli.md>), [dns](<https://devfeed.tech/tags/dns.md>), [dnssec](<https://devfeed.tech/tags/dnssec.md>), [json](<https://devfeed.tech/tags/json.md>), [vercel](<https://devfeed.tech/tags/vercel.md>), [verify](<https://devfeed.tech/tags/verify.md>)

## AI overview

Vercel CLI now includes the `vercel domains verify` command for diagnosing DNS configuration. It checks ownership, DNS records, nameservers, DNSSEC, conflicting records, and project attachment, provides corrective guidance, and supports JSON output, project scoping, exact matching, non-interactive use, CI, and automation.

## Source excerpt

You can now use the Vercel CLI to diagnose a domain's DNS configuration. Using the vercel domains verify command, you can check whether a domain is correctly configured, attached to the right project, and verified. If not, it returns the exact steps to fix it. vercel domains verify inspects ownership, DNS records, nameservers, DNSSEC, conflicting records, and project attachment, and tells you precisely what to change. When the domain is correctly configured, you get a single line back: With --format json, the command returns the full diagnosis: status, reason, recommended records, detected conflicts, and suggested next commands. It exits non-zero when misconfigured or unverified, making it scriptable for CI and automation: You can also scope to a project, enforce exact matching, or run non-interactively: Upgrade your Vercel CLI to version 54.15.1 to get started. Learn more in the vercel domains verify documentation. Read more