mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-09 11:35:45 +02:00
dig: add more options (#1947)
This commit is contained in:
parent
ea6d2a0078
commit
d30142fabe
1 changed files with 11 additions and 3 deletions
|
@ -6,18 +6,26 @@
|
||||||
|
|
||||||
`dig +short {{hostname.com}}`
|
`dig +short {{hostname.com}}`
|
||||||
|
|
||||||
- Lookup the mail server associated with a given domain name (MX record):
|
- Lookup the mail server(s) associated with a given domain name (MX record):
|
||||||
|
|
||||||
`dig +short {{hostname.com}} MX`
|
`dig +short {{hostname.com}} MX`
|
||||||
|
|
||||||
|
- Get all types of records for a given domain name:
|
||||||
|
|
||||||
|
`dig {{hostname.com}} ANY`
|
||||||
|
|
||||||
- Specify an alternate DNS server to query (8.8.8.8 is google's public DNS):
|
- Specify an alternate DNS server to query (8.8.8.8 is google's public DNS):
|
||||||
|
|
||||||
`dig @8.8.8.8 {{hostname.com}}`
|
`dig @{{8.8.8.8}} {{hostname.com}}`
|
||||||
|
|
||||||
- Perform a reverse DNS lookup on an IP address (PTR record):
|
- Perform a reverse DNS lookup on an IP address (PTR record):
|
||||||
|
|
||||||
`dig -x 8.8.8.8`
|
`dig -x {{8.8.8.8}}`
|
||||||
|
|
||||||
- Find authoritative name servers for the zone and display SOA records:
|
- Find authoritative name servers for the zone and display SOA records:
|
||||||
|
|
||||||
`dig +nssearch {{hostname.com}}`
|
`dig +nssearch {{hostname.com}}`
|
||||||
|
|
||||||
|
- Perform iterative queries and display the entire trace path to resolve a domain name:
|
||||||
|
|
||||||
|
`dig +trace {{hostname.com}}`
|
||||||
|
|
Loading…
Add table
Reference in a new issue