# # DHCP Server Configuration file. # see /usr/share/doc/dhcp*/dhcpd.conf.sample # ddns-update-style interim; ignore client-updates; # Define time zone option option tcode code 101 = text; option tcode "America/Denver"; subnet 192.168.1.0 netmask 255.255.255.0 { allow booting; allow bootp; option routers 192.168.1.1; option domain-name "graphics-muse.org"; option subnet-mask 255.255.255.0; option ntp-servers 207.210.74.166; pool { # PXE-specific configuration directives... next-server 192.168.1.101; filename "pxelinux.0"; # option domain-name-servers 192.168.1.1; # option time-offset -18000; # Eastern Standard Time range dynamic-bootp 192.168.1.200 192.168.1.254; default-lease-time 21600; max-lease-time 43200; deny unknown-clients; # MythBox host mythbox { hardware ethernet 00:40:63:CC:17:34; fixed-address 192.168.1.102; option host-name mythbox; } } }