Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 21 Mar 2004 23:26:01 -0800
From:      Matt Peterson <matt@peterson.org>
To:        Chris Roehrig <soekris@house.org>
Cc:        soekris-tech@lists.soekris.com
Subject:   Re: [Soekris-tech] Re: Diskless PXE clients: switching FreeBSDkernels based on MAC address
Message-ID:  <405E9509.2060604@peterson.org>
In-Reply-To: <B8DA9ED2-7B86-11D8-9391-000A95791556@house.org>
References:  <9E8C857C-7AA0-11D8-A650-000A95791556@house.org> <B8DA9ED2-7B86-11D8-9391-000A95791556@house.org>

next in thread | previous in thread | raw e-mail | index | archive | help
This might be possible with DHCP, I've done something similar...

subnet 192.168.250.0 netmask 255.255.255.0 {
 range 192.168.250.2 192.168.250.253;
 option routers 192.168.250.254;
 option subnet-mask 255.255.255.0;                
 # NFS server & path
 option root-path "192.168.250.1:/usr/mboot";
}

class "soekris" {
 match if substring (option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00000";
 # TFTP server & filename
 next-server 192.168.250.1;
 filename "pxeboot";

}

Chris Roehrig wrote:

> I'm following up on my original question and cross-posting it to the  
> Soekris list in case this is useful for anyone else.      If there's 
> an  easier way to do this, I'd like to know!





Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?405E9509.2060604>