| # | |
| # Sample configuration file for ISC dhcpd for Debian | |
| # | |
| ddns-update-style none; | |
| option domain-name "example.org"; | |
| option domain-name-servers ns1.example.org, ns2.example.org; | |
| default-lease-time 600; | |
| max-lease-time 7200; | |
| # This is a very basic subnet declaration. | |
| subnet 192.168.0.0 netmask 255.255.0.0 { | |
| range 192.168.0.1 192.168.253.254; | |
| option routers 192.168.254.254; | |
| } |