快速查询域名的各类 DNS 记录,支持多种记录类型和自定义 DNS 服务器。
# 使用 dig 命令查询 dig example.com A @8.8.8.8 dig example.com AAAA @1.1.1.1 dig example.com MX dig example.com CAA # 使用 nslookup 命令查询 nslookup -type=a example.com 8.8.8.8 nslookup -type=aaaa example.com 1.1.1.1 nslookup -type=mx example.com nslookup -type=caa example.com # 使用 host 命令查询 host -t A example.com 8.8.8.8 host -t AAAA example.com 1.1.1.1 host -t MX example.com host -t CAA example.com