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

Reply via email to