Hi,<br><br>I have a diskless frontend that is working 100%<br><br>I decided today to move my DHCP server to my Backup/Server off my DD-WRT linksys router.<br><br>here is my dhcpd.conf file I wrote:<br>ddns-update-style interim;<br>
ignore client-updates;<br><br>subnet <a href="http://192.168.0.0">192.168.0.0</a> netmask <a href="http://255.255.255.0">255.255.255.0</a> {<br>&nbsp; range <a href="http://192.168.0.100">192.168.0.100</a> <a href="http://192.168.0.199">192.168.0.199</a>;<br>
&nbsp; default-lease-time 86400;<br>&nbsp; max-lease-time 86400;<br>&nbsp; option routers <a href="http://192.168.0.1">192.168.0.1</a>;<br>&nbsp; option ip-forwarding off;<br>&nbsp; option broadcast-address <a href="http://192.168.0.255">192.168.0.255</a>;<br>
&nbsp; option subnet-mask <a href="http://255.255.255.0">255.255.255.0</a>;<br>&nbsp; option ntp-servers <a href="http://192.168.0.1">192.168.0.1</a>;<br>&nbsp; option domain-name-servers <a href="http://192.168.0.1">192.168.0.1</a>;<br>
<br>&nbsp; #static leases<br>&nbsp; host mythfe {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hardware ethernet 00:13:D4:77:B9:61;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fixed-address <a href="http://192.168.0.203">192.168.0.203</a>;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>&nbsp; host maincomp {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hardware ethernet 00:0C:76:5B:B9:E1;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fixed-address <a href="http://192.168.0.200">192.168.0.200</a>;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br><br>&nbsp; #diskless boot config<br>&nbsp; allow booting;<br>&nbsp; allow bootp;<br>&nbsp; class &quot;pxeclients&quot; {<br>&nbsp;&nbsp;&nbsp;&nbsp; match if substring(option vendor-class-identifier, 0, 9) = &quot;PXEClient&quot;;<br>
&nbsp;&nbsp;&nbsp;&nbsp; next-server <a href="http://192.168.0.202">192.168.0.202</a>;<br>&nbsp;&nbsp;&nbsp;&nbsp; filename &quot;linux-install/pxelinux.0&quot;;<br>&nbsp; }<br>}<br><br>Now for DHCP this works great, the diskless box gets 203.&nbsp; BUT when mythfe starts it doesn&#39;t have the right hostname (defaults to localhost).&nbsp; Therefore I lost all my settings in Mythfrontend.<br>
<br>So, how do i set the hostname to &#39;mythfe&#39; when the box graps an IP.<br><br>Thanks,<br>Mitchell<br>