Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

41
dig Normal file
View File

@@ -0,0 +1,41 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# dig
> DNS lookup utility.
> More information: <https://manned.org/dig>.
- Lookup the IP(s) associated with a hostname (A records):
`dig +short {{example.com}}`
- Get a detailed answer for a given domain (A records):
`dig +noall +answer {{example.com}}`
- Query a specific DNS record type associated with a given domain name:
`dig +short {{example.com}} {{A|MX|TXT|CNAME|NS}}`
- Specify an alternate DNS server to query:
`dig @{{8.8.8.8}} {{example.com}}`
- Perform a reverse DNS lookup on an IP address (PTR record):
`dig -x {{8.8.8.8}}`
- Find authoritative name servers for the zone and display SOA records:
`dig +nssearch {{example.com}}`
- Perform iterative queries and display the entire trace path to resolve a domain name:
`dig +trace {{example.com}}`
- Query a DNS server over a non-standard [p]ort using the TCP protocol:
`dig +tcp -p {{port}} @{{dns_server_ip}} {{example.com}}`