blob: c2135639b99ecbe99fc743aef04f4629d0d551eb (
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
|
# default file for dhcpd
# replace __ip__ by the IP adress of the server (same server for
# all services in this config file)
server-identifier __hname__;
default-lease-time 36000;
max-lease-time 144000;
ddns-update-style ad-hoc;
subnet __net__ netmask __mask__{
range __rng1__ __rng2__;
option domain-name "__dname__";
option domain-name-servers __ip__;
option nis-servers __ip__;
option lpr-servers __ip__;
option netbios-name-servers __ip__;
option routers __ip__;
option subnet-mask __mask__;
option time-servers __ip__;
ddns-updates on;
ddns-domainname "__dname__";
ddns-rev-domainname "in-addr.arpa";
}
|