2018-11-20 04:05:07 +00:00
|
|
|
# drill
|
|
|
|
|
|
|
|
> Perform various DNS queries.
|
2021-04-17 16:15:37 +01:00
|
|
|
> More information: <https://manned.org/drill>.
|
2018-11-20 04:05:07 +00:00
|
|
|
|
|
|
|
- Lookup the IP(s) associated with a hostname (A records):
|
|
|
|
|
2019-05-13 14:33:05 +01:00
|
|
|
`drill {{example.com}}`
|
2018-11-20 04:05:07 +00:00
|
|
|
|
|
|
|
- Lookup the mail server(s) associated with a given domain name (MX record):
|
|
|
|
|
2019-05-13 14:33:05 +01:00
|
|
|
`drill mx {{example.com}}`
|
2018-11-20 04:05:07 +00:00
|
|
|
|
|
|
|
- Get all types of records for a given domain name:
|
|
|
|
|
2019-05-13 14:33:05 +01:00
|
|
|
`drill any {{example.com}}`
|
2018-11-20 04:05:07 +00:00
|
|
|
|
|
|
|
- Specify an alternate DNS server to query:
|
|
|
|
|
2019-05-13 14:33:05 +01:00
|
|
|
`drill {{example.com}} @{{8.8.8.8}}`
|
2018-11-20 04:05:07 +00: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:
|
|
|
|
|
2019-05-13 14:33:05 +01:00
|
|
|
`drill -TD {{example.com}}`
|
2018-11-20 04:05:07 +00:00
|
|
|
|
|
|
|
- Show DNSKEY record(s) for a domain name:
|
|
|
|
|
2019-05-13 14:33:05 +01:00
|
|
|
`drill -s dnskey {{example.com}}`
|