blob: ec2e20c2e75c27ad4f84d397c4df32617c1b87c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# default file for dhcpd
# replace __ip__ by the IP adress of the server (same server for
# all services in this config file)
default-lease-time 36000;
max-lease-time 144000;
ddns-update-style ad-hoc;
not authoritative;
subnet __net__ netmask __mask__{
range __rng1__ __rng2__;
option domain-name "__dname__";
option domain-name-servers __dns__;
option routers __gateway__;
option subnet-mask __mask__;
ddns-updates on;
ddns-domainname "__dname__";
ddns-rev-domainname "in-addr.arpa";
}
|