I just finished installing NV 33 onto an old Ultra 5 without a cdrom. The only 
real snag was getting the DHCP server to feed it the correct information, 
because the DHCP server is on a Linux box. I have a Netra T1 acting as the 
install server and as the boot server. But I didn't want to try running to DHCP 
servers on the same subnet. 

Here's what I ended up with in the dhcpd.conf file on my Linux box. Heimdall is 
the name of the install and boot server, at 10.10.1.131.

option space                    SUNW;
option SUNW.SrootOpt            code 1 = text;
option SUNW.SrootIP4            code 2 = ip-address;
option SUNW.SrootNM             code 3 = text;
option SUNW.SrootPTH            code 4 = text;
option SUNW.SswapIP4            code 5 = ip-address;
option SUNW.SswapPTH            code 6 = text;
option SUNW.SbootFIL            code 7 = text;
option SUNW.Stz                 code 8 = text;
option SUNW.SbootRS             code 9 = integer 16;
option SUNW.SinstIP4            code 10 = ip-address;
option SUNW.SinstNM             code 11 = text;
option SUNW.SinstPTH            code 12 = text;
option SUNW.SsysidCF            code 13 = text;
option SUNW.SjumpsCF            code 14 = text;
option SUNW.Sterm               code 15 = text;
option SUNW.SbootURI            code 16 = text;
option SUNW.SHHTPProxy          code 17 = text;

class "vendor-classes" {
        match option vendor-class-identifier;
}

subclass "vendor-classes"  "SUNW.Ultra-5_10" {
        vendor-option-space     SUNW;
        option SUNW.SbootURI    = 
"tftp://10.10.1.131/inetboot.SUN4U.Solaris_11-1 ";
        option SUNW.SinstIP4  10.10.1.131;
        option SUNW.SinstNM  = "heimdall";
        option SUNW.SinstPTH = "/export/solaris11/install";
        option SUNW.SrootIP4  10.10.1.131;
        option SUNW.SrootNM = "heimdall";
        option SUNW.SrootPTH = 
"/export/solaris11/install/Solaris_11/Tools/Boot" ;
}


host chimera {
  hardware ethernet 08:00:20:a2:22:66;
  option domain-name "sdowney.org";
  option host-name "chimera";
  next-server  10.10.1.131;
  fixed-address 10.10.1.132;
}

http://www.sdowney.org/2006/03/solaris-network-install-using-linux.html

All the information is around the 'net, but it took me some time to get it all 
together. Hopefully this will be of use to someone else.

-SMD
This message posted from opensolaris.org
_______________________________________________
opensolaris-discuss mailing list
opensolaris-discuss@opensolaris.org

Reply via email to