mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-23 09:55:23 +02:00
drill: add Italian translation.
This commit is contained in:
parent
e464c317b2
commit
5c01cbd5f9
1 changed files with 31 additions and 0 deletions
31
pages.it/common/drill.md
Normal file
31
pages.it/common/drill.md
Normal file
|
@ -0,0 +1,31 @@
|
|||
# drill
|
||||
|
||||
> Esegui varie query DNS.
|
||||
|
||||
- Mostra gli IP associati ad un hostname (record A):
|
||||
|
||||
`drill {{esempio.com}}`
|
||||
|
||||
- Lookup the mail server(s) associated with a given domain name (MX record):
|
||||
|
||||
`drill mx {{esempio.com}}`
|
||||
|
||||
- Recupera tutti i tipi di record per un dato dominio:
|
||||
|
||||
`drill any {{esempio.com}}`
|
||||
|
||||
- Specifica un server DNS alternativo da interrogare:
|
||||
|
||||
`drill {{esempio.com}} @{{8.8.8.8}}`
|
||||
|
||||
- Esegui un lookup DNS inverso su di un indirizzo IP (record PTR):
|
||||
|
||||
`drill -x {{8.8.8.8}}`
|
||||
|
||||
- Esegui un tracciamento DNSSEC dai root server fino al dominio:
|
||||
|
||||
`drill -TD {{esempio.com}}`
|
||||
|
||||
- Mostra record DNSKEY per un dominio:
|
||||
|
||||
`drill -s dnskey {{esempio.com}}`
|
Loading…
Add table
Reference in a new issue