diff options
Diffstat (limited to 'contrib/bind/doc')
-rw-r--r-- | contrib/bind/doc/html/logging.html | 4 | ||||
-rw-r--r-- | contrib/bind/doc/html/options.html | 9 | ||||
-rw-r--r-- | contrib/bind/doc/man/named.8 | 19 |
3 files changed, 30 insertions, 2 deletions
diff --git a/contrib/bind/doc/html/logging.html b/contrib/bind/doc/html/logging.html index 4af80501d825..4d0021984f38 100644 --- a/contrib/bind/doc/html/logging.html +++ b/contrib/bind/doc/html/logging.html @@ -172,6 +172,8 @@ used is described in the next section, The <CODE>category</CODE> phrase. channel default_debug { file "named.run"; # write to named.run in the working directory + # Note: stderr is used instead of "named.run" + # if the server is started with the "-f" option. severity dynamic; # log at the server's current debug level }; @@ -340,7 +342,7 @@ Messages arising from response checking, such as <HR> <ADDRESS> -Last Updated: $Id: logging.html,v 1.6 1998/03/21 01:03:13 halley Exp $ +Last Updated: $Id: logging.html,v 1.7 1998/04/23 19:58:35 halley Exp $ </ADDRESS> </BODY> </HTML> diff --git a/contrib/bind/doc/html/options.html b/contrib/bind/doc/html/options.html index 5f0ddcedcac6..515ee96a56c0 100644 --- a/contrib/bind/doc/html/options.html +++ b/contrib/bind/doc/html/options.html @@ -23,6 +23,7 @@ options { [ deallocate-on-exit <VAR><A HREF="docdef.html">yes_or_no</A></VAR>; ] [ fake-iquery <VAR><A HREF="docdef.html">yes_or_no</A></VAR>; ] [ fetch-glue <VAR><A HREF="docdef.html">yes_or_no</A></VAR>; ] + [ host-statistics <VAR><A HREF="docdef.html">yes_or_no</A></VAR>; ] [ multiple-cnames <VAR><A HREF="docdef.html">yes_or_no</A></VAR>; ] [ notify <VAR><A HREF="docdef.html">yes_or_no</A></VAR>; ] [ recursion <VAR><A HREF="docdef.html">yes_or_no</A></VAR>; ] @@ -136,6 +137,12 @@ a response. <CODE>fetch-glue no</CODE> can be used in conjunction with <CODE>recursion no</CODE> to prevent the server's cache from growing or becoming corrupted (at the cost of requiring more work from the client). +<DT><CODE>host-statistics</CODE> +<DD> +If <CODE>yes</CODE>, then statistics are kept for every host that the +the nameserver interacts with. The default is <CODE>no</CODE>. <I>Note:</I> +turning on <CODE>host-statistics</CODE> can consume huge amounts of memory. + <DT><CODE>multiple-cnames</CODE> <DD> If <CODE>yes</CODE>, then multiple CNAME resource records will be @@ -456,7 +463,7 @@ of all. <HR> <ADDRESS> -Last Updated: $Id: options.html,v 1.9 1998/03/21 01:02:59 halley Exp $ +Last Updated: $Id: options.html,v 1.10 1998/05/05 19:50:28 halley Exp $ </ADDRESS> </BODY> </HTML> diff --git a/contrib/bind/doc/man/named.8 b/contrib/bind/doc/man/named.8 index e3c0b82fe030..b07dc7a2ee47 100644 --- a/contrib/bind/doc/man/named.8 +++ b/contrib/bind/doc/man/named.8 @@ -69,6 +69,9 @@ .Ar config_file .Oc .Op Fl f q r +.Op Fl u Ar user_name +.Op Fl g Ar group_name +.Op Fl t Ar directory .Op Fl w Ar directory .Op Ar config_file .Sh DESCRIPTION @@ -186,6 +189,22 @@ This option can be overridden by and is deprecated in favor of the clause of the configuration file's .Dq Li options statement. +.It Fl u Ar user_name +Specifies the user the server should run as after it initializes. The value +specified may be either a username or a numeric user id. If the +.Dq Fl g +flag is not specified, then the group id used will be the primary group of +the user specified (initgroups() is called, so all of the user's groups will +be available to the server). +.Pp +.It Fl g Ar group_name +Specifies the group the server should run as after it initializes. The value +specified may be either a groupname or a numeric group id. +.Pp +.It Fl t Ar directory +Specifies the directory the server should chroot() into as soon as it is +finshed processing command line arguments. +.Pp .It Fl w Ar directory Sets the working directory of the server. The .Dq Li directory |