Commit 6350cf82 by Heechul Kim

added dhcpd.conf

parent d4c54f78
Showing with 25 additions and 0 deletions
# dhcpd.conf for a fai installation server
# replace faiserver with the name of your install server
authoritative;
deny unknown-clients;
option dhcp-max-message-size 2048;
use-host-decl-names on;
#always-reply-rfc1048 on;
subnet 192.168.24.0 netmask 255.255.255.0 {
option routers 192.168.24.4;
option domain-name "";
option domain-name-servers 164.124.101.2;
# option time-servers porch; # RFC868 time protocol (port 37)
option ntp-servers porch; # RFC1035 network time protocol (port 123)
server-name porch;
next-server porch;
#filename "fai/pxelinux.0";
#filename "fai/lpxelinux.0";
if exists user-class and option user-class = "iPXE" {
filename "http://192.168.24.50:8000/api/fai/boot/";
} else {
filename "fai/undionly.kpxe";
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment