1# DHCPv4 subnet declaration config 2 3# parameter which will be changed in subnet 4default-lease-time 1800; 5 6# DHCPv4 subnet declaration 7subnet 10.5.5.0 netmask 255.255.255.224 { 8 # at least one pool is required 9 pool { 10 range 10.5.5.5 10.5.5.10; 11 } 12 # authorize here 13 authoritative; 14 option domain-search "example.com", "example.org"; 15 default-lease-time 3600; 16 ignore-client-uids false; 17} 18 19