当我运行dig
命令时,我只得到一个 txt 记录:
adriano@vm ~ dig swisspass.ch txt ✔ 4501 14:25:36
; <<>> DiG 9.11.3-1ubuntu1.13-Ubuntu <<>> swisspass.ch txt
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 47817
;; flags: qr rd ad; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1
;; WARNING: recursion requested but not available
;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 1280
;; QUESTION SECTION:
;swisspass.ch. IN TXT
;; ANSWER SECTION:
swisspass.ch. 900 IN TXT "v=spf1 include:spf2.sbb.ch include:spf.mandrillapp.com include:inx.ch include:amazonses.com include:spf.protection.outlook.com -all"
;; Query time: 20 msec
;; SERVER: 192.168.1.1#53(192.168.1.1)
;; WHEN: Mon Feb 22 14:25:39 STD 2021
;; MSG SIZE rcvd: 186
但是,如果我使用在线工具(例如dig from google)进行检查,我会得到更多结果:
我应该在命令中添加什么参数来显示所有 txt 记录?
更新:我格式化了输出以显示更少的信息,对不起
我的猜测是您的本地 DNS 服务器 (192.168.1.1) 正在以某种方式修剪结果。
您可以尝试使用 dig 实用程序查询 google DNS 服务器,看看输出与本地 DNS 服务器相比是否会有所不同:dig @8.8.8.8 -t txt swisspass.ch
如果你使用“主机”呢?主机 -t txt swisspass.ch 8.8.8.8
我退出了我公司的 VPN 并获得了所有的 txt 记录。对不起,我之前没有检查这个,无论如何谢谢你的帮助。