使用nslookup命令查询DNS的记录

nslookup命令用于查询DNS的记录,可以用来查看域名解析是否正常,在网络故障的时候用来诊断网络问题。具体用法如下:

命令说明

  1. 直接查询,返回的是A记录:
nslookup domain[dns-server]

如果未指定dns-server,将使用系统默认的DNS服务器。例如:

nslookup baidu.com
  1. 查询其他记录,比如AAAA、MX等,可以使用以下命令:
nslookup -qt=type domain[dns-server]
nslookup -q=type domain[dns-server]
nslookup -type=type domain[dns-server]
nslookup -querytype=type domain[dns-server]

其中,type指定查询的类型,例如AAAA表示查询IPv6地址,MX表示查询邮件交换记录等。例如:

nslookup -qt=AAAA baidu.com
  1. 查询多个记录类型,可以分别指定不同的type,例如:
nslookup -qt=A,MX baidu.com

这将同时查询A记录和MX记录。

示例

好的,以下是nslookup命令的具体示例:

  1. 直接查询A记录:
nslookup baidu.com

输出结果类似如下:

Server:  google-public-dns-a.google.com
Address:  8.8.8.8

Non-authoritative answer:
Name:    baidu.com
Address:  180.97.33.107
  1. 查询AAAA记录:
nslookup -qt=AAAA baidu.com

输出结果类似如下:

Server:  google-public-dns-a.google.com
Address:  8.8.8.8

Non-authoritative answer:
Name:    baidu.com
Address:  2a01:538:2eff:f7ff::1e
  1. 查询多个记录类型:
nslookup -qt=A,MX baidu.com

输出结果类似如下:

Server:  google-public-dns-a.google.com
Address:  8.8.8.8

Non-authoritative answer:
Name:    baidu.com
Address:  180.97.33.107
MX preference = 10, mail exchanger = mx3.baidu.com
MX preference = 10, mail exchanger = mx1.baidu.com

以上示例中,使用了google的DNS服务器8.8.8.8,可以根据需要更换为其他DNS服务器。

你可能感兴趣的:(运维,Linux,DNS,nslookup,Linux)