
whois命令
whois
very popular and useful tool used to list and find domain information. We generally know that domain and sub domains are resolved to the IP address and our browser redirects to this IP address. But the actual story is not just this. Domain names have a lot of attributes which is consist of following sections.
whois
非常流行且有用的工具,用于列出和查找域信息。 我们通常知道域和子域已解析为IP地址,而我们的浏览器将重定向到该IP地址。 但是实际的故事不只是这个。 域名具有很多属性,其中包括以下部分。
- Registrant 注册人
- Admin管理员
- Tech科技类
- Name Server名称伺服器
- ……
为Ubuntu,Debian,Mint,Kali安装 (Install For Ubuntu, Debian, Mint, Kali)
Now we will start by installing the who
command in to apt based distributions like Ubuntu, Debian, Mint and Kali etc. This command will work with other apt based distributions too.
现在,我们将安装who
命令到基于apt的发行版中,例如Ubuntu,Debian,Mint和Kali等。此命令也将与其他基于apt的发行版一起使用。
$ sudo apt install whois

为Fedora,CentOS,RHEL安装(Install For Fedora, CentOS, RHEL)
We can also install whois
command distributions like Fedora, CentOS, RHEL too. We will use yum
in this case.
我们也可以安装whois
命令分发版,例如Fedora,CentOS,RHEL。 在这种情况下,我们将使用yum
。
$ sudo yum install whois
获取详细信息 (Get Detailed Information)
The default usage of the whois
command will provide all related information which will fill our terminal. This will list all provided information categories which is listed in the introduction section. We will provide the domain name which is poftut.com
in this example.
whois
命令的默认用法将提供所有相关信息,这些信息将填充我们的终端。 这将列出在介绍部分列出的所有提供的信息类别。 在此示例中,我们将提供域名poftut.com
。
$ whois poftut.com

域名(Domain Name)
Domain Name
information will provide the full domain name which is registered and queried.
Domain Name
信息将提供注册和查询的完整域名。
登记员 (Registrar)
Registrar
information will provide the company where this domain is registered. This company will generally provide some tool and interface to manage our domain name.
Registrar
信息将提供该域的注册公司。 该公司通常会提供一些工具和界面来管理我们的域名。
Whois服务器 (Whois Server)
Whois Server
information will print the server which is replied this whois
query.
Whois Server
信息将打印服务器,该服务器将回复此whois
查询。
名称伺服器 (Name Server)
Name Server
will provide name server of the queried domain name. Name servers are used to query domain related information like DNS, TXT and other services.
Name Server
将提供所查询域名的名称服务器。 名称服务器用于查询与域相关的信息,例如DNS,TXT和其他服务。
更新日期 (Update Date)
Update Date
will list last time this domain is changed which is domain duration extension operation.
Update Date
将列出该域的最后一次更改时间,即域持续时间扩展操作。
创立日期(Creation Date)
Creation Date
will list information when the domain is created for the first time.
Creation Date
将列出首次创建域时的信息。
截止日期 (Expiration Date)
Expire Date
will list then this domain will expire and will be free to buy.
Expire Date
将列出,然后该域将过期并且可以免费购买。
联系 (Contact)
Contact
line will list the contact information of the domain owner.
Contact
行将列出域所有者的联系信息。
翻译自: https://www.poftut.com/how-to-find-detailed-domain-information-with-whois-command/
whois命令