Dhcpd SUNW options and jumpstart...

I am having problems getting my SUNW,Sun-Blade-100 's to boot from via
boot net:dhcp - installIt acquires the the ip address and boots from the tftp server just fine. The problem is that I have a 'sysidcfg' file on the NFS server and it is read by the install process (That is, I can see the printout that says it has read the sysidcfg file), but the install does not seem to use it to configure the system. It then reverts to a manual configuration.
Any Ideas as to how to get the clients to use the 'sysidcfg'?
I am using
Internet Systems Consortium DHCP Server V3.0.5 -- on CentOS Linux
the tftp server is also on the CentOS Linux server
The NFS server is running solaris 10.
To add to the confusion, the NFS server is on a different subnet then the install clients.
My setup.
This setup is spread accross multiple files by way of 'include "/path/to/foo.conf", but this is the order in which they appear.
Odviously the IP's are changed and the FQDN's are changed to example.com.
ddns-update-style none;
option domain-name-servers x.y.33.100, x.y.33.101;
allow bootp;
always-reply-rfc1048 on;
option space SUNW;
option SUNW.root-mount-options code 1 = text;
option SUNW.root-server-ip-address code 2 = ip-address;
option SUNW.root-server-hostname code 3 = text;
option SUNW.root-path-name code 4 = text;
option SUNW.swap-server-ip-address code 5 = ip-address;
option SUNW.swap-file-path code 6 = text;
option SUNW.boot-file-path code 7 = text;
option SUNW.posix-timezone-string code 8 = text;
option SUNW.boot-read-size code 9 = unsigned integer 16;
option SUNW.install-server-ip-address code 10 = ip-address;
option SUNW.install-server-hostname code 11 = text;
option SUNW.install-path code 12 = text;
option SUNW.sysid-config-file-server code 13 = text;
option SUNW.JumpStart-server code 14 = text;
option SUNW.terminal-name code 15 = text;
option SUNW.SbootURI code 16 = text;
option SUNW.JumpStart-server "mysrv:/export/jumpstart/sol10/jumpstart";
option SUNW.install-server-hostname "mysrv";
option SUNW.install-server-ip-address x.y.56.7;
option SUNW.install-path "/export/jumpstart/sol10";
option SUNW.root-server-hostname "mysrv";
option SUNW.root-server-ip-address x.y.56.7;
option SUNW.root-path-name "/export/jumpstart/sol10/Solaris_10/Tools/Boot";
option SUNW.sysid-config-file-server = "mysrv:/export/jumpstart/sol10/jumpstart";
subnet x.y.140.0 netmask 255.255.254.0 {
   authoritative;
   default-lease-time 86400;
   max-lease-time 172800;
   option broadcast-address x.y.141.255;
   option routers x.y.140.1;
   option domain-name "example.com";
   next-server x.y.140.6;
shared-network example-corp {
   option broadcast-address x.y.63.255;
   option routers x.y.33.1;
   option subnet-mask 255.255.224.0;
   option domain-name "example.com";
   next-server x.y.56.122;
   default-lease-time 43200;
   max-lease-time 86400;
   subnet x.y.32.0 netmask 255.255.224.0 {
      not authoritative;
   # Become authoritative on the networks we 'Own'
   subnet x.y.56.0 netmask 255.255.255.0 {
      authoritative;
   subnet x.y.57.128 netmask 255.255.255.128 {
      authoritative;
use-host-decl-names on;
group {
   vendor-option-space SUNW;
   filename "sol10-u3";
host afu      { hardware ethernet 00:03:ba:xx:xx:xx; fixed-address x.y.140.90;  }
# -- CUT --
}my sysidcfg file is located at mysrv:/export/jumpstart/sol10/jumpstart/sysidcfg
look like
system_locale=en_CA
timezone=Canada/Mountain
terminal=sun-cmd
timeserver=x.y.56.15
name_service=DNS {domain_name=example.com
                  name_server=x.y.33.100, x.y.33.101
                  search=example.com}
network_interface=PRIMARY {dhcp protocol_ipv6=no}
security_policy=NONE
root_password=secretA couple things that come to mind that I don't have the answer to, and can't find in the Docs:
1) Do the dhcpd, tftp and the NFS server all need to be the same server for some reason?
2) In regards to the dhcpd, is there some protocol that the sun-boxes expect that the dhcp server is not giving?
3) Is having the NFS share across subnets of any consequence?
Thank you all in advance, any help will be appreciated.

Pelleux wrote:
I am having problems getting my SUNW,Sun-Blade-100 's to boot from via
boot net:dhcp - installIt acquires the the ip address and boots from the tftp server just fine. The problem is that I have a 'sysidcfg' file on the NFS server and it is read by the install process (That is, I can see the printout that says it has read the sysidcfg file), but the install does not seem to use it to configure the system. It then reverts to a manual configuration.What questions are asked? Exactly what is the behavior that it shows?
Any Ideas as to how to get the clients to use the 'sysidcfg'?It sounds like it is using it, but perhaps the entries are not complete, or something else is happening.
my sysidcfg file is located at mysrv:/export/jumpstart/sol10/jumpstart/sysidcfg
look like
system_locale=en_CA
timezone=Canada/Mountain
terminal=sun-cmd
timeserver=x.y.56.15
name_service=DNS {domain_name=example.com
name_server=x.y.33.100, x.y.33.101
search=example.com}
network_interface=PRIMARY {dhcp protocol_ipv6=no}
security_policy=NONE
root_password=secret
The specific bits you need depend on the specific version of Solaris that you're installing. Does the installer ask you questions about all of those items? If not, it sounds like the file is being read. What release is being installed? I don't see any mention of a default_router. You may want to supply one (or define NONE) here.
(I wouldn't bother with an external timeserver. I find it easier to specify timeserver=localhost and fix the time post-boot. Probably not your problem here, but I've seen it cause problems in older setups).
A couple things that come to mind that I don't have the answer to, and can't find in the Docs:
1) Do the dhcpd, tftp and the NFS server all need to be the same server for some reason?No. The fact that you're getting to this point shows that all of that phase is working. You've already succesfully booted from the NFS root filesystem and are running Solaris.
2) In regards to the dhcpd, is there some protocol that the sun-boxes expect that the dhcp server is not giving?No. You're done with DHCP by this point. Congratulations.
3) Is having the NFS share across subnets of any consequence?Shouldn't be.
Darren

