host命令--Linux命令应用大词典729个命令解读

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了host命令--Linux命令应用大词典729个命令解读相关的知识,希望对你有一定的参考价值。

内容来源于人民邮电出版社《Linux命令应用大词典》

讲述729个命令,1935个例子

学习Linux系统的参考书、案头书,遇到不懂的命令或命令选项一查即可

争取每天都发布内容


 host命令

使用host命令可以执行DNS查找,进行域名解析。

命令语法:

host [选项][名称][服务器]

命令中各选项的含义如表所示。

                              host命令选项含义

选项

含义

-a

相当于-v -t ANY

-C

比较权威域名服务器上的SOA记录

-l

列出在一个域内的所有的主机,使用AXFR

-r

禁用递归处理

-t <类型>

指定查询类型,类型可以是CNAMENSMXSOAAAAAAPTR

-T

启用TCP/ IP模式

-v

输出详细信息

-w

指定永久等待一个回复

-W <时长>

指定多长时间来等待回复

-4

只使用IPv4查询事物

-6

只使用IPv6查询事物

-R <重试次数>

指定UDP数据包重试次数

 

:解析sh.com区域中的A记录rhel.sh.com

[[email protected]~]#host rhel.sh.com

rhel.sh.comhas address 192.168.0.2

:解析0.168.192.in-addr.arpa区域中的PTR记录192.168.0.2

[[email protected]~]# host 192.168.0.2

2.0.168.192.in-addr.arpadomain name pointer rhel.sh.com.

:解析sh.com区域中的SOA记录。

[[email protected]~]# host -t SOA sh.com

sh.com hasSOA record rhel.sh.com. root.sh.com. 1268360234 10800 3600 604800 38400

:解析sh.com区域中的NS记录。

[[email protected] linux~]# host -t NS sh.com

sh.com nameserver rhel.sh.com.

:解析sh.com区域中的MX记录。

[[email protected] linux~]# host -t MX sh.com

sh.com mailis handled by 10 mail.sh.com.

:解析sh.com区域中的所有主机记录。

[[email protected] linux~]# host -l sh.com 192.168.0.2

Using domainserver:

Name:192.168.0.2

Address: 192.168.0.2#53

Aliases:

sh.com nameserver rhel.sh.com.

rhel.sh.comhas address 192.168.0.2

linux.sh.comhas address 192.168.0.5

:解析sh.com区域中A记录的详细信息。

[[email protected] linux~]# host -a rhel.sh.com

Trying"rhel.sh.com"

;;->>HEADER<<- opcode: QUERY, status: NOERROR, id: 44664

;; flags: qraa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 0

 

;; QUESTIONSECTION:

;rhel.sh.com.                   IN      ANY

 

;; ANSWERSECTION:

rhel.sh.com.            38400   IN     A       192.168.0.2

 

;; AUTHORITYSECTION:

sh.com.                 38400   IN     NS      rhel.sh.com.

 

Received 59bytes from 192.168.0.2#53 in 1 ms 


本文出自 “airfish2000” 博客,请务必保留此出处http://airfish2000.blog.51cto.com/10829608/1876816

以上是关于host命令--Linux命令应用大词典729个命令解读的主要内容,如果未能解决你的问题,请参考以下文章

reboot命令--Linux命令应用大词典729个命令解读

getsebool命令--Linux命令应用大词典729个命令解读

logout命令--Linux命令应用大词典729个命令解读

exit命令--Linux命令应用大词典729个命令解读

dhcrelay命令--Linux命令应用大词典729个命令解读

compress命令--Linux命令应用大词典729个命令解读