blob: 9a480fedadca3a2c1117708304cc0730ba9dc98e [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";
Matteo Scandolobfcfbb32020-09-28 14:14:39 -07008# option domain-name-servers ns1.example.org, ns2.example.org;
Matteo Scandolo4747d292019-08-05 11:50:18 -07009
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}