Similar Messages

  • My problem is very simple......firefox wont allow me save my downloads to any other location than my c drive....for example i have gone into options and set sav

    ''locking this thread as duplicate, please continue at [https://support.mozilla.org/en-US/questions/986549 /questions/986549]''
    my problem is very simple......firefox wont allow me save my downloads to any other location than my c drive....for example i have gone into options and set save downloads to my e drive....but still firefox keeps saving them to my c drive....i have 4 internal hard drives in my rig....and have tried saving downloads to them all.......why this is happening i cant understand....i have tried lots of suggestions....and have re-installed firefox multiple times

    hello, there's a general regression in firefox 27 that won't allow files to download directly into a root drive. please try to create a subfolder (like ''E:\Downloads'') and set this as default location for downloads...
    also see [https://bugzilla.mozilla.org/show_bug.cgi?id=958899 bug #958899].

  • Custom XML IP PHONE text on "Your current options" and softphone button on

    Custom XML IP PHONE text on "Your current options" and softphone button on call manager 7.0 call manager 7.0 ?

    Hello, Please try this link
    http://www.cisco.com/en/US/docs/voice_ip_comm/cuipph/7906g_7911g/5_0/sip/english/administration/guide/11ag50si.pdf

  • Custom XML IP PHONE text on "Your current options" and softphone button

    how maually or reconfigure the Custom text on "Your current options" and softphone button on the call manager 7.0 ?
    There is no documentation ?

    Hello, Please try this link
    http://www.cisco.com/en/US/docs/voice_ip_comm/cuipph/7906g_7911g/5_0/sip/english/administration/guide/11ag50si.pdf

  • Cisco Jabber windows call option and user addition issue

    Hi,
    After uploading the jabber-config.xml (EDI-BDI) on the CUCM, the call option for new user contacts started appearing but the already existing contacts in Jabber client have still no call option. Also when we add new contacts to the Jabber client, it just disappears as such. Any one faced similar issue before. Below are the details and attached jabber-config.xml and LDAP profile snap.
    We are using employeeNumber as attribute in LDAP configuration.
    CUCM - 8.5.1.15900-4
    UCCX - 8.6.3.10000-20
    Jabber for windows - 9.7.0 (Tried with earlier version of jabber as well)

    Hey
    Just right click on the contacts which do not have the call option and select view profile, then see if those contacts that are added are they from the Outlook or the AD, if its AD then they will have a contact number and as such they will have the Call Option enabled.
    If they are from outlook then delete the users and readd them by checking the view profile option to verify they are being pulled from AD.
    Also if i assumed the issue differently then what it is please explain the whole scenario.
    Note-: In case of J4W it will not connect to the directory using the LDAP profile info, it automatically verified and cnnects to the domain using your login creds.

  • I can't change my apple id password because my security answers don't match. It won't give me any other options and just keeps asking for the answers. What do I do?

    I can't change my apple id password because my security answers don't match. It won't give me any other options and just keeps asking for the answers. What do I do?

    Contact the Apple ID Security site from http://support.apple.com/kb/HT5699 or call the AppleCare support number from http://support.apple.com/kb/HE57 and ask to speak with the Account security Team.

  • How to remove the Options and Task from the toolbar

    In the FLM portal initially we can see 'Options' in the menu bar after we log in. Below it there is 'Tasks' and 'Reports'. on clicking 'Tasks' and new menu bar 'Tasks' can be seen, under which 'New Tasks' option is there. When we click on 'New Forms' it shows the list of forms and when we select the desired form it opens the interactive form.
    My problem is when this form is opened on the header the 'Options' and 'Tasks' bar can be seen, under which the adobe menu bar comes (Print, Save, Zoom etc.) . This 'Options' and 'Tasks'  how to remove from the interactive forms page.
    Edited by: NIKHILKUMAR POOJARI on Feb 13, 2009 4:24 PM

    Dear Mano,
    By using Authorizations you can remove the Drag and Relate Menu
    Goto Administration ---> System Initialization -
    > Authorization -
    > General Authorization
    General -
    > Drag & Relate -
    > No authorization
    Regarding Authorizations, click the below link to get details
    [Define Authorizations|https://websmp205.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_HIER_KEY=701100035871000437965&_OBJECT=011000358700000481572006E&_SCENARIO=01100035870000000183&]
    Regards,
    Bala

  • Fire fox opens with tabs from preveous session not home page in tools under options and tab general I have start up with home page but all tabs from previous session open instead

    fire fox opens with tabs from preveous session not home page in tools under options and tab general I have start up with home page but all tabs from previous session open instead

    It is possible that there is a problem with the files [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    Delete [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.
    Deleting sessionstore.js will cause App Tabs and Tab Groups to get lost, so you will have to create them again (make a note).
    See:
    * http://kb.mozillazine.org/Session_Restore

  • IR export options and embedded HTML

    Good day,
    Apex 3.2.1.00.12, 9.2.0.8 DB, on AIX 5.3.
    I have an IR where in I use html in the SQL that defines it to format certain columns such as the below
    "<div style=""overflow:auto;height:50px;"">column value here</div>"I then define the display type as ' Standard Report Column '.
    That obviously allows me to have some "formatting" power that the IR does not give by default.
    Problem is when I do the export to a CSV I get the html markup included as the value of the column.
    Is there a way I can keep my formatting desires and export without the html included in the value ?
    Also, can I export the whole result set to CSV, not just whatever I have pagination set to ?
    I do NOT have a print server.
    Thanks for your time,
    CLG

    What export option you used.
    I am using default export option and it exports all the records on report. Not current page.
    Furthermore for your requirment I ahve done lot of test regaring same thing. But I didnt find any solution. So what I did was create my own export function for those reports and then use that.
    Thanks
    * If this answer is helpfull or correct then please mark it and grant the points.

  • I cannot open iphoto- the message I am getting says Shut down and restart your computer, and then open iPhoto again. If the problem persists, try rebuilding your photo library. To do this, quit iPhoto, and then reopen it while keeping the Option and Comma

    i cannot open iphoto- the message I am getting says Shut down and restart your computer, and then open iPhoto again. If the problem persists, try rebuilding your photo library. To do this, quit iPhoto, and then reopen it while keeping the Option and Command-
    I tries and it doesnt work!!

    What version of iPhoto? Assuming 09 or later:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • Firefox won't open PDF files after I removed older version of PDF-xChange Viewer and installed the lastest version of PDF-xChange Viewer. MS Explorer which I am now force to use works OK. I have checked the Applications window in Tools/Options and it l

    Firefox no longer opens PDF files. Explorer works OK. I have checked the Applications window in the Tools/Options and it says I am using PDF-xChange viewer....It just does not do anything. I get the message in the Download Error window which says...."could not be saved, because you cannot change the contents of that folder. Is the same error which I get when I attempt to open a PDF file on a webpage using the Firefox browser....Explorer works OK so I am now forced to Explorer to read PDF files via a browser.
    == This happened ==
    Every time Firefox opened
    == After removing a old copy of PDF-xChange Viewer and updating to the last version

    The error message suggests that the file (pdf) that you're trying to download cannot be saved in the folder Firefox tries to save it in.
    This can be due to several things - it could be a non-existing folder (could be a problem with the updated application), the hard drive could be too full to store the file (less likely if you can generally surf the net without error messages) or it could contain an error.
    To complicate things a little further, it seems to me that you have (at least) 3 different PDF-handling plugins in Firefox from different programs:
    PDF-XChange Viewer Netscape Gecko Plugin
    Adobe PDF Plug-In For Firefox and Netscape "9.3.2"
    Zeon PDF Plugin For Mozilla
    This shouldn't matter too much, thou, as it will most likely simply use either the latest installed or the first one it finds when looking up associations for files of type 'pdf'.
    First, in Tools > Options... > tab General > section File download, select "Save files in" and Browse your way to a (non-writeprotected!) folder on a drive where you're certain there is enough free space - like the Desktop folder to make the files end up on your Windows desktop.
    Second, under Applications as you mention yourself, find all document types related to PDF files, and set these to one of the programs. Check the entire list to be sure there isn't one hiding under one of the other programs' document types (Adobe Acrobat document, PDF X-Change and Zeon).
    Restart Firefox, and try opening a PDF again.
    If it fails once more, try changing the documents again to one of the other programs, like "Use Adobe Acrobat (in Firefox)".
    If it STILL fails, change it to simply "Save file". Then you can simply browse your way to the download folder with Windows Explorer, and doubleclick the PDF file to see which program actually handles PDF files as default on the machine, and if it works properly.
    If Firefox flatly refuses to save the PDF files in a folder which you're certain both exist and has space for the file, some (probably security related) program is most likely interfering with Firefox, preventing it in storing PDF files on the system.

  • I have an iPod Classic and the latest version of iTunes. I make all my purchases on my computer, but when I try to click the "add to" option and transfer the songs to my iPod, it doesn't work. How can I get my songs from my computer to my iPod?

    I have an iPod Classic and the latest version of iTunes. I make all my purchases on my computer, but when I try to click the "add to" option and transfer the songs to my iPod, it doesn't work. How can I get my songs from my computer to my iPod?

    See this excellent user tip from another forum member turingtest2 outlining the different methods and software available to help you copy content from your iPod back to your PC and into iTunes.
    Recovering your iTunes library from your iPod or iOS device
    B-rock

  • I would like to display my bookmarks permanently. Clicking on Firefox, Options and then checking the Bookmarks Toolbar does not do this. How can I display the bookmarks along the left margin like they used to display?

    I would like to display my bookmarks. Clicking on Firefox, then Options and then checking off the Bookmarks Toolbar does not do this.
    What do I have to do to permanently display my bookmarks?

    I asked how I could display my bookmarks permanently.
    This answer does not address that issue. Instead, it tells me how I can display my bookmarks temporarily.
    While this is nice to know, I wanted to find out how to display my bookmarks permanently - not temporarily.

  • How do I change the network settings on my Apple TV? We have two wireless options and need to switch.

    How do I change the network settings on my Apple TV? We have two wireless options and need to switch.

    Welcome to the Apple Community.
    Settings > General > Network > WiFi and select your network.

  • Somebody has created an apple id using my gmail id. So I gave forgot password option and reset the password of the id. But for resetting the security questions, link is going to some other email id which is created by the other guy.How can I resolve this?

    When I tried to create and apple id using my gmail account i found that somebody has already created an apple id using my gmail id. So I gave forgot password option and reset the password of the id. But for resetting the security questions, link is going to some other email id which is created by the other guy. Now the problem is that the other guy also can reset my password and access my account.
    I contacted apple customer care and they are not ready to help me saying that I need to give information about the last device I logged in using this id. How can I give it when I did not create it?:) Also they are saying this account has been verified and that could happen only if someone has hacked my gmail account and verified the id using the link sent by apple.
    Later I did some experiments and found that this is a security flaw from apple. Somebody has created the id and never used it(I tried to loggin to icloud and it was saying this account was not used it any apple device). The account became verified when I reset the password.(This is a bug, account should be verified only when we click on the verification link sent by apple).
    The other mistake apple did is that they allotted my gmail account to someone before it's verified eventhough it cannot be used unless verified. Actually apple should allot the account id only after verifying the email address.
    Apple customer care is not ready to help and I am tired of fighting with them. Can any of you guys suggest any means of getting back my gmail id to use it as apple id?

    I don't think you're going to be able to. I would guess the other person used your address by accident, and when he found he couldn't access the account (because you'd changed the password) he abandoned it. Your GMail address is now locked to that account and even if it was changed you can't use it to create another.
    You already have an Apple ID, which you use to log in here; you can use that to create an iCloud account if that's what you are trying to do. If you want to create a different Apple ID just get another free address such as a Yahoo one.

Maybe you are looking for

  • Advice needed on importing photos and videos onto iPod.

    Hi, I am off travelling round the world for 6 months next year. I love taking a riducolous amount of pics and I was wondering what the best device to get them onto my ipod is. Also i want to be able to import videos as well. I have a sony T9 and the

  • Installing Leopard and new internal hard drive at same time, best plan?

    Ok so basically the title explains what I need to do. I am currently travelling in Europe, and returning home to New York on Tuesday night. I have a new hitachi 250gb HD and will have Leopard waiting for me at home when I arrive, and will get right t

  • Custom Version Sequence

    Hi, I am looking for a custom version sequence in DMS By default SAP provides different Version increment sequences. I would like to have a sequence which is not matching with the standard list. My Version sequence is starting 00,01,....99,A,B,...Z,A

  • Error msg 'Tax category UTX2 is not defined for country US' in RMDATIND

    Hello,   We just upgraded our system from 4.6C to ECC 6.0 and have been using RMDATIND (BMV0) to load new materials into SAP. This worked fine in 4.6C, but now we keep getting the error 'Tax category UTX2 is not defined for country US'. It is error m

  • HT1229 iPhoto Library renamed accidentally

    I have iPhoto 09 version 8.xx Accidentally I renamed the iPhoto library folder and now cannot see my library images when I open iPhoto. Is there a way I can recover the images ?