| 1 |
# dhcpd.conf for fai
|
| 2 |
# replace faiserver with the name of your install server
|
| 3 |
|
| 4 |
deny unknown-clients;
|
| 5 |
option dhcp-max-message-size 2048;
|
| 6 |
use-host-decl-names on;
|
| 7 |
#always-reply-rfc1048 on;
|
| 8 |
|
| 9 |
filename "pxelinux.0";
|
| 10 |
|
| 11 |
# the server from which to load the initial boot file if different
|
| 12 |
# from server-name (if the DHCP server is not also the TFTP server)
|
| 13 |
#next-server faiserver;
|
| 14 |
|
| 15 |
|
| 16 |
subnet 192.168.1.0 netmask 255.255.255.0 {
|
| 17 |
option routers 192.168.1.250;
|
| 18 |
option domain-name "beowulf";
|
| 19 |
option domain-name-servers 192.168.1.250;
|
| 20 |
option time-servers faiserver;
|
| 21 |
option ntp-servers faiserver;
|
| 22 |
server-name "faiserver";
|
| 23 |
}
|
| 24 |
|
| 25 |
# perl -ane ' {print "host atom {hardware ethernet $1;fixed-address atom}";}'
|
| 26 |
host demohost {hardware ethernet 0:2:a3:b5:c5:41;fixed-address demohost;}
|