|
@@ -4,7 +4,7 @@
|
|
|
|
|
|
{ "Dhcp6":
|
|
{ "Dhcp6":
|
|
|
|
|
|
-{
|
|
+{
|
|
# Kea is told to listen on eth0 interface only.
|
|
# Kea is told to listen on eth0 interface only.
|
|
"interfaces": [ "eth0" ],
|
|
"interfaces": [ "eth0" ],
|
|
|
|
|
|
@@ -28,16 +28,31 @@
|
|
|
|
|
|
# The following list defines subnets. Each subnet consists of at
|
|
# The following list defines subnets. Each subnet consists of at
|
|
# least subnet and pool entries.
|
|
# least subnet and pool entries.
|
|
- "subnet6": [
|
|
+ "subnet6": [
|
|
{ "pool": [ "2001:db8:1::/80" ],
|
|
{ "pool": [ "2001:db8:1::/80" ],
|
|
"subnet": "2001:db8:1::/64" },
|
|
"subnet": "2001:db8:1::/64" },
|
|
{ "pool": [ "2001:db8:2::/80" ],
|
|
{ "pool": [ "2001:db8:2::/80" ],
|
|
- "subnet": "2001:db8:2::/64" },
|
|
+ "subnet": "2001:db8:2::/64" },
|
|
{ "pool": [ "2001:db8:3::/80" ],
|
|
{ "pool": [ "2001:db8:3::/80" ],
|
|
"subnet": "2001:db8:3::/64" },
|
|
"subnet": "2001:db8:3::/64" },
|
|
{ "pool": [ "2001:db8:4::/80" ],
|
|
{ "pool": [ "2001:db8:4::/80" ],
|
|
"subnet": "2001:db8:4::/64" } ]
|
|
"subnet": "2001:db8:4::/64" } ]
|
|
-}
|
|
+},
|
|
|
|
|
|
|
|
+# The following configures logging. It assumes that warning messages
|
|
|
|
+# will be logged to stdout.
|
|
|
|
+"Logging": {
|
|
|
|
+ "loggers": [
|
|
|
|
+ {
|
|
|
|
+ "name": "kea",
|
|
|
|
+ "output_options": [
|
|
|
|
+ {
|
|
|
|
+ "output": "stdout"
|
|
|
|
+ }
|
|
|
|
+ ],
|
|
|
|
+ "severity": "WARN"
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+}
|