First page
Back
Continue
Last page
Summary
Graphic
Sample /etc/dhcpd.conf
allow unknown-clients; # exactly what ???
allow bootp;
default-lease-time 1800; # 30 minutes
max-lease-time 7200; # 2 hours
subnet 192.168.1.0 netmask 255.255.255.0 {
# up to 126 Dynamic Clients
range dynamic-bootp 192.168.1.129 192.168.1.254;
# no effect the default file fetched
# filename "/tftpboot/boot.diskless";
option domain-name-servers 192.168.1.1;
option broadcast-address 192.168.1.255;
option routers 192.168.1.1;
option domain-name "xyz.org";
}
# Host declaration for a Diskless client using bootp
host diskless1 {
hardware ethernet 00:50:56:d4:1b:d7;
fixed-address 192.168.1.128;
# file to get
filename "/tftpboot/boot.diskless";
next-server 192.168.1.10; #the server from where to get the file
# option domain-name-servers 192.125.5.1;
# option domain-name "abc.com";
}