blob: 2ab1fe58bf56bbc74d7377feea6d9532a73c2b89 [file] [log] [blame]
Matteo Scandolo4747d292019-08-05 11:50:18 -07001#
2# Sample configuration file for ISC dhcpd for Debian
3#
Matteo Scandolo4747d292019-08-05 11:50:18 -07004
Matteo Scandolo4747d292019-08-05 11:50:18 -07005ddns-update-style none;
6
Matteo Scandolo4747d292019-08-05 11:50:18 -07007option domain-name "example.org";
8option domain-name-servers ns1.example.org, ns2.example.org;
9
10default-lease-time 600;
11max-lease-time 7200;
12
Matteo Scandolo4747d292019-08-05 11:50:18 -070013# This is a very basic subnet declaration.
Matteo Scandolo40e067f2019-10-16 16:59:41 -070014subnet 192.168.0.0 netmask 255.255.0.0 {
15 range 192.168.0.1 192.168.253.254;
16 option routers 192.168.254.254;
17}