From 274c8871400cadda82b675c0cbac2f1e7bcbfaf5 Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Tue, 11 Nov 2025 11:41:36 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20nslookup=20=E6=94=B9=E6=88=90dig?= =?UTF-8?q?=E5=91=BD=E4=BB=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../plugins/cert/domains-verify-plan-editor/cname-tip.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ui/certd-client/src/components/plugins/cert/domains-verify-plan-editor/cname-tip.vue b/packages/ui/certd-client/src/components/plugins/cert/domains-verify-plan-editor/cname-tip.vue index 2b58f8078..1e65b4143 100644 --- a/packages/ui/certd-client/src/components/plugins/cert/domains-verify-plan-editor/cname-tip.vue +++ b/packages/ui/certd-client/src/components/plugins/cert/domains-verify-plan-editor/cname-tip.vue @@ -6,7 +6,7 @@
1. 解析记录应该添加在{{ record.domain }}域名下
2. 要添加的是CNAME类型的记录,不是TXT
3. 核对记录值是否是:{{ record.recordValue }}
-
4. 运行下面的命令,查看解析是否正确
+
4. 运行下面的命令,查看cname解析是否正确
5. 如果以上检查都没有问题,则可能是DNS解析生效时间比较慢,某些提供商延迟可能高达几个小时
@@ -21,6 +21,6 @@ const props = defineProps<{ }>(); const nslookupCmd = computed(() => { - return `nslookup -q=txt _acme-challenge.${props.record.domain}`; + return `dig _acme-challenge.${props.record.domain}`; });