# global dhcpd parameters deny unknown-clients; #disallow unknown connections ddns-update-style none; #disallow dynamic DNS updates allow bootp; #allow bootp requests, thus the dhcp #server will act as a bootp server # which network interface the server will listen on subnet 192.168.1.0 netmask 255.255.255.0 { #the zeros indicate which range } #of addresses are allowed to connect #set of parameters common to all clients group { option broadcast-address 192.168.1.255; option domain-name "test.net"; option domain-name-servers dns.test.net; option routers router.test.net; option subnet-mask 255.255.255.0; #set of parameters specific to one particular host host client.test.net { hardware ethernet CC:CC:CC:CC:CC:CC; fixed-address 192.168.1.10; option host-name "client"; #name of the host (if the fixed address #doesn't resolve to a simple name) filename "ofwboot.xcf"; #name of the bootloader or kernel to #download via tftp next-server tftpserver.test.net; #which machine to tftp filename from option root-path "/export/client/root"; #the path on the NFS server. #typically the client assumes the #nfsserver = tftpserver #always-reply-rfc1048 true; #this is needed if your client isn't #getting the options you set and #the log says "(non-rfc1048)" #next68k machines require this to be #set false } #you may paste another "host" entry here for additional clients on this network }