# # "SystemImager" # # Copyright (C) 1999-2001 Brian Elliott Finley # # Copyright (C) 2002 Bald Guy Software # # # This file was created with "mkdhcpserver", which is part of SystemImager. # See http://systemimager.org/ for more information. # # This is an ISC DHCP v3 configuration file. # general options ddns-update-style none; # The "host-checking" option is only used by Curtis Zinzilieta's DHCP patch. # The patch adds functionality to the server for removing specified host # addresses from ranges of available ip addresses at startup. This addresses # the issue where a fixed-address reserved for a specific machine gets # assigned to a different machine. # # If you are running a version of dhcpd with this patch, then you will want # the "host-checking" option below to be uncommented. If you are not running # the patched dhcpd, you should leave it commented out. You can find the patch # and the matched DHCP v3.0 source code here: http://systemimager.org/download/ #host-checking true; option space systemimager; option systemimager.imageserver code 140 = ip-address; option systemimager.log_server_port code 141 = unsigned integer 32; option systemimager.ssh_download_url code 142 = string; # systemimager.imageserver is the IP address of your SystemImager image server option systemimager.imageserver 192.168.0.14; # systemimager.ssh_download_url specifies the URL address of your ssh download # This should be in the format of "http://192.168.0.14/systemimager/boot/". #option systemimager.ssh_download_url "http://192.168.0.14/systemimager/boot/"; # next-server is your network boot server next-server 192.168.0.14; # log-servers option log-servers 192.168.0.14; # systemimager.log_server_port is the port number your log server uses #option systemimager.log_server_port 514; # make network booting the SystemImager autoinstall client possible allow booting; allow bootp; # set lease time to 3 days default-lease-time 259200; max-lease-time 259200; # The following lines will allow netbooting of most ia32 pxe clients # However, they will not allow ia64 clients to netboot. # Refer to the SystemImager manual for details on adding network boot support # for ia64 # clients # what to get to boot the autoinstall client filename "/pxelinux.bin"; option vendor-class-identifier "PXEClient"; option vendor-encapsulated-options 09:0f:80:00:0c:4e:65:74:77:6f:72:6b:20:62:6f:6f:74:0a:07:00:50:72:6f:6d:70:74:06:01:02:08:03:80:00:00:47:04:80:00:00:00:ff; subnet 192.168.0.0 netmask 255.255.255.0 { range 192.168.0.100 192.168.0.150; option domain-name "stilen.com"; option domain-name-servers 192.168.0.60, 63.195.58.123; option routers 192.168.0.60; }