Forrest logo
back to context overview

dog

List of commands for dog:

  • dog:tldr:289bf dog: Query the MX records type associated with a given domain name.
    $ dog ${example-com} MX
    try on your machine
    explain this command
  • dog:tldr:3c7fd dog: Query the MX records type associated with a given domain name over TCP using explicit arguments.
    $ dog --query ${example-com} --type MX --nameserver ${1-1-1-1} --tcp
    try on your machine
    explain this command
  • dog:tldr:a1c82 dog: Query over TCP rather than UDP.
    $ dog ${example-com} MX @${1-1-1-1} --tcp
    try on your machine
    explain this command
  • dog:tldr:d0d3d dog: Lookup the IP(s) associated with a hostname (A records).
    $ dog ${example-com}
    try on your machine
    explain this command
  • dog:tldr:f1efa dog: Specify a specific DNS server to query (e.g. Cloudflare).
    $ dog ${example-com} MX @${1-1-1-1}
    try on your machine
    explain this command
  • dog:tldr:f62fe dog: Lookup the IP(s) associated with a hostname (A records) using DNS over HTTPS (DoH).
    $ dog ${example-com} --https @${https:--cloudflare-dns-com-dns-query}
    try on your machine
    explain this command
back to context overview