blob: c21a7018858975ceb5f1914cd676814296932a89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{
# spawning declaration config
# authoritative is mandatory
"Dhcp6": {
"option-def": [
# options
{
"space": "dhcp6",
"name": "mysystem",
"code": 1250,
"type": "string"
},
{
"space": "dhcp6",
"name": "myversion",
"code": 1251,
"type": "uint16"
}
],
"client-classes": [
# superclass declaration
/// Spawning classes are not supported by Kea
/// Reference Kea #248
/// spawn with: option dhcp6.mysystem
{
"name": "foobar",
"option-data": [
{
"space": "dhcp6",
"name": "myversion",
"code": 1251,
"data": "1"
}
]
}
]
}
}
|