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> 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>
default-lease-time 86400;<br> max-lease-time 86400;<br> option routers <a href="http://192.168.0.1">192.168.0.1</a>;<br> option ip-forwarding off;<br> option broadcast-address <a href="http://192.168.0.255">192.168.0.255</a>;<br>
option subnet-mask <a href="http://255.255.255.0">255.255.255.0</a>;<br> option ntp-servers <a href="http://192.168.0.1">192.168.0.1</a>;<br> option domain-name-servers <a href="http://192.168.0.1">192.168.0.1</a>;<br>
<br> #static leases<br> host mythfe {<br> hardware ethernet 00:13:D4:77:B9:61;<br> fixed-address <a href="http://192.168.0.203">192.168.0.203</a>;<br> }<br> host maincomp {<br> hardware ethernet 00:0C:76:5B:B9:E1;<br>
fixed-address <a href="http://192.168.0.200">192.168.0.200</a>;<br> }<br><br> #diskless boot config<br> allow booting;<br> allow bootp;<br> class "pxeclients" {<br> match if substring(option vendor-class-identifier, 0, 9) = "PXEClient";<br>
next-server <a href="http://192.168.0.202">192.168.0.202</a>;<br> filename "linux-install/pxelinux.0";<br> }<br>}<br><br>Now for DHCP this works great, the diskless box gets 203. BUT when mythfe starts it doesn't have the right hostname (defaults to localhost). Therefore I lost all my settings in Mythfrontend.<br>
<br>So, how do i set the hostname to 'mythfe' when the box graps an IP.<br><br>Thanks,<br>Mitchell<br>