Hi,
I 've set up my network as suggested and the client won't boot.
On the server log you can see a DHCPDISCOVER from the client and DHCPOFFER response from the server but the client never accepts this. if I use an etherboot disc with REQUIRE_VCI_ETHERBOOT set off then the client will boot !
My dhcp config is below, any clues as to what I'm doing wrong ?
Tar
Simon
dhcpd.conf:
ddns-update-style ad-hoc;
not authoritative;
default-lease-time 21600;
max-lease-time 21600;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.0.255;
option routers 192.168.0.254;
option domain-name-servers 192.168.0.254;
option domain-name "cartesian.co.uk";
option root-path "/tftpboot/lts/ltsroot";
class "VCI-Etherboot" {
match if substring (option vendor-class-identifier,0,9)="Etherboot";
}
shared-network 192-168-0 {
use-host-decl-names on;
option log-servers 192.168.0.254;
subnet 192.168.0.0 netmask 255.255.255.0
{
filename "/tftpboot/lts/vmlinuz.3c905";
}
pool
{
range 192.168.0.0 192.168.0.25;
allow members of "VCI-Etherboot";
}
}
-----Original Message-----
From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]]
Sent: Monday, October 01, 2001 3:31 PM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: [Ltsp-discuss] using ltsp on a shared NT & Linux network
Use VCIs (Vendor Class Identifiers). If your LTSP box is using Etherboot
and your non-NT DHCP server is dhcpd v3 do something like the following:
1) Compile Etherboot with REQUIRE_VCI_ETHERBOOT so that it ignores the
NT servers.
2) Something like this tells ISC dhcpd to ignore all except Etherboot.
# Match all
class "VCI-Etherboot" {
match if substring ( option vendor-class-identifier, 0, 9 ) = "Etherboot" ;
}
pool {
range 10.2.253.1 10.2.253.254 ;
deny unknown clients ;
allow members of "VCI-Etherboot" ;
}
You shouldn't need to do anything to the NT DHCP servers.
--
Peter Lister, Sychron Inc. - 1-866-SYCHRON
Intelligent Infrastructure - www.sychron.com
_____________________________________________________________________
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.openprojects.net
