Configuration file for router advertisement daemon
Description:
This file describes how the router advertisement packet must be constructed for each of the interfaces.
Each line in the file describes a network interface.
Fields are separated by a colon (:), and
each field contains one capability description. Lines may be
concatenated by using the backslash (\) character.
The comment marker is the pound sign (#).
Capabilities
Capabilities describe the value to be filled into ICMPv6 router
advertisement messages and to control rtadvd behavior.
Therefore, you are encouraged to read IETF neighbor discovery documents
if you would like to modify the sample configuration file.
Note:
Almost all items have default values. If you omit an item, the default value of the item is used.
The following items control the interval of sending router advertisements:
- maxinterval
- The maximum time (in seconds) allowed between sending unsolicited multicast router advertisements.
The value must be be no less than 4 seconds and no greater than 1800 seconds.
The default value is 600.
- mininterval
- The minimum time (in seconds) allowed between sending unsolicited multicast router advertisements.
Its value must be no less than 3 seconds and no greater than .75 * the value of maxinterval.
The default value is one third of the value of maxinterval.
The following items are for the ICMPv6 router advertisement message header:
- chlim
- The number value for Cur Hop Limit field. The default value is 64.
- raflags
- A number specifying the Flags field in the router advertisement message header.
Bit 7 (0x80) means the Managed address configuration flag bit, and bit 6
(0x40) means the Other stateful configuration flag bit. The default value is 0.
- rltime
- The number of seconds specifying the Router lifetime field. Its value must be no greater than 3600000.
The default value is 1800.
- rtime
- The number of milliseconds specifying the Reachable time field.
The default value is 0, which means unspecified by this router.
- retrans
- The number of milliseconds specifying the Retrans Timer field.
The default value is 0, which means unspecified by this router.
The following items are for the ICMPv6 prefix information option, which is attached to the router advertisement header:
- addrs
- The number of prefixes. Its default is 0, so it must explicitly be set
to positive values if you want to specify any prefix information options.
If its value is 0, rtadvd looks up the system routing table
and advertises the prefixes corresponding to interface routes on the interface.
If its value is more than 1, you must specify the index of the prefix for each
item below. Indexes vary from 0 to N - 1, where N
is the value of addrs. Each index must follow the name of each item
(e.g., prefixlen2).
- prefixlen
- A number specifying the Prefix length field. The default value is 64.
- pinfoflags
- A number specifying the Flags field in prefix information option.
Bit 7 (0x80) means the On-link flag bit, and bit 6 (0x40)
means the Autonomous address-configuration flag bit. The default value is
0xc0; that is, both bits are set.
- addr
- A string specifying the address filled into the Prefix field. Since the colon character
(:) is used for IPv6 numeric addresses, the field must be quoted by the
double-quote character .
You can't omit this field if the value of addrs is more than 0.
- vltime
- The number of seconds specifying the Valid lifetime field.
The default value is 2592000 (30 days).
- pltime
- The number of seconds specifying the Preferred lifetime field. The default value is 604800 (7 days).
The following items are for the ICMPv6 MTU option, which is attached to the router advertisement header:
- mtu
- A number or string that specifies the MTU (maximum transmission unit) field.
If 0 is specified, the option isn't included.
The default value is 0. If the special string auto
is specified for this item, the MTU option is included, and its value is
set to the interface MTU automatically.
The following item controls ICMPv6 source link-layer address option,
which is attached to the router advertisement header:
- nolladdr
- A boolean expression. By default (if nolladdr is not specified),
rtadvd tries to get link-layer address for the interface
from the kernel, and attaches that in the source link-layer address option.
If this capability exists, rtadvd doesn't attach the source
link-layer address option to router advertisement packets.
Based on:
Thomas Narten, Erik Nordmark and W. A. Simpson, Neighbor Discovery for IP version 6 (IPv6),
RFC 2461
Examples:
#
# common definitions.
#
default:\
:raflags#0:rltime#3600:\
:pinfoflags#64:vltime#360000:pltime#360000:mtu#1500:
ether:\
:mtu#1280:tc=default:
#
# interfaces.
#
ef0:\
:addrs#1:\
:addr="3ffe:501:4819:1000::":tc=ether:
ef1:\
:addrs#2:addr0="3ffe:501:4819:2000::":\
:addr1="3ffe:501:4819:3000::":tc=ether: