1# host declaration with client-identfiers config 2 3# subnet4 declaration 4subnet 10.5.5.0 netmask 255.255.255.224 { 5 range 10.5.5.5 10.5.5.10; 6} 7 8# recommended when using dhcp-client-identifier options 9ignore-client-uids false; 10 11# host declarations 12host test1 { 13 uid 01:02:03:04:05:0a:0b:0c:0d:0e:0f; 14 option domain-search "example.com", "example.org"; 15 default-lease-time 1800; 16 fixed-address 10.5.5.1, 10.10.10.10; 17} 18 19host test2 { 20 hardware ethernet 00:07:0E:36:48:19; 21 fixed-address 10.5.5.2; 22} 23 24host test3 { 25 hardware fddi 00:07:0E:36:48:19; 26 fixed-address 10.10.10.1; 27} 28 29subnet 10.10.10.0 netmask 255.255.255.224 { } 30