.\" $Id: dhcp6s.conf.5,v 1.1.1.1 2006/12/04 00:45:30 Exp $ .\" .\" Copyright (C) International Business Machines Corp., 2003 .\" All rights reserved. .\" .\" Redistribution and use in source and binary forms, with or without .\" modification, are permitted provided that the following conditions .\" are met: .\" 1. Redistributions of source code must retain the above copyright .\" notice, this list of conditions and the following disclaimer. .\" 2. Redistributions in binary form must reproduce the above copyright .\" notice, this list of conditions and the following disclaimer in the .\" documentation and/or other materials provided with the distribution. .\" 3. Neither the name of the project nor the names of its contributors .\" may be used to endorse or promote products derived from this software .\" without specific prior written permission. .\" .\" THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE .\" ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" .TH dhcp6s.conf 5 "17 March 2003" "dhcp6s.conf" "Linux System Manager's Manual" .SH NAME dhcp6s.conf \- configuration file of the DHCPv6 server daemon, dhcp6s .SH DESCRIPTION .B dhcp6s.conf contains the configuration information of addresses, prefixes, or various network configuration parameters for each of the interfaces. The network configuration parameters can be described globally for all of the interfaces. The default address preferred life time is 36000 seconds; the default address valid life time is 72000 seconds if they are not defined in any declaration. The specific declaration order is interface, link, host; within link the more specific declaration is pool. The interface definitions are described in the following form: .PP .nf .B \tinterface\ .B \t{ .B \t\t[declarations]; .B \t}; .fi where each of the declarations could be of type link, group, or host. Each declaration and the statements within each of these declarations must be terminated by a semicolon. Additional details of the declarations are specified below. .PP .BI DECLARATIONS .PP .nf .B interface\ .B { .B \t[declarations]; .B }; .fi An interface declaration is used to inform the DHCPv6 server that the links and hosts declared within it are connected to the same network segment. Common network parameters for this network segment can be defined within the interface declaration. .nf .B link\ .B { .B \t[declarations]; .B }; .fi A link declaration is used to provide the DHCPv6 server the IPv6 assgined address ranges, prefixes, and hosts. Common network parameters for this link can be defined within the link declaration. .nf .B group .B { .B \t[declarations]; .B }; .fi A group declaration is used to group a list of declarations together to define the common network parameters. These network parameters are valid within this declaration only. Declarations can be one of the following types: interface, link, pool, or host. .nf .B pool .B { .B \t[declarations]; .B }; .fi The pool declaration is used to declare an address pool from which IPv6 address can be allocated, with its own permit to control client access and its own declaration in which you can declare pool-specific network parameters. .nf .B host\ .B { .B \t[duid\ ]; .B \t[iaidinfo\ {}]; .B \t[address\ {}]; .B \t[prefix\ /]; .B \t[declarations]; .B }; .fi This declaration allows administrators to describe the addresses, prefixes, and network configuration parameters for this host. As for this declaration, the DHCP Unique Identifier (DUID), Identity Association Identifier (IAID), and addresses must be specified. The host declaration is used to do Static Address Assginment for a particular DHCPv6 client. .nf .B address .B { .B \t[/]; .B \t[prefer-life-time\ ]; .B \t[valid-life-time\ ]; .B }; .fi This statement allows administrators to specify the address for the host. Preferred Lifetime and Valid Lifetime also can be set in this statement. This statement is valid only in host {} declarations. .nf .B prefix\ /; .fi This statement allows administrators to specify the prefix. This parameter is needed when configuring dhcp6s as the Delegation Router for the Prefix Delegation. dhcp6s assigns the specified prefixes to the requesting routers. .nf .B relay\ /; .fi This statement specifies the prefix that the relay agent will put in the link address field of the RELAY-FORW message to indicate the link the client is +attached to. If the link-address matches this prefix, this link declaration will be used. This statement is only valid in the link declaration. .nf .B iaidinfo .B { .B \t[iaid\ ]; .B \t[renew-time\ ]; .B \t[rebind-time\ ]; .B }; .fi This statement allows administrators to describe the information for this IAID. This statement is only valid in host {} declarations. iaid is required; renew-time and rebind time are optional in this statement. .nf .B range\ \ to\ /; .fi This statement allows adminstrators to use "range" and "to" keywords and prefix length to specify an address range. For each range not more than one of the unassigned addresses will be assgined to the requested client. .nf .B duid\ ; .fi DUID is a DHCP Unique Identifier for a DHCP participant. Using this option, the administrator can specify the DUID of this DHCPv6 client. The duid statement is valid only in host {} declarations. .nf .BI iaid\ ; .fi IAID is a Identity Association Identifier. IA is a collection of addresses assigned to a client. Using this option, the administrator can specify the IAID in iaidinfo for a host declaration. .nf .BI renew-time\ ; .fi This statement allows administrators to specify the RenewTime (T1). The recommended value for RenewTime is .5 times the shortest preferred lifetime of the address in the IA, if the value is not defined. .nf .BI rebind-time\ ; .fi This statement allows administrators to specify the RebindTime (T2). The recommended value for RenewTime is .8 times the shortest preferred lifetime of the address in the IA, if the value is not defined. .nf .BI prefer-life-time\ ; .fi This statement allows administrators to specify the Preferred Life Time for each address. .nf .BI valid-life-time\ ; .fi This statement allows administrators to specify the Valid Life Time for each address. .nf .BI option\ dns_server\ ; .fi This statement allows administrators to specify the DNS servers. .B send\