tldr/pages/common/dig.md

33 lines
776 B
Markdown
Raw Normal View History

# dig
2022-06-27 11:23:12 +01:00
> DNS lookup utility.
2022-01-27 19:30:27 +00:00
> More information: <https://manned.org/dig>.
- Lookup the IP(s) associated with a hostname (A records):
`dig +short {{example.com}}`
2021-03-11 22:55:01 +00:00
- Get a detailed answer for a given domain (A records):
2021-03-11 22:55:01 +00:00
`dig +noall +answer {{example.com}}`
- Query a specific DNS record type associated with a given domain name:
`dig +short {{example.com}} {{A|MX|TXT|CNAME|NS}}`
2018-10-15 23:55:25 +01:00
- Specify an alternate DNS server to query:
`dig @{{8.8.8.8}} {{example.com}}`
- Perform a reverse DNS lookup on an IP address (PTR record):
2018-02-02 06:43:22 +00:00
`dig -x {{8.8.8.8}}`
2017-01-11 15:20:26 +00:00
- Find authoritative name servers for the zone and display SOA records:
`dig +nssearch {{example.com}}`
2018-02-02 06:43:22 +00:00
- Perform iterative queries and display the entire trace path to resolve a domain name:
`dig +trace {{example.com}}`