Subject: Re: Netbooting a SS10
To: David Dudley <DavidDu@cctexas.com>
From: David Maxwell <david@vex.net>
List: port-sparc
Date: 06/27/2003 09:59:26
On Thu, Jun 26, 2003 at 04:29:04PM -0500, David Dudley wrote:
> Heres where the problem begins.  Our network does not use the same
> server for DHCP as it does for NFS.  I have the rarpd, and the tftpd
...
> machine, and as far as I can tell, from that machine only.  The info I
> have on the DHCP setup shows that I can list the machine to load the
> image from in the boot filename string, but it doesn't seem to evaluate
> it.  How do I tell the SS10 to do the NFS mount from the NFS machine,
> instead?

This is the dhcpd.conf entry I use for one of my suns - dhcp is served
from 192.168.2.1, NFS from 192.168.2.89

            host cp1500 {
              hardware ethernet 08:00:20:9f:1e:42;
              fixed-address 192.168.2.50;
              next-server 192.168.2.89;
              filename "/netbsd-GENERIC";
              option root-path "/usr/space/netboot/sparc64";
            }

								David