/etc/dhcp/minimalistic-dhcpd.conf

# dhcpd.conf
# Sample configuration file for ISC dhcpd
#
authoritative;
# Network parameters

option subnet-mask 255.255.255.0;

option domain-name "my.zone.tld";
#option domain-name-servers ns1.my.zone.tld, ns2.my.zone.tld;
option domain-name-servers vip.my.zone.tld;
option domain-search "my.zone.tld", "my.another.tld";
option routers 10.0.0.254;
option broadcast-address 10.0.0.255;
option ntp-servers pool.ntp.org;

option nis-domain nisdomain;

option nis-servers nis1.my.zone.tld, nis2.my.zone.tld;

# lease and log parameters
default-lease-time 3600;
max-lease-time 86400;
ping-check on;
log-facility local1;
include "/etc/dhcpd/dhcp-subnet.include";

this part configure the files:

yp.conf, ntp.conf and resolv.conf

yes we have a VIP

search in differents zone

1h lease

1 day max

verify that the ip is realy free

use syslog with local1 as facility

include this file