Linux指令檢查網域的TXT記錄

Linux指令檢查網域的TXT記錄

是否有 Linux shell 命令可用於檢查網域的 TXT 記錄?

答案1

Dig 也能做得很好:dig -t txt example.com如果您添加該+short選項,您將只獲得引號中的 txt 記錄,而沒有其他內容。

答案2

主機(1)命令有一個漂亮、簡潔的輸出:

$ host -t txt google.com
google.com descriptive text "v=spf1 include:_netblocks.google.com ip4:216.73.93.70/31 ip4:216.73.93.72/31 ~all"
$ wajig findfile $(which host)
bind9-host: /usr/bin/host
$ 

挖掘(1)我也“必須”始終添加“+short”選項。

(我在 Debian)。

相關內容