Hi there,

Just a little info on the newer DHCP version (v3 and above)

You can't just declare the option option-128 anymore you have to do it like
this.

Example:

default-lease-time 10800;
max-lease-time 36000;
ddns-update-style none;
option subnet-mask 255.255.255.0;
option broadcast-address 10.1.1.255;
option routers 10.1.1.1;
option domain-name-servers 10.1.1.55;
option domain-name "stuff.com";
option root-path "/tftpboot/lts/ltsroot";
use-host-decl-names on;
-->option unique-name1 code 128 = string; <--- This line
-->option unique-name2 code 129 = text; <--- This line



subnet 10.1.1.0 netmask 255.255.255.0 {
        option netbios-node-type 8;
        option netbios-name-servers 169.169.169.2;
        option routers 10.1.1.1;
        option log-servers 172.25.138.93;
        range 10.1.1.150 10.1.1.254;
        group {
                use-host-decl-names on;
                host deny1 {
                        hardware ethernet 00:60:b0:21:f7:e3;
                        ignore booting;
                        }
                host matt {
                        option routers 10.1.1.1;
                        hardware ethernet 00:E0:29:6C:AA:EF;
                        fixed-address 10.1.1.92;
                        filename "/lts/artlinuz.matt";
                        }
                host lane {
                        option routers 10.1.1.1;
                        hardware ethernet 00:E0:29:3C:A8:E1;
                        fixed-address 10.1.1.98;
                        filename "/lts/vmlinuz.ltsp";
                        option root-path "/opt/ltsp/i386";
                        -->option unique-name1 e4:45:74:68:00:00;<--
                        -->option unique-name2 "NIC=eepro100";<--
                        }

Look for the arrows (-->) they point to the pertainent info.

Jim,
        I'm not much on howtos but i think this should be documented on the
ltsp page i can see it becoming a large issue on the board for no real
reason.

Matt Egan

_____________________________________________________________________
Ltsp-discuss mailing list.   To un-subscribe, or change prefs, goto:
      https://lists.sourceforge.net/lists/listinfo/ltsp-discuss
For additional LTSP help,   try #ltsp channel on irc.openprojects.net

Reply via email to