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

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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