dhcpd.conf file
# Sample configuration file for ISCD dhcpd
#
# Make changes to this file and copy it to /etc/dhcpd.conf
#
ddns-update-style   none;
default-lease-time    21600;
max-lease-time     21600;

option subnet-mask    255.255.255.0;
option broadcast-address   192.168.10.255;
option routers     192.168.10.22;
option domain-name-servers   192.168.10.1;
option domain-name    "oscc.net";
option root-path    "192.168.10.26:/opt/ltsp/i386";

option option-128 code 128 = string;
option option-129 code 129 = text;

shared-network WORKSTATIONS {
   subnet    192.168.10.0    netmask    255.255.255.0
   {
    range 192.168.10.1 192.168.10.40;
   }
}
group {
   use-host-decl-names    on;
   option log-servers         192.168.10.26;

   host   ltsp {
      hardware ethernet    00:A0:C9:B4:1E:C5;
      fixed-address      192.168.10.39;
      filename          "/lts/vmlinuz-2.4.19-ltsp-1";
   ## option option-128    e4:45:74:68:00:00;  #This is NOT a MAC address
   ## option option-129    "NIC=ne IO=0x300";
   }
   host   si {
      hardware ethernet    00:06:5B:B5:FE:D6;
      fixed-address      192.168.10.1;
      filename          "/lts/vmlinuz-2.4.19-ltsp-1";
   }
}

back