2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 05:55:28 +00:00

[2949] Doc updated for inf-request

This commit is contained in:
Tomek Mrugalski
2015-01-28 15:50:43 +01:00
parent 916efc406a
commit 2632fbb0c5
4 changed files with 65 additions and 4 deletions

View File

@@ -0,0 +1,23 @@
# A very simply stateless configuration that provides DNS servers information
# to all clients, regardless of their point of attachment.
#
# It is also possible to specify options on a per subnet basis
# in the same way as in stateful mode.
#
{
"Dhcp6": {
"interfaces": [ "ethX" ],
# This is the list of options that will be granted to all clients that ask.
"option-data": [ {
"name": "dns-servers",
"data": "2001:db8::1, 2001:db8::2"
} ],
# Kea 0.9.1 requires lease-database to be specified, even it is not used.
# In stateless mode, only options are granted, not addresses or prefixes, so
# there will be no leases (unless stateless and stateful mode is used together).
"lease-database": { "type": "memfile" }
}
}