nslookup命令笔记
作者:互联网
参考网址
https://blog.csdn.net/xg_ren/article/details/80782338
secES : https://mp.weixin.qq.com/s?__biz=MzI5MDQ2NjExOQ==&mid=2247487540&idx=1&sn=81a0c97ee20f78c2b2db0037871eaed6&chksm=ec1e201cdb69a90aee7edb7578c75a45357d61a75959788e7007e513e8d512a8d6882ec25d59&mpshare=1&scene=1&srcid=0604dcMuJduJqoqr0jJv25Ml#rd
1、nslookup作用
nslookup用于查询DNS的记录,查询域名解析是否正常,在网络故障时用来诊断网络问题
2、查询
a. 直接查询
nslookup domain [dns-server]
//如果没有指定dns服务器,就采用系统默认的dns服务器。
nslookup www.baidu.com
nslookup 域名 域名服务器(用指定的域名服务器来查询)
nslookup baidu.com 114.114.114.114
b.查询其他记录,后面的 [dns-server] 可填可不填
nslookup -qt=type domain [dns-server]
nslookup -q=type domain [dns-server]
nslookup -type=type domain [dns-server]
nslookup -querytype=type domain [dns-server]
nslookup -q=NS baidu.com
3、查询邮件服务器信息
nslookup -qt=mx 服务器域名
4、查询DNS缓存记录的保存时间
Nslookup –d3 baidu.com
标签:domain,笔记,server,命令,dns,查询,type,nslookup 来源: https://blog.csdn.net/qinglingLS/article/details/94717357