1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/drill.md

33 lines
704 B
Markdown
Raw Normal View History

2018-11-19 20:05:07 -08:00
# drill
> Perform various DNS queries.
2021-04-17 17:15:37 +02:00
> More information: <https://manned.org/drill>.
2018-11-19 20:05:07 -08:00
- Lookup the IP(s) associated with a hostname (A records):
`drill {{example.com}}`
2018-11-19 20:05:07 -08:00
- Lookup the mail server(s) associated with a given domain name (MX record):
`drill mx {{example.com}}`
2018-11-19 20:05:07 -08:00
- Get all types of records for a given domain name:
`drill any {{example.com}}`
2018-11-19 20:05:07 -08:00
- Specify an alternate DNS server to query:
`drill {{example.com}} @{{8.8.8.8}}`
2018-11-19 20:05:07 -08:00
- Perform a reverse DNS lookup on an IP address (PTR record):
`drill -x {{8.8.8.8}}`
- Perform DNSSEC trace from root servers down to a domain name:
`drill -TD {{example.com}}`
2018-11-19 20:05:07 -08:00
- Show DNSKEY record(s) for a domain name:
`drill -s dnskey {{example.com}}`