From 9f8c7614c91a0d2eeeb97206f2d21cfdc0c98694 Mon Sep 17 00:00:00 2001 From: Guiying Li Date: Thu, 17 Nov 2022 11:23:23 +0800 Subject: [PATCH] Update nslookup.md (#451) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update nslookup.md 添加了指定域名服务器的说明,以及相关的示例。 * Update README.md 添加了一个部署了linux command的网页。 ADD an address to the newly deployed Linux Command Website, which I maintain. --- README.md | 2 +- command/nslookup.md | 18 ++++++++++++++++-- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0ef684671e8..36da32a3fd1 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ **其它 web 版本** -[`linux.ftqq.com`](https://linux.ftqq.com/),[`linux.gaomeluo.com`](https://linux.gaomeluo.com),[`atoolbox.net`](http://www.atoolbox.net/Tool.php?Id=826),[`xiaoshanseo.com`](https://tools.xiaoshanseo.com/Tools/linux-command/),[`262235.xyz`](https://262235.xyz/linux-command/),[`cmsblogs.cn`](https://linux.cmsblogs.cn/),[`loquy.cn`](https://www.loquy.cn/linux-command/),[`buyao.vip`](https://demo.buyao.vip/linux/),[`hezhiqiang.gitbook.io`](https://hezhiqiang.gitbook.io/linux/) +[`linux.ftqq.com`](https://linux.ftqq.com/),[`linux.gaomeluo.com`](https://linux.gaomeluo.com),[`atoolbox.net`](http://www.atoolbox.net/Tool.php?Id=826),[`xiaoshanseo.com`](https://tools.xiaoshanseo.com/Tools/linux-command/),[`262235.xyz`](https://262235.xyz/linux-command/),[`cmsblogs.cn`](https://linux.cmsblogs.cn/),[`loquy.cn`](https://www.loquy.cn/linux-command/),[`buyao.vip`](https://demo.buyao.vip/linux/),[`hezhiqiang.gitbook.io`](https://hezhiqiang.gitbook.io/linux/),[`linux.liguiying.cn`](https://linux.liguiying.cn/) ## 微信小程序版本 diff --git a/command/nslookup.md b/command/nslookup.md index f8d0445efcb..5eff691a82b 100644 --- a/command/nslookup.md +++ b/command/nslookup.md @@ -7,14 +7,16 @@ nslookup **nslookup命令** 是常用域名查询工具,就是查DNS信息用的命令。 -nslookup4有两种工作模式,即“交互模式”和“非交互模式”。在“交互模式”下,用户可以向域名服务器查询各类主机、域名的信息,或者输出域名中的主机列表。而在“非交互模式”下,用户可以针对一个主机或域名仅仅获取特定的名称或所需信息。 +nslookup有两种工作模式,即“交互模式”和“非交互模式”。在“交互模式”下,用户可以向域名服务器查询各类主机、域名的信息,或者输出域名中的主机列表。 + +在“非交互模式”下,用户可以针对一个主机或域名仅仅获取特定的名称或所需信息,此时也可以指定查询的DNS服务器。 进入交互模式,直接输入nslookup命令,不加任何参数,则直接进入交互模式,此时nslookup会连接到默认的域名服务器(即`/etc/resolv.conf`的第一个dns地址)。或者输入`nslookup -nameserver/ip`。进入非交互模式,就直接输入`nslookup 域名`就可以了。 ### 语法 ```shell -nslookup(选项)(参数) +nslookup(选项)(参数)(DNS服务器) ``` ### 选项 @@ -27,6 +29,9 @@ nslookup(选项)(参数) 域名:指定要查询域名。 +### DNS服务器 +不填的话采用默认域名服务器(即`/etc/resolv.conf`的第一个dns地址),填写DNS服务器IP的话,nslookup会向该域名服务器查询域名。 + ### 实例 ```shell @@ -38,6 +43,15 @@ Non-authoritative answer: www.jsdig.com canonical name = host.1.jsdig.com. Name: host.1.jsdig.com Address: 100.42.212.8 + +[root@localhost ~]# nslookup www.sustech.edu.cn 8.8.8.8 +Server: 8.8.8.8 +Address: 8.8.8.8#53 + +Non-authoritative answer: +www.sustech.edu.cn canonical name = www.sustech.edu.cn.w.cdngslb.com. +Name: www.sustech.edu.cn.w.cdngslb.com +Address: 113.96.179.222 ```