0N/A<!
DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" 0N/A [<!ENTITY mdash "—">]>
0N/A - Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") 0N/A - Copyright (C) 2000, 2001 Internet Software Consortium. 0N/A - Permission to use, copy, modify, and distribute this software for any 2362N/A - purpose with or without fee is hereby granted, provided that the above 0N/A - copyright notice and this permission notice appear in all copies. 0N/A - THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH 0N/A - REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 0N/A - AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, 0N/A - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 0N/A - LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE 0N/A - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 0N/A - PERFORMANCE OF THIS SOFTWARE. 0N/A <
date>June 30, 2000</
date>
0N/A <
refentrytitle><
filename>
rndc.conf</
filename></
refentrytitle>
0N/A <
manvolnum>5</
manvolnum>
0N/A <
refmiscinfo>BIND9</
refmiscinfo>
0N/A <
refpurpose>rndc configuration file</
refpurpose>
0N/A <
holder>Internet Systems Consortium, Inc. ("ISC")</
holder>
0N/A <
holder>Internet Software Consortium.</
holder>
0N/A <
title>DESCRIPTION</
title>
0N/A <
para><
filename>
rndc.conf</
filename> is the configuration file
0N/A for <
command>rndc</
command>, the BIND 9 name server control
0N/A utility. This file has a similar structure and syntax to
0N/A in braces and terminated with a semi-colon. Clauses in
0N/A the statements are also semi-colon terminated. The usual
0N/A comment styles are supported:
0N/A C++ style: // to end of line
0N/A Unix style: # to end of line
0N/A statements: an options statement, a server statement
0N/A and a key statement.
0N/A The <
option>options</
option> statement contains five clauses.
0N/A The <
option>default-server</
option> clause is followed by the
0N/A name or address of a name server. This host will be used when
0N/A no name server is given as an argument to
0N/A <
command>rndc</
command>. The <
option>default-key</
option>
0N/A clause is followed by the name of a key which is identified by
0N/A a <
option>key</
option> statement. If no
0N/A <
option>keyid</
option> is provided on the rndc command line,
0N/A and no <
option>key</
option> clause is found in a matching
3213N/A <
option>server</
option> statement, this default key will be
0N/A used to authenticate the server's commands and responses. The
0N/A <
option>default-port</
option> clause is followed by the port
to connect to on the remote name server. If no
<
option>port</
option> option is provided on the rndc command
line, and no <
option>port</
option> clause is found in a
matching <
option>server</
option> statement, this default port
The <
option>default-source-address</
option> and
<
option>default-source-address-v6</
option> clauses which
can be used to set the IPv4 and IPv6 source addresses
After the <
option>server</
option> keyword, the server
statement includes a string which is the hostname or address
for a name server. The statement has three possible clauses:
<
option>key</
option>, <
option>port</
option> and
<
option>addresses</
option>. The key name must match the
name of a key statement in the file. The port number
specifies the port to connect to. If an <
option>addresses</
option>
clause is supplied these addresses will be used instead of
the server name. Each address can take an optional port.
If an <
option>source-address</
option> or <
option>source-address-v6</
option>
of supplied then these will be used to specify the IPv4 and IPv6
source addresses respectively.
The <
option>key</
option> statement begins with an identifying
string, the name of the key. The statement has two clauses.
<
option>algorithm</
option> identifies the encryption algorithm
for <
command>rndc</
command> to use; currently only HMAC-MD5
supported. This is followed by a secret clause which contains
the base-64 encoding of the algorithm's encryption key. The
base-64 string is enclosed in double quotes.
There are two common ways to generate the base-64 string for the
secret. The BIND 9 program <
command>rndc-confgen</
command>
be used to generate a random key, or the
<
command>mmencode</
command> program, also known as
<
command>mimencode</
command>, can be used to generate a
string from known input. <
command>mmencode</
command> does
ship with BIND 9 but is available on many systems. See the
EXAMPLE section for sample command lines for each.
default-server localhost;
addresses { localhost port 5353; };
secret "6FMfj43Osz4lyb24OIe2iGEz9lf1llJO+lz";
secret "R3HI8P6BKw9ZwXwN3VZKuQ==";
In the above example, <
command>rndc</
command> will by
the server at localhost (127.0.0.1) and the key called samplekey.
Commands to the localhost server will use the samplekey key, which
must also be defined in the server's configuration file with the
same name and secret. The key statement indicates that samplekey
uses the HMAC-MD5 algorithm and its secret clause contains the
base-64 encoding of the HMAC-MD5 secret enclosed in double quotes.
If <
command>rndc -s testserver</
command> is used then <
command>rndc</
command> will
connect to server on localhost port 5353 using the key testkey.
To generate a random secret with <
command>rndc-confgen</
command>:
<
para><
userinput>rndc-confgen</
userinput>
A complete <
filename>
rndc.conf</
filename> file, including
randomly generated key, will be written to the standard
output. Commented-out <
option>key</
option> and
<
option>controls</
option> statements for
To generate a base-64 secret with <
command>mmencode</
command>:
<
para><
userinput>echo "known plaintext for a secret" | mmencode</
userinput>
<
title>NAME SERVER CONFIGURATION</
title>
The name server must be configured to accept rndc connections and
to recognize the key specified in the <
filename>
rndc.conf</
filename>
file, using the controls statement in <
filename>
named.conf</
filename>.
See the sections on the <
option>controls</
option> statement in the
BIND 9 Administrator Reference Manual for details.
<
refentrytitle>rndc</
refentrytitle><
manvolnum>8</
manvolnum>
<
refentrytitle>rndc-confgen</
refentrytitle><
manvolnum>8</
manvolnum>
<
refentrytitle>mmencode</
refentrytitle><
manvolnum>1</
manvolnum>
<
citetitle>BIND 9 Administrator Reference Manual</
citetitle>.
<
para><
corpauthor>Internet Systems Consortium</
corpauthor>