Hello all,<br><br>I have been reading the man page and digging through online documentation all day now and I can't seem to get my configuration to work. I would really appreciate some help.<br><br>I have 4 groups of machines. The first group have hard set IP addresses (172.31.200.x), the second are developer systems (devnet; 172.31.201.x), third group is PXE booted 64bit machines (aanodes; 172.31.202.x), and the fourth group is PXE booted 32bit machines (hpnodes; 172.31.203.x). There are reasons for having the IP ranges split like this. 172.31.200.2 is the BIND/DHCP/TFTP server.<br>
<br>Below is my dhcpd.conf file as built in my testing environment with virtual machines (hence why the macs all look similar and the domain is project.local). Whenever I boot any of the VM's the IP always lands in the 172.31.202.x IP address range. I am sure I have goofed something up in the below configuration, but I have tried so many things recently that I just tweaked based on the errors until I had a config file that dhcpd seemed to like. It doesn't work the way I want it to, but it doesn't throw errors either. :-)<br>
<br>Any help is appreciated.<br><br>Thanks!<br>~Stack~<br><br>--------------------------------------------------------------------------------------<br>option domain-name "project.local";<br>option domain-name-servers 172.31.200.2;<br>
authoritive;<br>ddns-update-style none;<br><br>shared-network project.local{<br>subnet 172.31.200.0 netmask 255.255.255.0 {}<br>subnet 172.31.201.0 netmask 255.255.255.0 {<br> default-lease-time 86400;<br> max-lease-time 86400;<br>
deny unknown-clients;<br> range 172.31.201.1 172.31.201.254;<br> group "devnet" {<br> host dev001.project.local { hardware ethernet 08:00:27:11:4B:E8; }<br> } <br>}<br>subnet 172.31.202.0 netmask 255.255.255.0 {<br>
default-lease-time 86400;<br> max-lease-time 86400;<br> deny unknown-clients;<br> filename "pxelinux.0";<br> next-server 172.31.200.2;<br> range 172.31.202.1 172.31.202.254;<br> group "aanodes" {<br>
host aa001.project.local { hardware ethernet 08:00:27:15:BF:F5; }<br> } <br>}<br>subnet 172.31.203.0 netmask 255.255.255.0 {<br> default-lease-time 86400;<br> max-lease-time 86400;<br> deny unknown-clients;<br>
filename "pxelinux.0";<br> next-server 172.31.200.2;<br> range 172.31.203.1 172.31.203.254;<br> group "hpnodes" {<br> host hp001.project.local { hardware ethernet 08:00:27:15:A3:1D; }<br>
} <br>}<br>}<br>