Changes between Version 11 and Version 12 of SaliHowto


Ignore:
Timestamp:
06/08/12 10:33:26 (12 years ago)
Author:
dennis
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SaliHowto

    v11 v12  
    4242}}}
    4343
    44 === Test ===
     44== Configuration ==
     45
     46Before you boot SALI from tftp you first must configure the IMAGESERVER variable. SALI uses this variable to determine if your central image server is reachable. If this is not the case SALI will stop the startup process.
     47
     48There are two ways to configure this:
     49 1. Specify IMAGSERVER=<ip> in your pxe file as a KERNEL parameter
     50 2. Specify the ip of the imageserver in your dhcp configuration
     51
     52An example for isc dhcpd server
     53{{{
     54## Support for the SALI and the 'old' imageserver settings
     55#
     56option option-140 code 140 = text;
     57option sali-imgsrv code 224 = ip-address;
     58
     59# Admin network
     60#
     61subnet 192.168.144.0 netmask 255.255.248.0 {
     62  ##  option-140 is the IP address of your SystemImager server
     63  #    sali-imgsrv is the new setting for the Systemimager server
     64  #
     65  option sali-imgsrv 192.168.146.10;
     66  option option-140 "192.168.146.10";
     67  next-server 192.168.146.10;
     68....
     69}
     70}}}
     71
     72For a bit more information see [wiki:SaliUsage/DhcpOptions this wiki page]
     73
     74== Test ==
    4575
    4676To test the installation copy the `pxelinux.example` to your ``pxelinux.cfg`` directory, is your tftpboot directory  with `pxelinux.cfg` appended. See [https://subtrac.sara.nl/oss/pxeconfig SARA pxeconfig utility]:
     
    5484}}}
    5585
     86If you haven't change your dhcpd configuration to specify the variable IMAGESERVER you must add it to your pxe file.
     87
    5688Reboot the node and if your node has a [http://en.wikipedia.org/wiki/Remote_access_card Remote Access Card] take over the console and see how the node boots. If the node has finished the boot process you can login on the node:
    5789{{{
     
    6496Linux gb-r7n2.irc.sara.nl 3.1.4-sali_v1.5.0 #1 SMP Tue Mar 6 16:18:17 CET 2012 x86_64 GNU/Linux
    6597}}}
    66 
    67 
    68