You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
699 B

5 years ago
# **dig**
7 years ago
6 years ago
## 说明
7 years ago
5 years ago
**dig命令** 是常用的域名查询工具,可以用来测试域名系统工作是否正常
7 years ago
5 years ago
## 选项
7 years ago
5 years ago
```markdown
5 years ago
@<服务器地址>:指定进行域名解析的域名服务器
-b<ip>当主机具有多个IP地址指定使用本机的哪个IP地址向域名服务器发送域名查询请求
-f<文件名称>指定dig以批处理的方式运行指定的文件中保存着需要批处理查询的DNS任务信息
-P指定域名服务器所使用端口号
-t<类型>指定要查询的DNS数据类型
-x<IP>:执行逆向域名查询
-4使用IPv4
-6使用IPv6
-h显示指令帮助信息
7 years ago
```
5 years ago
## 实例
7 years ago
5 years ago
```bash
dig www.jsdig.com
7 years ago
```