]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - contrib/bind9/bin/dig/dig.1
Update BIND to 9.9.8
[FreeBSD/stable/9.git] / contrib / bind9 / bin / dig / dig.1
1 .\" Copyright (C) 2004-2011, 2013-2015 Internet Systems Consortium, Inc. ("ISC")
2 .\" Copyright (C) 2000-2003 Internet Software Consortium.
3 .\" 
4 .\" Permission to use, copy, modify, and/or distribute this software for any
5 .\" purpose with or without fee is hereby granted, provided that the above
6 .\" copyright notice and this permission notice appear in all copies.
7 .\" 
8 .\" THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
9 .\" REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
10 .\" AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
11 .\" INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
12 .\" LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
13 .\" OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
14 .\" PERFORMANCE OF THIS SOFTWARE.
15 .\"
16 .\" $Id$
17 .\"
18 .hy 0
19 .ad l
20 .\"     Title: dig
21 .\"    Author: 
22 .\" Generator: DocBook XSL Stylesheets v1.71.1 <http://docbook.sf.net/>
23 .\"      Date: February 12, 2014
24 .\"    Manual: BIND9
25 .\"    Source: BIND9
26 .\"
27 .TH "DIG" "1" "February 12, 2014" "BIND9" "BIND9"
28 .\" disable hyphenation
29 .nh
30 .\" disable justification (adjust text to left margin only)
31 .ad l
32 .SH "NAME"
33 dig \- DNS lookup utility
34 .SH "SYNOPSIS"
35 .HP 4
36 \fBdig\fR [@server] [\fB\-b\ \fR\fB\fIaddress\fR\fR] [\fB\-c\ \fR\fB\fIclass\fR\fR] [\fB\-f\ \fR\fB\fIfilename\fR\fR] [\fB\-k\ \fR\fB\fIfilename\fR\fR] [\fB\-m\fR] [\fB\-p\ \fR\fB\fIport#\fR\fR] [\fB\-q\ \fR\fB\fIname\fR\fR] [\fB\-t\ \fR\fB\fItype\fR\fR] [\fB\-v\fR] [\fB\-x\ \fR\fB\fIaddr\fR\fR] [\fB\-y\ \fR\fB\fI[hmac:]\fR\fIname:key\fR\fR] [\fB\-4\fR] [\fB\-6\fR] [name] [type] [class] [queryopt...]
37 .HP 4
38 \fBdig\fR [\fB\-h\fR]
39 .HP 4
40 \fBdig\fR [global\-queryopt...] [query...]
41 .SH "DESCRIPTION"
42 .PP
43 \fBdig\fR
44 (domain information groper) is a flexible tool for interrogating DNS name servers. It performs DNS lookups and displays the answers that are returned from the name server(s) that were queried. Most DNS administrators use
45 \fBdig\fR
46 to troubleshoot DNS problems because of its flexibility, ease of use and clarity of output. Other lookup tools tend to have less functionality than
47 \fBdig\fR.
48 .PP
49 Although
50 \fBdig\fR
51 is normally used with command\-line arguments, it also has a batch mode of operation for reading lookup requests from a file. A brief summary of its command\-line arguments and options is printed when the
52 \fB\-h\fR
53 option is given. Unlike earlier versions, the BIND 9 implementation of
54 \fBdig\fR
55 allows multiple lookups to be issued from the command line.
56 .PP
57 Unless it is told to query a specific name server,
58 \fBdig\fR
59 will try each of the servers listed in
60 \fI/etc/resolv.conf\fR. If no usable server addresses are found,
61 \fBdig\fR
62 will send the query to the local host.
63 .PP
64 When no command line arguments or options are given,
65 \fBdig\fR
66 will perform an NS query for "." (the root).
67 .PP
68 It is possible to set per\-user defaults for
69 \fBdig\fR
70 via
71 \fI${HOME}/.digrc\fR. This file is read and any options in it are applied before the command line arguments.
72 .PP
73 The IN and CH class names overlap with the IN and CH top level domain names. Either use the
74 \fB\-t\fR
75 and
76 \fB\-c\fR
77 options to specify the type and class, use the
78 \fB\-q\fR
79 the specify the domain name, or use "IN." and "CH." when looking up these top level domains.
80 .SH "SIMPLE USAGE"
81 .PP
82 A typical invocation of
83 \fBdig\fR
84 looks like:
85 .sp
86 .RS 4
87 .nf
88  dig @server name type 
89 .fi
90 .RE
91 .sp
92 where:
93 .PP
94 \fBserver\fR
95 .RS 4
96 is the name or IP address of the name server to query. This can be an IPv4 address in dotted\-decimal notation or an IPv6 address in colon\-delimited notation. When the supplied
97 \fIserver\fR
98 argument is a hostname,
99 \fBdig\fR
100 resolves that name before querying that name server.
101 .sp
102 If no
103 \fIserver\fR
104 argument is provided,
105 \fBdig\fR
106 consults
107 \fI/etc/resolv.conf\fR; if an address is found there, it queries the name server at that address. If either of the
108 \fB\-4\fR
109 or
110 \fB\-6\fR
111 options are in use, then only addresses for the corresponding transport will be tried. If no usable addresses are found,
112 \fBdig\fR
113 will send the query to the local host. The reply from the name server that responds is displayed.
114 .RE
115 .PP
116 \fBname\fR
117 .RS 4
118 is the name of the resource record that is to be looked up.
119 .RE
120 .PP
121 \fBtype\fR
122 .RS 4
123 indicates what type of query is required \(em ANY, A, MX, SIG, etc.
124 \fItype\fR
125 can be any valid query type. If no
126 \fItype\fR
127 argument is supplied,
128 \fBdig\fR
129 will perform a lookup for an A record.
130 .RE
131 .SH "OPTIONS"
132 .PP
133 \-4
134 .RS 4
135 Use IPv4 only.
136 .RE
137 .PP
138 \-6
139 .RS 4
140 Use IPv6 only.
141 .RE
142 .PP
143 \-b \fIaddress\fR\fI[#port]\fR
144 .RS 4
145 Set the source IP address of the query. The
146 \fIaddress\fR
147 must be a valid address on one of the host's network interfaces, or "0.0.0.0" or "::". An optional port may be specified by appending "#<port>"
148 .RE
149 .PP
150 \-c \fIclass\fR
151 .RS 4
152 Set the query class. The default
153 \fIclass\fR
154 is IN; other classes are HS for Hesiod records or CH for Chaosnet records.
155 .RE
156 .PP
157 \-f \fIfile\fR
158 .RS 4
159 Batch mode:
160 \fBdig\fR
161 reads a list of lookup requests to process from the given
162 \fIfile\fR. Each line in the file should be organized in the same way they would be presented as queries to
163 \fBdig\fR
164 using the command\-line interface.
165 .RE
166 .PP
167 \-i
168 .RS 4
169 Do reverse IPv6 lookups using the obsolete RFC1886 IP6.INT domain, which is no longer in use. Obsolete bit string label queries (RFC2874) are not attempted.
170 .RE
171 .PP
172 \-k \fIkeyfile\fR
173 .RS 4
174 Sign queries using TSIG using a key read from the given file. Key files can be generated using
175 \fBtsig\-keygen\fR(8). When using TSIG authentication with
176 \fBdig\fR, the name server that is queried needs to know the key and algorithm that is being used. In BIND, this is done by providing appropriate
177 \fBkey\fR
178 and
179 \fBserver\fR
180 statements in
181 \fInamed.conf\fR.
182 .RE
183 .PP
184 \-m
185 .RS 4
186 Enable memory usage debugging.
187 .RE
188 .PP
189 \-p \fIport\fR
190 .RS 4
191 Send the query to a non\-standard port on the server, instead of the defaut port 53. This option would be used to test a name server that has been configured to listen for queries on a non\-standard port number.
192 .RE
193 .PP
194 \-q \fIname\fR
195 .RS 4
196 The domain name to query. This is useful to distinguish the
197 \fIname\fR
198 from other arguments.
199 .RE
200 .PP
201 \-t \fItype\fR
202 .RS 4
203 The resource record type to query. It can be any valid query type which is supported in BIND 9. The default query type is "A", unless the
204 \fB\-x\fR
205 option is supplied to indicate a reverse lookup. A zone transfer can be requested by specifying a type of AXFR. When an incremental zone transfer (IXFR) is required, set the
206 \fItype\fR
207 to
208 ixfr=N. The incremental zone transfer will contain the changes made to the zone since the serial number in the zone's SOA record was
209 \fIN\fR.
210 .RE
211 .PP
212 \-v
213 .RS 4
214 Print the version number and exit.
215 .RE
216 .PP
217 \-x \fIaddr\fR
218 .RS 4
219 Simplified reverse lookups, for mapping addresses to names. The
220 \fIaddr\fR
221 is an IPv4 address in dotted\-decimal notation, or a colon\-delimited IPv6 address. When the
222 \fB\-x\fR
223 is used, there is no need to provide the
224 \fIname\fR,
225 \fIclass\fR
226 and
227 \fItype\fR
228 arguments.
229 \fBdig\fR
230 automatically performs a lookup for a name like
231 94.2.0.192.in\-addr.arpa
232 and sets the query type and class to PTR and IN respectively. IPv6 addresses are looked up using nibble format under the IP6.ARPA domain (but see also the
233 \fB\-i\fR
234 option).
235 .RE
236 .PP
237 \-y \fI[hmac:]\fR\fIkeyname:secret\fR
238 .RS 4
239 Sign queries using TSIG with the given authentication key.
240 \fIkeyname\fR
241 is the name of the key, and
242 \fIsecret\fR
243 is the base64 encoded shared secret.
244 \fIhmac\fR
245 is the name of the key algorithm; valid choices are
246 hmac\-md5,
247 hmac\-sha1,
248 hmac\-sha224,
249 hmac\-sha256,
250 hmac\-sha384, or
251 hmac\-sha512. If
252 \fIhmac\fR
253 is not specified, the default is
254 hmac\-md5.
255 .sp
256 NOTE: You should use the
257 \fB\-k\fR
258 option and avoid the
259 \fB\-y\fR
260 option, because with
261 \fB\-y\fR
262 the shared secret is supplied as a command line argument in clear text. This may be visible in the output from
263 \fBps\fR(1)
264 or in a history file maintained by the user's shell.
265 .RE
266 .SH "QUERY OPTIONS"
267 .PP
268 \fBdig\fR
269 provides a number of query options which affect the way in which lookups are made and the results displayed. Some of these set or reset flag bits in the query header, some determine which sections of the answer get printed, and others determine the timeout and retry strategies.
270 .PP
271 Each query option is identified by a keyword preceded by a plus sign (+). Some keywords set or reset an option. These may be preceded by the string
272 no
273 to negate the meaning of that keyword. Other keywords assign values to options like the timeout interval. They have the form
274 \fB+keyword=value\fR. Keywords may be abbreviated, provided the abbreviation is unambiguous; for example,
275 +cd
276 is equivalent to
277 +cdflag. The query options are:
278 .PP
279 \fB+[no]aaflag\fR
280 .RS 4
281 A synonym for
282 \fI+[no]aaonly\fR.
283 .RE
284 .PP
285 \fB+[no]aaonly\fR
286 .RS 4
287 Sets the "aa" flag in the query.
288 .RE
289 .PP
290 \fB+[no]additional\fR
291 .RS 4
292 Display [do not display] the additional section of a reply. The default is to display it.
293 .RE
294 .PP
295 \fB+[no]adflag\fR
296 .RS 4
297 Set [do not set] the AD (authentic data) bit in the query. This requests the server to return whether all of the answer and authority sections have all been validated as secure according to the security policy of the server. AD=1 indicates that all records have been validated as secure and the answer is not from a OPT\-OUT range. AD=0 indicate that some part of the answer was insecure or not validated. This bit is set by default.
298 .RE
299 .PP
300 \fB+[no]all\fR
301 .RS 4
302 Set or clear all display flags.
303 .RE
304 .PP
305 \fB+[no]answer\fR
306 .RS 4
307 Display [do not display] the answer section of a reply. The default is to display it.
308 .RE
309 .PP
310 \fB+[no]authority\fR
311 .RS 4
312 Display [do not display] the authority section of a reply. The default is to display it.
313 .RE
314 .PP
315 \fB+[no]besteffort\fR
316 .RS 4
317 Attempt to display the contents of messages which are malformed. The default is to not display malformed answers.
318 .RE
319 .PP
320 \fB+bufsize=B\fR
321 .RS 4
322 Set the UDP message buffer size advertised using EDNS0 to
323 \fIB\fR
324 bytes. The maximum and minimum sizes of this buffer are 65535 and 0 respectively. Values outside this range are rounded up or down appropriately. Values other than zero will cause a EDNS query to be sent.
325 .RE
326 .PP
327 \fB+[no]cdflag\fR
328 .RS 4
329 Set [do not set] the CD (checking disabled) bit in the query. This requests the server to not perform DNSSEC validation of responses.
330 .RE
331 .PP
332 \fB+[no]class\fR
333 .RS 4
334 Display [do not display] the CLASS when printing the record.
335 .RE
336 .PP
337 \fB+[no]cmd\fR
338 .RS 4
339 Toggles the printing of the initial comment in the output identifying the version of
340 \fBdig\fR
341 and the query options that have been applied. This comment is printed by default.
342 .RE
343 .PP
344 \fB+[no]comments\fR
345 .RS 4
346 Toggle the display of comment lines in the output. The default is to print comments.
347 .RE
348 .PP
349 \fB+[no]defname\fR
350 .RS 4
351 Deprecated, treated as a synonym for
352 \fI+[no]search\fR
353 .RE
354 .PP
355 \fB+[no]dnssec\fR
356 .RS 4
357 Requests DNSSEC records be sent by setting the DNSSEC OK bit (DO) in the OPT record in the additional section of the query.
358 .RE
359 .PP
360 \fB+domain=somename\fR
361 .RS 4
362 Set the search list to contain the single domain
363 \fIsomename\fR, as if specified in a
364 \fBdomain\fR
365 directive in
366 \fI/etc/resolv.conf\fR, and enable search list processing as if the
367 \fI+search\fR
368 option were given.
369 .RE
370 .PP
371 \fB+[no]edns[=#]\fR
372 .RS 4
373 Specify the EDNS version to query with. Valid values are 0 to 255. Setting the EDNS version will cause a EDNS query to be sent.
374 \fB+noedns\fR
375 clears the remembered EDNS version. EDNS is set to 0 by default.
376 .RE
377 .PP
378 \fB+[no]fail\fR
379 .RS 4
380 Do not try the next server if you receive a SERVFAIL. The default is to not try the next server which is the reverse of normal stub resolver behavior.
381 .RE
382 .PP
383 \fB+[no]identify\fR
384 .RS 4
385 Show [or do not show] the IP address and port number that supplied the answer when the
386 \fI+short\fR
387 option is enabled. If short form answers are requested, the default is not to show the source address and port number of the server that provided the answer.
388 .RE
389 .PP
390 \fB+[no]ignore\fR
391 .RS 4
392 Ignore truncation in UDP responses instead of retrying with TCP. By default, TCP retries are performed.
393 .RE
394 .PP
395 \fB+[no]keepopen\fR
396 .RS 4
397 Keep the TCP socket open between queries and reuse it rather than creating a new TCP socket for each lookup. The default is
398 \fB+nokeepopen\fR.
399 .RE
400 .PP
401 \fB+[no]multiline\fR
402 .RS 4
403 Print records like the SOA records in a verbose multi\-line format with human\-readable comments. The default is to print each record on a single line, to facilitate machine parsing of the
404 \fBdig\fR
405 output.
406 .RE
407 .PP
408 \fB+ndots=D\fR
409 .RS 4
410 Set the number of dots that have to appear in
411 \fIname\fR
412 to
413 \fID\fR
414 for it to be considered absolute. The default value is that defined using the ndots statement in
415 \fI/etc/resolv.conf\fR, or 1 if no ndots statement is present. Names with fewer dots are interpreted as relative names and will be searched for in the domains listed in the
416 \fBsearch\fR
417 or
418 \fBdomain\fR
419 directive in
420 \fI/etc/resolv.conf\fR
421 if
422 \fB+search\fR
423 is set.
424 .RE
425 .PP
426 \fB+[no]nsid\fR
427 .RS 4
428 Include an EDNS name server ID request when sending a query.
429 .RE
430 .PP
431 \fB+[no]nssearch\fR
432 .RS 4
433 When this option is set,
434 \fBdig\fR
435 attempts to find the authoritative name servers for the zone containing the name being looked up and display the SOA record that each name server has for the zone.
436 .RE
437 .PP
438 \fB+[no]onesoa\fR
439 .RS 4
440 Print only one (starting) SOA record when performing an AXFR. The default is to print both the starting and ending SOA records.
441 .RE
442 .PP
443 \fB+[no]qr\fR
444 .RS 4
445 Print [do not print] the query as it is sent. By default, the query is not printed.
446 .RE
447 .PP
448 \fB+[no]question\fR
449 .RS 4
450 Print [do not print] the question section of a query when an answer is returned. The default is to print the question section as a comment.
451 .RE
452 .PP
453 \fB+[no]rdflag\fR
454 .RS 4
455 A synonym for
456 \fI+[no]recurse\fR.
457 .RE
458 .PP
459 \fB+[no]recurse\fR
460 .RS 4
461 Toggle the setting of the RD (recursion desired) bit in the query. This bit is set by default, which means
462 \fBdig\fR
463 normally sends recursive queries. Recursion is automatically disabled when the
464 \fI+nssearch\fR
465 or
466 \fI+trace\fR
467 query options are used.
468 .RE
469 .PP
470 \fB+retry=T\fR
471 .RS 4
472 Sets the number of times to retry UDP queries to server to
473 \fIT\fR
474 instead of the default, 2. Unlike
475 \fI+tries\fR, this does not include the initial query.
476 .RE
477 .PP
478 \fB+[no]rrcomments\fR
479 .RS 4
480 Toggle the display of per\-record comments in the output (for example, human\-readable key information about DNSKEY records). The default is not to print record comments unless multiline mode is active.
481 .RE
482 .PP
483 \fB+[no]search\fR
484 .RS 4
485 Use [do not use] the search list defined by the searchlist or domain directive in
486 \fIresolv.conf\fR
487 (if any). The search list is not used by default.
488 .sp
489 \'ndots' from
490 \fIresolv.conf\fR
491 (default 1) which may be overridden by
492 \fI+ndots\fR
493 determines if the name will be treated as relative or not and hence whether a search is eventually performed or not.
494 .RE
495 .PP
496 \fB+[no]short\fR
497 .RS 4
498 Provide a terse answer. The default is to print the answer in a verbose form.
499 .RE
500 .PP
501 \fB+[no]showsearch\fR
502 .RS 4
503 Perform [do not perform] a search showing intermediate results.
504 .RE
505 .PP
506 \fB+[no]sigchase\fR
507 .RS 4
508 Chase DNSSEC signature chains. Requires dig be compiled with \-DDIG_SIGCHASE.
509 .RE
510 .PP
511 \fB+split=W\fR
512 .RS 4
513 Split long hex\- or base64\-formatted fields in resource records into chunks of
514 \fIW\fR
515 characters (where
516 \fIW\fR
517 is rounded up to the nearest multiple of 4).
518 \fI+nosplit\fR
519 or
520 \fI+split=0\fR
521 causes fields not to be split at all. The default is 56 characters, or 44 characters when multiline mode is active.
522 .RE
523 .PP
524 \fB+[no]stats\fR
525 .RS 4
526 This query option toggles the printing of statistics: when the query was made, the size of the reply and so on. The default behavior is to print the query statistics.
527 .RE
528 .PP
529 \fB+[no]tcp\fR
530 .RS 4
531 Use [do not use] TCP when querying name servers. The default behavior is to use UDP unless an
532 ixfr=N
533 query is requested, in which case the default is TCP. AXFR queries always use TCP.
534 .RE
535 .PP
536 \fB+time=T\fR
537 .RS 4
538 Sets the timeout for a query to
539 \fIT\fR
540 seconds. The default timeout is 5 seconds. An attempt to set
541 \fIT\fR
542 to less than 1 will result in a query timeout of 1 second being applied.
543 .RE
544 .PP
545 \fB+[no]topdown\fR
546 .RS 4
547 When chasing DNSSEC signature chains perform a top\-down validation. Requires dig be compiled with \-DDIG_SIGCHASE.
548 .RE
549 .PP
550 \fB+[no]trace\fR
551 .RS 4
552 Toggle tracing of the delegation path from the root name servers for the name being looked up. Tracing is disabled by default. When tracing is enabled,
553 \fBdig\fR
554 makes iterative queries to resolve the name being looked up. It will follow referrals from the root servers, showing the answer from each server that was used to resolve the lookup.
555 .sp
556 If @server is also specified, it affects only the initial query for the root zone name servers.
557 .sp
558 \fB+dnssec\fR
559 is also set when +trace is set to better emulate the default queries from a nameserver.
560 .RE
561 .PP
562 \fB+tries=T\fR
563 .RS 4
564 Sets the number of times to try UDP queries to server to
565 \fIT\fR
566 instead of the default, 3. If
567 \fIT\fR
568 is less than or equal to zero, the number of tries is silently rounded up to 1.
569 .RE
570 .PP
571 \fB+trusted\-key=####\fR
572 .RS 4
573 Specifies a file containing trusted keys to be used with
574 \fB+sigchase\fR. Each DNSKEY record must be on its own line.
575 .sp
576 If not specified,
577 \fBdig\fR
578 will look for
579 \fI/etc/trusted\-key.key\fR
580 then
581 \fItrusted\-key.key\fR
582 in the current directory.
583 .sp
584 Requires dig be compiled with \-DDIG_SIGCHASE.
585 .RE
586 .PP
587 \fB+[no]ttlid\fR
588 .RS 4
589 Display [do not display] the TTL when printing the record.
590 .RE
591 .PP
592 \fB+[no]vc\fR
593 .RS 4
594 Use [do not use] TCP when querying name servers. This alternate syntax to
595 \fI+[no]tcp\fR
596 is provided for backwards compatibility. The "vc" stands for "virtual circuit".
597 .RE
598 .SH "MULTIPLE QUERIES"
599 .PP
600 The BIND 9 implementation of
601 \fBdig \fR
602 supports specifying multiple queries on the command line (in addition to supporting the
603 \fB\-f\fR
604 batch file option). Each of those queries can be supplied with its own set of flags, options and query options.
605 .PP
606 In this case, each
607 \fIquery\fR
608 argument represent an individual query in the command\-line syntax described above. Each consists of any of the standard options and flags, the name to be looked up, an optional query type and class and any query options that should be applied to that query.
609 .PP
610 A global set of query options, which should be applied to all queries, can also be supplied. These global query options must precede the first tuple of name, class, type, options, flags, and query options supplied on the command line. Any global query options (except the
611 \fB+[no]cmd\fR
612 option) can be overridden by a query\-specific set of query options. For example:
613 .sp
614 .RS 4
615 .nf
616 dig +qr www.isc.org any \-x 127.0.0.1 isc.org ns +noqr
617 .fi
618 .RE
619 .sp
620 shows how
621 \fBdig\fR
622 could be used from the command line to make three lookups: an ANY query for
623 www.isc.org, a reverse lookup of 127.0.0.1 and a query for the NS records of
624 isc.org. A global query option of
625 \fI+qr\fR
626 is applied, so that
627 \fBdig\fR
628 shows the initial query it made for each lookup. The final query has a local query option of
629 \fI+noqr\fR
630 which means that
631 \fBdig\fR
632 will not print the initial query when it looks up the NS records for
633 isc.org.
634 .SH "IDN SUPPORT"
635 .PP
636 If
637 \fBdig\fR
638 has been built with IDN (internationalized domain name) support, it can accept and display non\-ASCII domain names.
639 \fBdig\fR
640 appropriately converts character encoding of domain name before sending a request to DNS server or displaying a reply from the server. If you'd like to turn off the IDN support for some reason, defines the
641 \fBIDN_DISABLE\fR
642 environment variable. The IDN support is disabled if the variable is set when
643 \fBdig\fR
644 runs.
645 .SH "FILES"
646 .PP
647 \fI/etc/resolv.conf\fR
648 .PP
649 \fI${HOME}/.digrc\fR
650 .SH "SEE ALSO"
651 .PP
652 \fBhost\fR(1),
653 \fBnamed\fR(8),
654 \fBdnssec\-keygen\fR(8),
655 RFC1035.
656 .SH "BUGS"
657 .PP
658 There are probably too many query options.
659 .SH "COPYRIGHT"
660 Copyright \(co 2004\-2011, 2013\-2015 Internet Systems Consortium, Inc. ("ISC")
661 .br
662 Copyright \(co 2000\-2003 Internet Software Consortium.
663 .br