> dig @ns3.digitalocean.com. pppg.org -t SOA # Start Of Authority
pppg.org. 1800† IN† SOA ns1.digitalocean.com. hostmaster.pppg.org. 1579804626† †10800†3600†604800†1800†
TTL is in seconds: 3600=1hour. 14400= 4hours; 86400 = 1day; For secondary servers this is the time REMAINING.
Batch mode of operation from a file or use multiple lookups from the command line.
By default uses the servers in /etc/resolv.conf (which may have come from DHCP server)
Mac OS uses > scutil --dns
DNS configuration
resolver #1 search domain[0] : germans.com
nameserver[0] : 2600:4041:4312:5e00::1
nameserver[1] : 192.168.1.1
if_index : 15 (en0) Request A records, Request AAAA records 00020002
(Reachable,
Directly Reachable Address)
options timeout flags reach order
2 local mdns 5 Request A records, Request AAAA records 0 (Not Reachable) 300000
3 254.169.in-addr.arpa mdns 5 Request A records, Request AAAA records 0 (Not Reachable) 300200
4 8.e.f.ip6.arpa mdns 5 Request A records, Request AAAA records 0 (Not Reachable) 300400
5 9.e.f.ip6.arpa mdns 5 Request A records, Request AAAA record 0 (Not Reachable) 300600
6 a.e.f.ip6.arpa mdns 5 Request A records, Request AAAA records 0 (Not Reachable) 300800
7 b.e.f.ip6.arpa mdns 5 Request A records, Request AAAA records 0 (Not Reachable) 301000
DNS configuration (for scoped queries)
resolver #1
search domain[0] : germans.com
nameserver[0] : 2600:4041:4312:5e00::1
nameserver[1] : 192.168.1.1
if_index : 15 (en0) Scoped, Request A records, Request AAAA records 00020002
(Reachable,
Directly Reachable Address)
User defaults in ${HOME}/.digrc are applied before the command line arguments ( no way to disable .digrc).
Output is in a form suitable for use in named.conf
Commentary information is prefixed with ;.
hostname | resource record(s) to be looked up.
| server name or IP address of the Name Server to query.
Defaults from /etc/resolv.conf
Server hostname is permitted.
IPv4 address in dotted-decimal notation or IPv6 in colon-delimited notation.
| |
-t type
Most servers refuse multiple type codes
| A AAAA MX NS SOA HINFO TXT SIG PRT RRSIG OPT
DNSKEY TLSA LOC NAPTR CAA SRV ANY AXF
ANY does not include SRV
Try querying the Name Server for more records.
A IP address. (Default)
MX mail server responsible for accepting email messages for a domain.
An email client, needing to send a message to father@family.com, retrieves the MX record for
family.com which specifies that incomming.village.com will handle messages for family.com.
The client opens an smtp connection to incomming.village.com and sends the message to it.
Format: … MX prio server where the server with the lowest priority is prefered.
TXT may contain information including :
- SPF(Sender Policy Framework) to prevent sender address forgery.
Example: TXT v=spf1 a mx ip4:67.228.235.89 ?all
DMARC, Additional Details at DMarcian
Site to check SPF
- DKIM (DomainKeys Identified mail).
Example: /usr/bin/dig pp-dkim1._domainkey.paypal.com -t txt
pp-dkim1._domainkey.paypal.com. 300 TXT "v=DKIM1; k=rsa; p=MIIBIjANBgkqhki…
- dmarc policy information
Example:
TXT v=DMARC1; p=none; rua=mailto:CUSTOMERID@mydomain.com;
ruf=mailto:CUSTOMERID@mydomain.com; pct=100
DMARC
SuperTool
- _adsp._domainkey.example.com. IN TXT "dkim=unknown"
unknown: the same as not defining any record, the domain might sign some, most, or all email,
all: mail from the domain is signed with an Author Domain Signature,
discardable: mail from the domain is signed with an Author Domain Signature;
furthermore, if such signature is missing or invalid, the domain owners want the receiving server to drop the message;
- crypt string used by some services to prove that the requester of some DNS related service has the rights to alter the DNS settings. for example
- arbitrary data
- txt "google-site-verification=52xAdvsdlf8MmpQ7tADmMI0k…"
- txt "ZOOM_verify_09kHvOoqQJWZdsp0…"
- txt "_j00…" Used for Domain Control Validation (DCV) when obtaining SSL/TLS certificates.
- txt "_msr…" For Microsoft domain verification, particularly for services like Microsoft 365.
- txt "fg2t…" Domain Control Validation (DCV) in the process of obtaining an SSL/TLS certificate from DigiCert.
- txt 3.2.3.updates.spamassassin.org
3.2.3.updates.spamassassin.org descriptive text "895075"
- txt 3.4.3.updates.spamassassin.org
3.4.3.updates.spamassassin.org is an alias for 3.3.3.updates.spamassassin.org
3.3.3.updates.spamassassin.org descriptive text "1902056"
SRV query must be of form _service._protocol.host
for example:
/usr/bin/dig -t srv _autodiscover._tcp.domain +short
Response will be :
0 0 443 cpanelemaildiscovery.cpanel.net.
/usr/bin/dig -t srv _autoconfig._tcp.domain +short # only output the answer.
0 0 443 cpanelemaildiscovery.cpanel.net. Use this for the URL in the curl next
% curl †-d '<EMailAddress>dennis@real-world-systems.com</EMailAddress>' \
https://cpanelemaildiscovery.cpanel.net/autodiscover/autodiscover.xml
<?xml version="1.0" encoding="utf-8"?>
<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
<Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006a">
<User>
<DisplayName>d@real-world-systems.com</DisplayName> any username rerurns the necessary informattion
<EMailAddress>d@real-world-systems.com</EMailAddress>
</User>
<Account>
<AccountType>email</AccountType>
<Action>settings</Action>
<Protocol>
<Type>IMAP</Type> <Server>mail.real-world-systems.com</Server> <Port>993</Port>
<DomainRequired>off</DomainRequired>
<SPA>off</SPA> <SSL>on</SSL>
<AuthRequired>on</AuthRequired> <LoginName>d@real-world-systems.com</LoginName>
</Protocol>
<Protocol>
<Type>SMTP</Type> <Server>mail.real-world-systems.com</Server> <Port>465</Port>
<DomainRequired>off</DomainRequired>
<SPA>off</SPA> <SSL>on</SSL>
<AuthRequired>on</AuthRequired> <LoginName>d@real-world-systems.com</LoginName>
</Protocol>
</Account>
</Response>
</Autodiscover>
RFC6763 contains all the details.
SIP UDP domain Priority:Weight port 5060 target>sip.onsip.com ttl 1 hour
Used by Microsoft Outlook
Thunderbird uses autoconfig
iceWarp, LDAP, Kerbos, SIP†
wikipedia
Service discovery,
LiRedMail how autoxxx works.
iceWarp
_caldav._tcp.domain.com. 86400 IN SRV 10 0 80 targethost.com.
_caldavs._tcp.domain.com. 86400 IN SRV 10 0 443 targethost.com.
_carddav._tcp.domain.com. 86400 IN SRV 10 0 80 targethost.com.
_carddavs._tcp.domain.com. 86400 IN SRV 10 0 443 targethost.com.
_ischedule._tcp.domain.com. 86400 IN SRV 10 0 80 targethost.com.
_ischedules._tcp.domain.com. 86400 IN SRV 10 0 443 targethost.com.
_sip._udp.domain.com. 86400 IN SRV 10 0 5060 targethost.com.
_sip._tcp.domain.com. 86400 IN SRV 10 0 5060 targethost.com.
_sip._tls.domain.com. 86400 IN SRV 10 0 5061 targethost.com.
_xmpp-client._tcp.domain.com. 86400 IN SRV 10 0 5222 targethost.com.
_xmpp-server._tcp.domain.com. 86400 IN SRV 10 0 5269 targethost.com.
_autodiscover._tcp.domain.com. 86400 IN SRV 10 0 443 targethost.com.
Usuallly the services (and subdomains) can be discovered using C99.NL
Not for DKIM see TXT.
IETF
_tcp, _udp, _dccp and _sctp.
SOA Start Of Authority
- name of the server that supplied the data for the zone;
- the administrator of the zone;
- the current version of the data file;
- seconds a secondary name server should wait before checking for updates;
- seconds """ wait before retrying a failed zone transfer;
- seconds """" can use data before it must either be refreshed or expire;
- and seconds for the Time-To-Live file on resource records.
AAAA IPv6 address
SIG provides signature (validation) data for another RRSet
SSHFP Secure SHell Finger Print for verification see ssh,
ssh-keygeni ssh-keygen -r host
CAA Certification Authority Authorization certificate authorities (CAs) allowed to issue certificates for this domain.
issue | policy for domain single-name and TLS/SSL wildcard certificate issuance.
| issuewild | policy for domain wildcard certificate issuance.
| iodef | request CAs to report policy violations through email or HTTP/HTTPS callback URLs.
|
Example:cpanel.net. 14400 CAA 0 issue "digicert.com"
cpanel.net. 14400 CAA 0 iodef "mailto:caa-notify@cpanel.net"
cpanel.net. 14400 CAA 0 issue "godaddy.com"
cpanel.net. 14400 CAA 0 issue "awstrust.com"
cpanel.net. 14400 CAA 0 issue "comodoca.com"
cpanel.net. 14400 CAA 0 issue "amazontrust.com"
cpanel.net. 14400 CAA 0 issue "letsencrypt.org"
dmarcanalyzer.com. 120 CAA 0 issue "digicert.com; cansignhttpexchanges=yes" # Can Sign http exchanges
LOC cpanel.net. 14400 LOC 29 40 47.701 N : 95 22 48.739 W : 17.00m 10m 100m 10m
-
OPT
Query of paddle.com : I n v a l i d Q u e r y t y p e
OPT=15: 00 1e 49 6e 76 61 6c 69 64 20 51 75 65 72 79 20 54 79 70 65
("..Invalid Query Type")
Query of cloudflare.com :
OPT=71 75 65 72 69 65 73 20 6e 6f 74 20 73 75 70 70 6f 72 74 65 64 20 68 65 72 65
("..RRSIG queries not supported here")
Query of lencr.org :
("..Invalid Query Type")e 76 61 6c 69 64 20 51 75 65 72 79 20 54 79 70 65
v a l i d Q u e r y t y p e
NAPTR
Example:
apple.com 43200 NAPTR 50 50 "se" "SIPS D2T" "" _sips
apple.com 43200 NAPTR 90 50 "se" "SIP D2T" "" _sip._tcp.apple.com
apple.com 43200 NAPTR 100 50 "se" "SIP D2U" "" _sip._udp.apple.com
PTR reverse records i.e. IP addresses to domain names.
IP address with the segments reversed and with in-addr.arpa appended to the end.
Example: for IP address "12.23.34.45" query PTR-record for "45.34.23.12.in-addr.arpa" to retrieve the domain name.
-
ANY show all records. Most DNS refuse or provide minimal response to ANY.
See IETF comment on RFC1035
rfc8482
AXFR requests a zone transfer Usually denied.
IXFR=nnnnnnnn. incremental zone transfer Usually denied
contains the changes made to the zone since the serial number in the zone's SOA record was nnnnnnnn.
Frequently the serial number used is in the form; yyyymmddNN where NN is incremented each time
the conf is changed in a given day.
see BIND .
IETF rfc1995bis
Each domain may have multiple hosts and even multiple levels of host. Each having their own DNS records.
| @ server Ask a specific DNS server dig @dns2.midphase.com cccu.us
| -4
-6 | use IPv4 query transport. use IPv6
| -x iii.iii.iii.iii | reverse lookup; maps addresses to names
YouGetSignal tool (Data base of DNS, retrieves all domains at IP x.x.x.x)
like 216.40.47.26.in-addr.arpa and sets query type to PTR and class to IN(??) .
By default, IPv6 addresses are looked up using nibble format under the IP6.ARPA domain.
/usr/bin/dig a-0.info +short +identify
209.95.59.175 from server 2600:4041:4310:3c00::1 in 6 ms.
/usr/bin/dig -6 -x 2600:4041:4310:3c00::1
1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.c.3.0.1.3.4.1.4.0.4.0.0.6.2.ip6.arpa. 0 PTR CR1000A.Germans.org.
-f filename | read requests from filename .
Using the same format as a command.
| -q name | sets the query name to distingish the name from other arguments.
| -c class | Default IN internet. CHaos and Hesiod
| -b address[#port]
sets the source IP address or n.n.n.n or xx:xx:xx:xx.
-p port | Default 53.
| -k keyfile | Sign DNS queries and responses using transaction signatures (TSIG)
| -y hmac tname key | TSIG
hmac type of TSIG, default HMAC†-MD5 alternate:-SHDA1
tname the name of the key
key base-64 encoded string
(typically generated by dnssec-keygen(8)).
Note: The key is visible from ps or the shell's history file.
When using TSIG authentication the name server needs to know the key and algorithm that is
being used. In BIND, this is done by providing appropriate key and server statements in named.conf.
| -i x.x.x.x.x.x.x.x.x | use the older RFC1886 method using the IP6.INT domain
Bit string labels (RFC2874) are not attempted.
| -h| help
| | | | | |
Options affecting Output
Keywords are preceded by a plus (+) and an optional no.
Supressing some output is useful when comparing queries that are expected to be the same.
For example since ttl keeps changing and stats includes the current time,
including them will result in differences which are not significant.
Simularly outputting version identification can be supressed using +nocmd
+no​all Set or clear all output flags.
> /usr/bin/dig canalrace.org +all
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 50353
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;canalrace.org. IN A
;; ANSWER SECTION:
canalrace.org. 12710 IN A 174.127.119.33
;; Query time: 20 msec
;; SERVER: 192.168.1.1#53(192.168.1.1)
;; WHEN: Tue Mar 14 15:48:31 2017
;; MSG SIZE rcvd: 47
As +noall turns off everything it should be followed by another keyword.
| +no​comments nocomments supress lines like:
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 50353
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL:
;; QUESTION SECTION:
;; ANSWER SECTION:
| +short as cut -f 5- implies nocomments
> /usr/bin/dig +short -t any canalrace.org
ns14.midphase.com. hostmaster.midphase.com. 2015101800 86400 7200 604800 600
ns15.midphase.com.
ns16.midphase.com.
ns14.midphase.com.
"v=spf1 +a +mx +ip4:209.236.71.17 +ip4:174.127.119.33 ~all"
0 canalrace.org.
174.127.119.33
| +identify IP address and port that supplied the answer with short (short otherwise supresses that)
Default: noid
67.228.235.89 from server 10.0.80.11 in 1 ms.
| +no​cmd
dig version and options. Use as a global option (i.e. before host) ; <<>>DiG 9.3.4-P1 <<>>
;; global options: printcmd
| +no​question
dig @dns1.midphase.com cccu.us +noall +question
;cccu.us. IN A
+no​answer
dig @dns1.midphase.com cccu.us +noall +answer
;; ANSWER SECTION:
cccu.us. 14407 IN A 174.127.119.33
+no​additional
dig @dns1.midphase.com cccu.us +noall +addi
;; ADDITIONAL SECTION:
dns1.midphase.com. 86400 IN A 67.213.216.225
dns2.midphase.com. 86400 IN A 69.4.235.113
+no​authority
dig @dns1.midphase.com cccu.us +noall +auth
;; AUTHORITY SECTION:
cccu.us. 86400 IN NS dns2.midphase.com.
cccu.us. 86400 IN NS dns1.midphase.com.
| +no​stats Performance of responding server ;; Query time: 2 msec
;; SERVER: 10.0.80.11#53(10.0.80.11)
;; WHEN: Fri Nov 13 22:42:39 2009
;; MSG SIZE rcvd: 294
| +nocl nocl supresses column 3 (usually IN (might be CHaos or HeSiod)
| +no​multiline records like the SOA in verbose multi-line format with human-readable comments.
119.127.174.in-addr.arpa. 10788 IN SOA dns1.midphase.com. hostmaster.midphase.com. (
2010091964 ; serial
86400 ; refresh (1 day)
7200 ; retry (2 hours)
3600000 ; expire (5 weeks 6 days 16 hours)
86400 ; TTL (1 day)
)
nomultiline uses [tab] to seperate fields Multiline uses spaces.
119.127.174.in-addr.arpa. 10800 IN SOA dns1.midphase.com. hostmaster.midphase.com.
2010091964 86400 7200 3600000 86400†
Default output each record on a single line, to facilitate parsing.
| | | | | | | | | | | | | | | |
QUERY OPTIONS
Some of these set or reset flag bits in the query header
keywords are preceded by a plus (+).
keywords which set or reset an option and may be preceded by no.
keywords which assign values to options (like the timeout interval), have the form keyword=value.
+no​nssearchdetermines authoritative Name Servers for the zone and SOA
/usr/bin/dig pppg.us +nss
SOA dns1.midphase.com. hostmaster.midphase.com. 2017112706 86400 7200 604800 600
from server 98.158.191.172 (dns1.midphase.com) in 26 ms.
SOA dns1.midphase.com. hostmaster.midphase.com. 2017112706 86400 7200 604800 600
from server 69.4.235.113 (dns2.midohase.com) in 72 ms.
| +no​showsearch | show intermediate results.
| +no​trace Toggle tracing of the delegation path from the root name servers .
Initaly disabled.
> dig -t any +trace +showsearch real-world-systems.com
45461 NS a.root-servers.net. start at root
. 45461 NS b.root-servers.net.
…
. 45461 NS l.root-servers.net
. 45461 NS m.root-servers.net.
. 45461 RRSIG NS 8 0 518400 20230206050000 20230124040000 951 . …
;; Received 1097 bytes from 2600:4041:4310:3c00::1#53(CR1000A.Germans.org) in 12 ms
com. 172800 NS a.gtld-servers.net. xxx said to go to .com as they always do.
… GlobatTopLevelDomain
com. 172800 NS l.gtld-servers.net.
com. 172800 NS m.gtld-servers.net.
com. 86400 DS 30909 8 2 E2D3C916&helliop; C41A5766
com. 86400 RRSIG DS 8 1 86400 20230211170000 20230129160000 951 . &heiip;
;; Received 1182 bytes from 2001:500:9f::42#53(l.root-servers.net) in 106 ms l.gtld-servers.net
cloudflare.com. 172800 NS ns3.cloudflare.com.
…
cloudflare.com. 172800 NS ns7.cloudflare.com.
cloudflare.com. 86400 DS 2371 13 2 329968*… 3826F2B9
cloudflare.com. 86400 RRSIG DS 8 2 86400 2023020 20230126040554 36739 com. XZZvr5&hellipi;
;; Received 824 bytes from 192.41.162.30#53(l.gtld-servers.net) in 6 ms said to to clouflare.com
/usr/bin/dig +trace +showsearch a-0.info -t any
. 42086 NS m.root-servers.net. start at root as always.
. 42086 NS g.root-servers.net.
…
. 42086 NS l.root-servers.net.
. 42086 RRSIG NS 8 0 518400 20230206050000 20230124040000 951 . …
;; Received 1097 bytes from 2600:4041:4310:3c00::1#53(CR1000A.Germans.org.) in 6 ms
info. 172800 NS b0.info.afilias-nst.org. g.root-servers.net says go to info
info. 172800 NS c0.info.afilias-nst.info.
…
info. 172800 NS b2.info.afilias-nst.org.
info. 86400 DS 5104 8 2 1AF7548A8D3E26CFA39E26C8B6A8F6C8B1E7 2DD8F744
info. 86400 RRSIG DS 8 1 86400 20230211170000 20230129160000 951 .…
;; Received 779 bytes from 2001:500:12::d0d#53(g.root-servers.net) in 30 ms
a-0.info. 3600 NS ns14.midphase.com.
a-0.info. 3600 NS ns15.midphase.com.
a-0.info. 3600 NS ns16.midphase.com.
dr3kecftk5dlgg1gdcs9q10f5vjs86ll.info. 3600 NSEC3 1 1 10 332539EE7F95C32A DR3N… NS SOA RRSIG DNSKEY NSEC3PARAM
… 3600 RRSIG NSEC3 8 2 3600 20230219221658 20230129211658 3891 info. …
lafrai1abkq5a96uu2tdhr3b4qi24r3v.info. 3600 NSEC3 1 1 10 332539EE7F95C32A LAGA… NS DS RRSIG
lafrai1abkq5a96uu2tdhr3b4qi24r3v.info. 3600 RRSIG NSEC3 8 2 3600 20230215153623 20230125143623 3891 info. …
;; Received 609 bytes from 199.254.49.1#53(c0.info.afilias-nst.info) in 169 ms
a-0.info. 14400 A 209.95.59.175
a-0.info. 14400 NS ns14.midphase.com.
a-0.info. 14400 NS ns15.midphase.com.
a-0.info. 14400 NS ns16.midphase.com.
a-0.info. 86400 SOA ns14.midphase.com. domainmaster.uk2group.com. 1675023209 86400 7200 3600000 86400
a-0.info. 14400 MX 0 mx.a-0.info.cust.a.hostedemail.com.
a-0.info. 14400 TXT "v=spf1 +a +mx +ip4:209.236.71.20 +ip4:209.95.59.175 ~all"
;; Received 344 bytes from 69.36.161.37#53(ns16.midphase.com) in 72 ms
| | |
| +time=s Timeout. min 1 second. Default: 15 seconds! (see .digrc)
DNS response from local router may be in the range of .01-.20 for a cached entry, .3 for uncached .com
| +tries=T | for UDP queries. Default: 3.
| +retry=r | retry UDP Default: 2. Does not include the initial query.
| +ndots=D the number of dots in name for it to be absolute.
Default: 1 or ndots statement in /etc/resolv.conf.
Names with fewer dots are relative and will be
searched for in the domains listed in the search or domain directive in /etc/resolv.conf.
|
| flags
| +no​qr query as it is reqeusted. Default: noqr;; Sending:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 62753
;; flags: qr rd; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
| +no​recurse Toggle rd (Recursion Desired) . Initally set. Recursion is disabled with nssearch or trace .
| +noaaonly Sets aa Authoritative Answer
| +no​aaflag +noaaonly.
|
| DNSSEC options
|
|---|
+no​dnssec| Requests DNSSEC records (DO)
| +no​cdflag Checking Disabled. requests the server not to perform DNSSEC validation of responses.
| +sigchase
Chase DNSSEC signature chains. Requires dig be compiled with -DDIG_SIGCHSE.
| trusted-key=fid Specifies a file containing trusted keys to be used with sigchase.
Each DNSKEY record must be on its own line.
If not specified dig will look for /etc/trusted-key.key
then trusted-key.key in the current directory.
Requires dig be compiled with -DDIG_SIGCHASE.
example DNSKEY
twitcher.us 3600 DNSKEY 257 3 13 …
XI62JA5SZV3vEtMWmuzrBtWvU5DC79y46Pf8nq+DiNJNmrkjaCd8Zk2V SquAMYRmHliIrlIrrDOsavBY78ABaw==
ad| Response has been DNSSEC validated (in reply)
|
Heavy options used when there's a real problem
(not for the faint hearted)
|
|---|
+no​fail Do not try the next server if SERVFAIL is received.
Default: fail.
| +tcp Use TCP when querying name servers.
Default UDP, except for AXFR or IXFR .
| +no​domain=name Set the search list to contain the single domain name, as if specified in a domain directive in /etc/resolv.conf, and
enable search list processing as if search were given.
| +no​search Use the search list in
searchlist or domain directive in resolv.conf . Not used by default.
| +bufsize=bytes UDP message buffer size advertised using EDNS0 0-65535.
Values other than zero causes an EDNS query to be sent.
| +edns=# EDNS version to query with. 0 - 255.
Setting the EDNS version causes an EDNS query to be sent.
noedns clears the EDNS version.
| +vc aka tcp "virtual circuit"
| +no​besteffort | output the contents of messages which are malformed. Default don't.
| +no​ignore | Ignore truncation in UDP responses. Default: retry with TCP query
| +notopdown When chasing DNSSEC signature chains perform a top down validation.
Requires dig be compiled with -DDIG_SIGCHASE.
| adflag | AD (authentic data) meaningful in responses, not in queries
| defname Deprecated, treated as a synonym for search
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | |
Multiple Queries
In addition to supporting -f file, specifying multiple queries on the command line is permited, each can be supplied with its own set of flags, options and query options.
Each query argument represents an individual query in the command-line syntax,
consisting of any of the standard options and flags, the name to be looked up, an optional
query type and class and any query options applied to that query.
Global query options, applied to all queries,
precede the first hostname, class, type, options, flags, and query options
can be overridden by a query-specific set of query options. For example:
dig +qr www.isc.org any -x 127.0.0.1 isc.org ns +noqr
- Global query option
+qr is applied, so the initial query it made for each lookup.
- an ANY query for www.isc.org,
- a reverse lookup of 127.0.0.1 and
- a query for the NS records of isc.org.
- a local query option of
+noqr not output the initial query when it
looks up isc.org.
IDN SUPPORT
Built with Internationalized Domain Name support, accepts and outputs non-ASCII domain names.
Disabled by defining the $IDN_DISABLE environment variable.
tip: The IN and CH class names overlap with the IN and CH top level domains names.
FILES
/etc/resolv.conf
${HOME}/.digrc +nocmd
+noquestion
+noadditional
+noauthority
+nocomments
+nocl
+time=1
See host, named, dnssec-keygen, RFC1035.
Help
dig [@global-server] [domain] [q-type] [q-class] {q-opt}
{global-d-opt} host [@local-server] {local-d-opt}
[ host [@local-server] {local-d-opt} …
Where:
domain is in the Domain Name System
q-class one of: in, hs, ch,… default: in
q-type one of: any, a, mx, ns, soa, hinfo, axf, txt,… default:a
Use ixfr=version for type ixfr
q-opt :
-q name -t type -c class
-f filename batch mode
-x dot-notation shortcut for in-addr lookups
-i IP6.INT reverse IPv6 lookups
-b address#port bind to source address/port
-p port
-4 -6 use IPv4/IPv6 query transport only
d-opt is of the form +keyword=value, where keyword is:
vc tcp TCP mode aka Virtual Circuit
+time=### timeout 5 sec.
+tries=### UDP attempts 3 +retry=### UDP retries 2
+domain=### default domainname
+bufsize=### EDNS0 Max UDP packet size
+ndots=###
+edns=###
search Set whether to use searchlist
showsearch Search with intermediate results
defname
recurse
ignore Don't revert to TCP for TC responses
fail Don't try next server on SERVFAIL
besteffort Try to parse even illegal messages
all Set or clear all output flags
aaonly Set AA flag in query aaflag
adflag Set AD
cdflag Set CD
cmd output command line
qr output question before sending
cl output class
comments question answer
authority additional stats
short ttlid (ommits type=txt)
nssearch Search all authoritative nameservers
identify ID responders in short answers
trace Trace delegation down from root
multiline output records in an expanded format
dnssec Request DNSSEC records
-k keyfile specify tsig key file
-y [hmac:]name:key (specify named base64 tsig key)
global d-opts and servers (before host name) affect all queries.
local d-opts and servers (after host name) affect only that lookup.
7/13/19
/usr/bin/dig @`/usr/bin/dig +short Real-World-Systems.com -t NS | \
head -1` Real-World-Systems.com -t A MX TXT NS SOA
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 41712
;; flags: †qr aa† rd; QUERY: 1, ANSWER: 8, AUTHORITY: 0, ADDITIONAL: 4
Real-World-Systems.com. 14400 MX 20 spamalizer.midphase.com.
Real-World-Systems.com. 14400 TXT "v=spf1 +a +mx
+ip4:209.236.71.20 +ip4:209.95.59.175 +ip4:209.236.71.17 +ip4:174.127.119.33 ~all"
Real-World-Systems.com. 86400 NS ns14.midphase.com.
Real-World-Systems.com. 86400 NS ns15.midphase.com.
Real-World-Systems.com. 14407 A 209.95.59.175
Real-World-Systems.com. 86400 NS ns16.midphase.com.
Real-World-Systems.com. 3600 MX 17 Real-World-Systems.com.
Real-World-Systems.com. 600 SOA ns14.midphase.com. domainmaster.uk2group.com. 2016120500 14400 7200 3600000 600
;; Query time: 61 msec
;; SERVER: 69.36.161.36#53(69.36.161.36)
;; WHEN: Sat Jul 13 08:12:34 EDT 2019
8/16/17 (notice OPT PSEDUOSECTION)
>usr/bin/dig $RWS -t any
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 13645
;; flags: qr rd ra; QUERY: 1, ANSWER: 7, AUTHORITY: 0, ADDITIONAL: 4
;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 4000
;; ANSWER SECTION:
Real-World-Systems.com. 600 IN SOA ns14.midphase.com. domainmaster.uk2group.com.
2016120500 14400 7200 3600000 600
Real-World-Systems.com. 14400 IN TXT "v=spf1 +a +mx
+ip4:209.236.71.17 +ip4:174.127.119.33 ~all"
Real-World-Systems.com. 86400 IN NS ns16.midphase.com.
Real-World-Systems.com. 86400 IN NS ns14.midphase.com.
Real-World-Systems.com. 86400 IN NS ns15.midphase.com.
Real-World-Systems.com. 14400 IN MX 0 spamalizer.midphase.com.
Real-World-Systems.com. 14407 IN A 174.127.119.33
;; ADDITIONAL SECTION:
ns14.midphase.com. 886 IN A 69.36.163.232
ns15.midphase.com. 12625 IN A 69.36.161.36
ns16.midphase.com. 10893 IN A 69.36.161.37
;; Query time: 187 msec
;; SERVER: 192.168.1.1#53(192.168.1.1)
;; WHEN: Wed Aug 16 15:28:16 EDT 2017
;; MSG SIZE rcvd: 336
compare pppg
compare gardenStateAudubonCouncil
cccu.us. 86367 IN RRSIG NSEC 5 2 86400 20110219155930 20110120152137 4787 US.
FVbkawbzpPd5cKbvj24QSZJ1hDVawkohCA3+65kIVhZBp5EVqa6U0hjl
+oP3ZMTYCM0v38ezLOKuKBZR0+rRS6UUaN+TWC77EoGY85LGe+o9Sz4x
BXULGzhPzobdw1Rk1FrDLdo/MYNMjAe5946JXozyxVXJiqZJt+VGa9KC LpU=
cccu.us. 86367 IN NSEC CCCUN.us. NS RRSIG NSEC
Sample /etc/resolve.conf
domain Germans
nameserver 192.168.1.1
nameserver 71.250.0.12
cPanel creates autodiscovery. and autoconfiguration records records enable the Microsoft Outlook
and Mozilla Thunderbird e-mail clients to discover and configure access to e-mail accounts.
Warningss
Directing a query to a DNS server that is not a hame server may return.
; OPT=15: 00 14 4e 6f 74 20 41 75 74 68 6f 72 69 74 61 74 69 76 65 ("..Not Authoritative")
Errors
DNS returns SERVFAIL if SOA's says NS is xxx, but xxx does not know about it!
Return codes:
0 Even if a NXDOMAIN or SERVFAIL returns!
So you should :
> dig -x 142.176.85.230|tee /tmp/$$ ;grep NOERROR /tmp/$$
> echo $? # rep will output 1 if that IP address reports an error
1 Invalid option, Usage Error
10 is not a legal name (empty label); for example is address specified has training dot example:142.12.13.13.
8 Couldn't open batch file
9 No reply from server, ;; connection timed out; no servers could be reached
Try dig @8.8.8.8 … ( google-public-dns-a.google.com )
http://internetsupervision.com/scripts/urlcheck/check.aspx?lan=en-US&checkurl=real-world-systems.com&email=
See
scutil , system preferences.
scutil --dns
DNS configuration
resolver #1 search domain[0]: germans nameserver[0]: 192.168.1.1 if_index: 4 (en0)
flags: Request A records reach: Reachable, Directly Reachable Address
resolver #2 domain: local options: mdns timeout: 5
flags: Request A records reach: Not Reachable order: 300000
resolver #3 domain: 254.169.in-addr.arpa options: mdns timeout: 5
flags: Request A records reach: Not Reachable order: 300200
resolver #4 domain: 8.e.f.ip6.arpa options: mdns timeout: 5
flags: Request A records reach: Not Reachable order: 300400
resolver #5 domain: 9.e.f.ip6.arpa options: mdns timeout: 5
flags: Request A records reach: Not Reachable order: 300600
resolver #6 domain: a.e.f.ip6.arpa options: mdns timeout: 5
flags: Request A records reach: Not Reachable order: 300800
resolver #7 domain: b.e.f.ip6.arpa options: mdns timeout: 5
flags: Request A records reach: Not Reachable order: 301000
DNS configuration (for scoped queries)
resolver #1 search domain[0]: germans nameserver[0]: 192.168.1.1 if_index: 4 (en0)
flags: Request A records reach: Reachable, Directly Reachable Address
"pseudosections" part of the ADDITIONAL section.
EDNS also adds support for "pseudo- resource records." only one pseudo- resource record type has been created: OPT, which stands for "options." OPT records don't actually carry any DNS information, just info "pertaining to the question-and-answer sequence of a specific transaction."
SIP server
VoIP phone system uses a SIP address, AlProduct@acne.com. redirected a call to your current location.
Dialing by domain names.
Multiple SIP SRV DNS records allows a sip phone to make multiple attemots to complete the connection.
DYNu DNS record typs
Extension mechanisms for DNS
IPv6
DNS White List anti spam
See host and nslookup
|