b10-auth.8 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. '\" t
  2. .\" Title: b10-auth
  3. .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
  4. .\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
  5. .\" Date: March 1, 2012
  6. .\" Manual: BIND10
  7. .\" Source: BIND10
  8. .\" Language: English
  9. .\"
  10. .TH "B10\-AUTH" "8" "March 1, 2012" "BIND10" "BIND10"
  11. .\" -----------------------------------------------------------------
  12. .\" * set default formatting
  13. .\" -----------------------------------------------------------------
  14. .\" disable hyphenation
  15. .nh
  16. .\" disable justification (adjust text to left margin only)
  17. .ad l
  18. .\" -----------------------------------------------------------------
  19. .\" * MAIN CONTENT STARTS HERE *
  20. .\" -----------------------------------------------------------------
  21. .SH "NAME"
  22. b10-auth \- Authoritative DNS server
  23. .SH "SYNOPSIS"
  24. .HP \w'\fBb10\-auth\fR\ 'u
  25. \fBb10\-auth\fR [\fB\-n\fR] [\fB\-v\fR]
  26. .SH "DESCRIPTION"
  27. .PP
  28. The
  29. \fBb10\-auth\fR
  30. daemon provides the BIND 10 authoritative DNS server\&. Normally it is started by the
  31. \fBbind10\fR(8)
  32. boss process\&.
  33. .PP
  34. This daemon communicates with other BIND 10 components over a
  35. \fBb10-msgq\fR(8)
  36. C\-Channel connection\&. If this connection is not established,
  37. \fBb10\-auth\fR
  38. will exit\&.
  39. It receives its configurations from
  40. \fBb10-cfgmgr\fR(8)\&.
  41. .SH "OPTIONS"
  42. .PP
  43. The arguments are as follows:
  44. .PP
  45. \fB\-n\fR
  46. .RS 4
  47. Do not cache answers in memory\&. The default is to use the cache for faster responses\&. The cache keeps the most recent 30,000 answers (positive and negative) in memory for 30 seconds (instead of querying the data source, such as SQLite3 database, each time)\&.
  48. .RE
  49. .PP
  50. \fB\-v\fR
  51. .RS 4
  52. Enabled verbose mode\&. This enables diagnostic messages to STDERR\&.
  53. .RE
  54. .SH "CONFIGURATION AND COMMANDS"
  55. .PP
  56. The configurable settings are:
  57. .PP
  58. \fIdatabase_file\fR
  59. defines the path to the SQLite3 zone file when using the sqlite datasource\&. The default is
  60. /usr/local/var/bind10\-devel/zone\&.sqlite3\&.
  61. .PP
  62. \fIdatasources\fR
  63. configures data sources\&. The list items include:
  64. \fItype\fR
  65. to optionally choose the data source type (such as
  66. \(lqmemory\(rq);
  67. \fIclass\fR
  68. to optionally select the class (it defaults to
  69. \(lqIN\(rq); and
  70. \fIzones\fR
  71. to define the
  72. \fIfile\fR
  73. path name and the
  74. \fIorigin\fR
  75. (default domain)\&. By default, this is empty\&.
  76. .if n \{\
  77. .sp
  78. .\}
  79. .RS 4
  80. .it 1 an-trap
  81. .nr an-no-space-flag 1
  82. .nr an-break-flag 1
  83. .br
  84. .ps +1
  85. \fBNote\fR
  86. .ps -1
  87. .br
  88. .sp
  89. In this development version, currently this is only used for the memory data source\&. Only the IN class is supported at this time\&. By default, the memory data source is disabled\&. Also, currently the zone file must be canonical such as generated by \fBnamed\-compilezone \-D\fR\&.
  90. .sp .5v
  91. .RE
  92. .PP
  93. \fIlisten_on\fR
  94. is a list of addresses and ports for
  95. \fBb10\-auth\fR
  96. to listen on\&. The list items are the
  97. \fIaddress\fR
  98. string and
  99. \fIport\fR
  100. number\&. By default,
  101. \fBb10\-auth\fR
  102. listens on port 53 on the IPv6 (::) and IPv4 (0\&.0\&.0\&.0) wildcard addresses\&.
  103. .PP
  104. \fIstatistics\-interval\fR
  105. is the timer interval in seconds for
  106. \fBb10\-auth\fR
  107. to share its statistics information to
  108. \fBb10-stats\fR(8)\&. Statistics updates can be disabled by setting this to 0\&. The default is 60\&.
  109. .PP
  110. The configuration commands are:
  111. .PP
  112. \fBloadzone\fR
  113. tells
  114. \fBb10\-auth\fR
  115. to load or reload a zone file\&. The arguments include:
  116. \fIclass\fR
  117. which optionally defines the class (it defaults to
  118. \(lqIN\(rq);
  119. \fIorigin\fR
  120. is the domain name of the zone; and
  121. \fIdatasrc\fR
  122. optionally defines the type of datasource (it defaults to
  123. \(lqmemory\(rq)\&.
  124. .if n \{\
  125. .sp
  126. .\}
  127. .RS 4
  128. .it 1 an-trap
  129. .nr an-no-space-flag 1
  130. .nr an-break-flag 1
  131. .br
  132. .ps +1
  133. \fBNote\fR
  134. .ps -1
  135. .br
  136. .sp
  137. In this development version, currently this only supports the IN class and the memory data source\&.
  138. .sp .5v
  139. .RE
  140. .PP
  141. \fBsendstats\fR
  142. tells
  143. \fBb10\-auth\fR
  144. to send its statistics data to
  145. \fBb10-stats\fR(8)
  146. immediately\&.
  147. .PP
  148. \fBshutdown\fR
  149. exits
  150. \fBb10\-auth\fR\&. This has an optional
  151. \fIpid\fR
  152. argument to select the process ID to stop\&. (Note that the BIND 10 boss process may restart this service if configured\&.)
  153. .SH "STATISTICS DATA"
  154. .PP
  155. The statistics data collected by the
  156. \fBb10\-stats\fR
  157. daemon for
  158. \(lqAuth\(rq
  159. include:
  160. .PP
  161. queries\&.tcp
  162. .RS 4
  163. Total count of queries received by the
  164. \fBb10\-auth\fR
  165. server over TCP since startup\&.
  166. .RE
  167. .PP
  168. queries\&.udp
  169. .RS 4
  170. Total count of queries received by the
  171. \fBb10\-auth\fR
  172. server over UDP since startup\&.
  173. .RE
  174. .SH "FILES"
  175. .PP
  176. /usr/local/var/bind10\-devel/zone\&.sqlite3
  177. \(em Location for the SQLite3 zone database when
  178. \fIdatabase_file\fR
  179. configuration is not defined\&.
  180. .SH "SEE ALSO"
  181. .PP
  182. \fBb10-cfgmgr\fR(8),
  183. \fBb10-loadzone\fR(8),
  184. \fBb10-msgq\fR(8),
  185. \fBb10-stats\fR(8),
  186. \fBb10-zonemgr\fR(8),
  187. \fBbind10\fR(8),
  188. BIND 10 Guide\&.
  189. .SH "HISTORY"
  190. .PP
  191. The
  192. \fBb10\-auth\fR
  193. daemon was first coded in October 2009\&.
  194. .SH "COPYRIGHT"
  195. .br
  196. Copyright \(co 2010-2012 Internet Systems Consortium, Inc. ("ISC")
  197. .br