summaryrefslogtreecommitdiff
path: root/keama/tests/groupsubnet6.in6
diff options
context:
space:
mode:
Diffstat (limited to 'keama/tests/groupsubnet6.in6')
-rw-r--r--keama/tests/groupsubnet6.in627
1 files changed, 27 insertions, 0 deletions
diff --git a/keama/tests/groupsubnet6.in6 b/keama/tests/groupsubnet6.in6
new file mode 100644
index 00000000..be30b786
--- /dev/null
+++ b/keama/tests/groupsubnet6.in6
@@ -0,0 +1,27 @@
+# Group with DHCPv6 subnet declaration config
+
+# authoritative is mandatory
+authoritative;
+
+# parameter which will be changed in subnet
+default-lease-time 1200;
+
+# group declaration
+group foobar {
+ # option
+ option dhcp6.domain-search "example.com", "example.org";
+
+ # parameters
+ default-lease-time 3600;
+
+ # DHCPv4 subnet declaration
+ subnet6 2001::/64 {
+ # at least one pool is required
+ pool6 {
+ range6 2001::100 2001::200;
+ }
+ interface "bar";
+ default-lease-time 1800;
+ option dhcp6.lq-relay-data 2001::1, "foobar";
+ }
+}