55784e2d289b8f86ee856f4aaaff2f68171d4df4
[automated-distro-installer] / fai / config / files / etc / dhcp / dhcpd.conf / FAISERVER
1 # dhcpd.conf for a fai installation server
2 # replace faiserver with the name of your install server
3
4 ignore-client-uids on;
5 deny unknown-clients;
6 option dhcp-max-message-size 2048;
7 use-host-decl-names on;
8 #always-reply-rfc1048 on;
9
10 subnet 192.168.33.0 netmask 255.255.255.0 {
11 option routers 192.168.33.1;
12 option domain-name "fai.example";
13 option domain-name-servers 192.168.33.250;
14 option time-servers faiserver;
15 # option ntp-servers faiserver;
16 server-name faiserver;
17 next-server faiserver;
18 filename "fai/pxelinux.0";
19 allow unknown-clients;
20 pool {
21 range 192.168.33.100 192.168.33.150;
22 }
23 }
24
25 # generate a lot of entries with:
26 # perl -e 'for (1..10) {printf "host client%02s {hardware ethernet XXX:$_;fixed-address client%02s;}\n",$_,$_;}'
27 # then replace XXX with the hardware addresses of your clients