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 option domain-search "example.com", "example.org"; 13 default-lease-time 3600; 14 ignore-client-uids false; 15} 16 17