Hi Derek,
Derek Harding wrote:
Hi,
I want to boot both by etherboot and by PXE and I don't want to put a long list of MAC addresses for DHCP to choose from. There used to be a small section one could add to dhcpd.conf to allow the alternative boot process without having to specify MACs but I cannot find it.
I nicked this part:
shared-network WORKSTATIONS {
subnet 192.168.0.0 netmask 255.255.255.0 {
range dynamic-bootp 192.168.0.100 192.168.0.253;
use-host-decl-names on;
option log-servers 192.168.0.254; # trick from Peter Rundle <[EMAIL PROTECTED]>
if substring (option vendor-class-identifier, 0, 9) = "PXEClient"
{
filename "/lts/pxe/pxelinux.bin";
# NOTE: kernels are specified in /tftpboot/lts/pxe/pxelinux.cfg/
}
else
{
filename "/lts/vmlinuz-2.4.9-ltsp";
}
}
}from http://k12ltsp.org/server.html, (adapt to fit your situation), works well.
BR, Gudmund
------------------------------------------------------- This SF.Net email is sponsored by: New Crystal Reports XI. Version 11 adds new functionality designed to reduce time involved in creating, integrating, and deploying reporting solutions. Free runtime info, new features, or free trial, at: http://www.businessobjects.com/devxi/728 _____________________________________________________________________ Ltsp-discuss mailing list. To un-subscribe, or change prefs, goto: https://lists.sourceforge.net/lists/listinfo/ltsp-discuss For additional LTSP help, try #ltsp channel on irc.freenode.net
