Changes between Version 5 and Version 6 of SaliUsage/DhcpOptions


Ignore:
Timestamp:
08/11/10 10:17:10 (14 years ago)
Author:
bas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SaliUsage/DhcpOptions

    v5 v6  
    1010
    1111To use our dhcp options with udhcpc a [source:trunk/initrd/patches/busybox.udhcpc.options.patch patch] must be applied to the busybox source.
     12
     13
     14== ISC DHCP server configuration ==
     15
     16Add these line to ''dhcpd.conf'' to support the new SALI image server dhcp option:
     17{{{
     18
     19## Support for the SALI and the 'old' imageserver settings
     20#
     21option option-140 code 140 = text;
     22option sali-imgsrv code 224 = ip-address;
     23
     24
     25# Admin network
     26#
     27subnet 192.168.144.0 netmask 255.255.255.0 {
     28
     29  ##  option-140 is the IP address of your SystemImager server
     30  #    sali-imgsrv is the new setting for the Systemimager server
     31  #
     32  option sali-imgsrv 192.168.146.10;
     33  option option-140 "192.168.146.10";
     34  next-server 192.168.146.10;
     35
     36....
     37}}}
     38
     39