Forrest logo
back to context overview

kdig

List of commands for kdig:

  • kdig:tldr:07c9a kdig: Specify a specific DNS server to query (e.g. Google DNS).
    $ kdig ${example-com} @${8-8-8-8}
    try on your machine
    explain this command
  • kdig:tldr:a1fff kdig: Lookup the IP(s) associated with a hostname (A records) using DNS over HTTPS (DoH).
    $ kdig -d @${1-1-1-1} +https +tls-hostname=${1dot1dot1dot1-cloudflare-dns-com} ${example-com}
    try on your machine
    explain this command
  • kdig:tldr:d1c4a kdig: Lookup the IP(s) associated with a hostname (A records) using DNS over TLS (DoT).
    $ kdig -d @${8-8-8-8} +tls-ca +tls-host=${dns-google} ${example-com}
    try on your machine
    explain this command
  • kdig:tldr:e2f0c kdig: Lookup the IP(s) associated with a hostname (A records).
    $ kdig ${example-com}
    try on your machine
    explain this command
  • kdig:tldr:f1ba4 kdig: Query a specific DNS record type associated with a given domain name.
    $ kdig ${example-com} ${select}
    try on your machine
    explain this command
back to context overview