summaryrefslogtreecommitdiff
path: root/keama/tests/groupsubnet4.in4
blob: ecdaea5f17d751a514b2a13676ffed3cc80c180a (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
# Group with DHCPv4 subnet declaration config

# authoritative is mandatory
authoritative;

# 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;	
    }
}