summaryrefslogtreecommitdiffstats
path: root/dhcp_wizard/scripts/dhcpd.conf.default
blob: 0d3c7ec57754ccf8f714fcbd6df33dfdf43efc53 (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 none;

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";

}