# dhcpd.conf created by greg lawler # http://www.zinkwazi.com # # file location: /etc/dhcpd.conf # you also need to `touch /var/lib/dhcp/dhcpd.leases` this # file needs to be there before dhcpd will start... # # don't forget that you need a submet declaration for the network # that the ethernet card is on, even if you don't have a scope for # that network. # # configuration for isc dhcp server (ISC DHCP v2.0) # # configuration by greg lawler 1:46am july 7 1999 # modified 23:31 september 12 1999 by gbl # modified 13:25 June 18 2001 by gbl # # QUICK REFERENCE TIME CHART # (more that you ever wanted to know about time in seconds) # # DAYS SECONDS # 1 86400 # 2 172800 # 3 259200 # 4 345600 # 5 432000 # 6 518400 # ############################################################## ############################################################## ### global definitions common to all supported networks... ############################################################## ############################################################## option domain-name "zinkwazi.com"; option domain-name-servers 63.147.60.1, 63.147.60.55, 216.111.65.217; option subnet-mask 255.255.0.0; # lease time in seconds (3 days and 5 days) default-lease-time 259200; max-lease-time 518400; option nis-domain "zinkwazi.com"; option nis-servers 63.147.60.2; # WINS server address and info for microsoft win 3x,9x & NT option netbios-name-servers 10.10.10.10; option netbios-dd-server 10.10.10.10; option netbios-node-type 8; ############################################################## ############################################################## ### local subnet definitions ... ############################################################## ############################################################## ################################# ### IT network 10.10.0.0 ### ################################# subnet 10.10.0.0 netmask 255.255.0.0 { range 10.10.20.1 10.10.25.1; range dynamic-bootp 10.10.6.1 10.10.6.100; option broadcast-address 10.10.0.255; option routers 10.10.0.254; default-lease-time 259200; max-lease-time 518400; } ### static ip numbers (these should not be in the dynamic range) host snappy { hardware ethernet 00:c0:b6:07:bc:b3; fixed-address 10.10.10.100; } ################################# ### labs network 10.11.0.0 ### ################################# subnet 10.11.0.0 netmask 255.255.0.0 { range 10.11.20.1 10.11.25.1; option broadcast-address 10.11.0.255; option routers 10.11.0.254; default-lease-time 259200; max-lease-time 518400; } ### static ip numbers (these should not be in the dynamic range) host xxxxx { hardware ethernet 08:00:07:26:c0:a5; fixed-address 10.11.5.1; } ################################# ### library network 10.20.0.0 ### ################################# subnet 10.20.0.0 netmask 255.255.0.0 { range 10.20.20.1 10.20.25.1; option broadcast-address 10.20.0.255; option routers 10.20.0.254; default-lease-time 259200; max-lease-time 518400; } ### static ip numbers (these should not be in the dynamic range) host LABPRINT { hardware ethernet 00:60:b0:99:2c:e4; fixed-address 10.20.10.3; } ################################# ### fac network 10.21.0.0 ### ################################# subnet 10.21.0.0 netmask 255.255.0.0 { range 10.21.20.1 10.21.25.1; option broadcast-address 10.21.0.255; option routers 10.21.0.254; default-lease-time 259200; max-lease-time 518400; } ### static ip numbers (these should not be in the dynamic range) host xxxxx { hardware ethernet 08:00:07:26:c0:a5; fixed-address 10.21.5.1; } ################################### ### fac/staff network 10.22.0.0 ### ################################### subnet 10.22.0.0 netmask 255.255.0.0 { range 10.22.20.1 10.22.25.1; option broadcast-address 10.22.0.255; option routers 10.22.0.254; default-lease-time 259200; max-lease-time 518400; } ### static ip numbers (these should not be in the dynamic range) host MATH_HP { hardware ethernet 00:10:83:41:5e:d7; fixed-address 10.22.5.1; } host ATH_HP { hardware ethernet 08:00:09:71:b8:55; fixed-address 10.22.5.2; } host PSYCH_PRINTER { hardware ethernet 08:00:09:72:0c:f8; fixed-address 10.22.5.3; } host EDUCATION_HP { hardware ethernet 08:00:09:2e:3d:76; fixed-address 10.22.5.4; } host MUSIC_HP { hardware ethernet 08:00:09:c1:e6:f5; fixed-address 10.22.5.5; } host KSC_HP1 { hardware ethernet 08:00:09:aa:f4:cf; fixed-address 10.22.5.6; } ################################# ### admin network 10.23.0.0 ### ################################# subnet 10.23.0.0 netmask 255.255.0.0 { range 10.23.20.1 10.23.25.1; option broadcast-address 10.23.0.255; option routers 10.23.0.254; # WINS server address and info for microsoft win 3x,9x & NT option netbios-name-servers 10.23.10.2; option netbios-dd-server 10.23.10.2; option netbios-node-type 8; default-lease-time 518400; max-lease-time 518400; } ### static ip numbers (these should not be in the dynamic range) host oca_dev { hardware ethernet 00:10:83:1a:6c:0d; fixed-address 10.23.5.1; }