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

16 lines
330 B
Markdown
Raw Normal View History

# dig
> DNS Lookup utility
- Lookup the IP(s) associated with a hostname (A records)
``dig +short {{hostname.com}}
- Lookup the mail associated with a given domain name (MX records)
``dig +short {{hostname.com}} MX
- Specify an alternate DNS server to query (8.8.8.8 is google's public DNS)
`dig @8.8.8.8 {{hostname.com}}`