dhcpd.conf exampl:
ddns-update-style none;
default-lease-time 21600;
max-lease-time 21600;
option subnet-mask 255.255.255.0;
option broadcast-address 255.255.255.0;
option routers 192.168.0.15;
option domain-name-servers 192.114.47.52;
option domain-name "my-domain.com";
option root-path "192.168.0.8:/opt/ltsp/i386";
option option-128 code 128=string;
option option-129 code 129=text;
option nis-domain "domain.org";
shared-network WORKSTATIONS {
subnet 192.168.0.0 netmask 255.255.255.0 {
}
}
group {
use-host-decl-names on;
option log-servers 192.168.0.8;
host ws004 {
hardware ethernet 00:50:FC:E4:13:48;
fixed-address 192.168.0.114;
filename "/lts/vmlinuz-2.4.22-ltsp-22";
}
host ws006 {
hardware ethernet 00:00:B4:90:9A:C0;
fixed-address 192.168.1.116;
filename "/lts/vmlinuz-2.4.22-ltsp-1";
}
host ws007 {
hardware ethernet 00:50:FC:40:03:2B;
fixed-address 192.168.1.117;
filename "/lts/vmlinuz-2.4.22-ltsp-1";
}
host ws008 {
hardware ethernet 00:50:FC:E4:44:28;
fixed-address 192.168.1.118;
filename "/lts/vmlinuz-2.4.22-ltsp-1";
}
}
|