Forrest logo
back to context overview

drill

List of commands for drill:

  • drill:tldr:1603f drill: Show DNSKEY record(s) for a domain name.
    $ drill -s dnskey ${example-com}
    try on your machine
    explain this command
  • drill:tldr:36a8e drill: Perform a reverse DNS lookup on an IP address (PTR record).
    $ drill -x ${8-8-8-8}
    try on your machine
    explain this command
  • drill:tldr:43430 drill: Lookup the IP(s) associated with a hostname (A records).
    $ drill ${example-com}
    try on your machine
    explain this command
  • drill:tldr:488f6 drill: Lookup the mail server(s) associated with a given domain name (MX record).
    $ drill mx ${example-com}
    try on your machine
    explain this command
  • drill:tldr:727a9 drill: Get all types of records for a given domain name.
    $ drill any ${example-com}
    try on your machine
    explain this command
  • drill:tldr:a01d5 drill: Specify an alternate DNS server to query.
    $ drill ${example-com} @${8-8-8-8}
    try on your machine
    explain this command
  • drill:tldr:f84d8 drill: Perform DNSSEC trace from root servers down to a domain name.
    $ drill -TD ${example-com}
    try on your machine
    explain this command
back to context overview