summaryrefslogtreecommitdiff
path: root/keama/tests/groupsubnet4.in4
diff options
context:
space:
mode:
Diffstat (limited to 'keama/tests/groupsubnet4.in4')
-rw-r--r--keama/tests/groupsubnet4.in424
1 files changed, 24 insertions, 0 deletions
diff --git a/keama/tests/groupsubnet4.in4 b/keama/tests/groupsubnet4.in4
new file mode 100644
index 00000000..a7a199dc
--- /dev/null
+++ b/keama/tests/groupsubnet4.in4
@@ -0,0 +1,24 @@
+# Group with DHCPv4 subnet declaration config
+
+# parameter which will be changed in subnet
+default-lease-time 1200;
+
+# group declaration
+group foobar {
+ # option
+ option domain-search "example.com", "example.org";
+
+ # parameters
+ default-lease-time 3600;
+ ignore-client-uids false;
+
+ # DHCPv4 subnet declaration
+ subnet 10.5.5.0 netmask 255.255.255.224 {
+ # at least one pool is required
+ pool {
+ range 10.5.5.5 10.5.5.10;
+ }
+ interface "en0";
+ default-lease-time 1800;
+ }
+}