Verner,
You need to add a couple of lines near the top of your dhcpd.conf file.
They are:
option option-128 code 128 = string;
option option-129 code 129 = text;
They can go up in the top of the dhcpd.conf, before any workstations are
defined. right after the 'ddns-update-style' would be a good place
to put those 2 new lines.
Jim McQuillan
[EMAIL PROTECTED]
On Sun, 5 Dec 2004, Verner [utf-8] KjÃrsgaard wrote:
> SÃndag den 5. december 2004 18:15 skrev Jim McQuillan:
> > Verner,
> >
> > You need to pass a parameter on the Kernel command line.
> >
> > If you are using Etherboot, you do this with option-128 and option-129.
> >
> > The following example should work for you:
> >
> > option option-128 e4:45:74:68:00:00;
> > option option-129 "NIC=8139too";
> >
> >
> > Enter those lines EXACTLY as you see there, in the dhcpd.conf file,
> > in the section for your specific workstation. It should look like
> > this when done:
> >
> > host ws001 {
> > hardware ethernet 00:E0:06:E8:00:84;
> > fixed-address 192.168.0.1;
> > filename "/lts/vmlinuz-2.4.26-ltsp-2";
> > option option-128 e4:45:74:68:00:00;
> > option option-129 "NIC=8139too";
> > }
> >
> >
> > Of course, change your mac address and IP address to suit your needs.
> >
> > Jim McQuillan
> > [EMAIL PROTECTED]
> >
> > On Sun, 5 Dec 2004, Verner [iso-8859-1] KjÃrsgaard wrote:
> > > Dear LIST,
> > >
> > > I'm running the lastest 4.1 ltsp succesfully! Now, I want to get some old
> > > Tulip Pentium II machines running too. They've got these old Digital
> > > DS21143 built in NICs. I've shut them down in BIOS and installed new
> > > RTL8139 (10EC:8139) NICs instead of.
> > >
> > > They get their IPs from the DHCP server and starts loading the (standard)
> > > ltsp kernel (2.4.26-ltsp-2). When this kernel probes the hardware it's
> > > running on, it detects TULIP instead of RTL8139. This causes it to go:
> > >
> > > "Using /lib/modules/2.4.26-ltsp-2/kernel/drivers/net/tulip/tulip.o"
> > >
> > > Now, I'd love the kernel to use something like "8139too.o" instead. I
> > > read in the docs how-to. Only I cannot find it again :-(
> > > I thought it's something like "NIC=8139too.o", but how and where?
> > >
> > >
> > > thank you in advance!
> > > --
> > > -------------------
> > > Verner KjÃrsgaard
> > > vk [EMAIL PROTECTED] os-academy.dk
> > >
> > > Open Source Academy
> > > SvalhÃjvej 13
> > > DK-3790 Hasle
> > > +45 56964223
> > > -------------------
> > >
> > >
> > > -------------------------------------------------------
> > > SF email is sponsored by - The IT Product Guide
> > > Read honest & candid reviews on hundreds of IT Products from real users.
> > > Discover which products truly live up to the hype. Start reading now.
> > > http://productguide.itmanagersjournal.com/
> > > _____________________________________________________________________
> > > 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.freenode.net
>
> Hi again,
>
> - sorry for this long posting. I edited the dhcpd.conf as seen below,
> - and got the error that I list further down.
> - I can't spot where it is...
>
> ---------------- BEGIN DHCPD.CONF -----------------------------------
> SuSE92:/etc # cat dhcpd.conf
> option domain-name "kjaersgaard.net";
> option domain-name-servers 212.54.64.170, 212.54.64.171;
> option routers 172.16.12.50;
> default-lease-time 345600;
> ddns-update-style none;
>
> group
> {
> use-host-decl-names on;
> option log-servers 172.16.12.254;
> option root-path "172.16.12.230:/opt/ltsp/i386/";
>
> subnet 172.16.12.0 netmask 255.255.255.0
> {
> range 172.16.12.10 172.16.12.19;
> default-lease-time 14400;
> max-lease-time 172800;
> }
>
> #IBM THINKPAD NET-BOOT
> host ws001
> {
> hardware ethernet 00:0D:60:FB:80:75;
> fixed-address 172.16.12.219;
> filename "/lts/2.4.26-ltsp-2/pxelinux.0";
> }
>
> #DISKETTE BOOT IBM OLD BLACK
> host ws002
> {
> hardware ethernet 00:40:F4:65:79:24;
> fixed-address 172.16.12.218;
> filename "/lts/vmlinuz-2.4.26-ltsp-2";
> }
>
> #DISKETTE BOOT SCENIC/FUJITSU/SIEMENS OLD BLUE BOX
> host ws003
> {
> hardware ethernet 00:10:B5:C0:11:C1;
> fixed-address 172.16.12.217;
> filename "/lts/vmlinuz-2.4.26-ltsp-2";
> }
>
> #DISKETTE BOOT TULIP NOT WORKING (YET)
> host ws004
> {
> hardware ethernet 00:40:F4:65:79:24;
> fixed-address 172.16.12.216;
> filename "/lts/vmlinuz-2.4.26-ltsp-2";
> option option-128 e4:45:74:68:00:00;
> option option-129 "NIC=8139too";
> }
> }
> -------------------- END OF DHCPD.CONF -------------------------------
>
>
> -------- START OF ERROR WHEN RESTARTING DHCP -----------------
> SuSE92:/etc # rcdhcpd restart
> Shutting down DHCP server done
> Starting DHCP server Internet Systems Consortium DHCP Server V3.0.1
> Copyright 2004 Internet Systems Consortium.
> All rights reserved.
> For info, please visit http://www.isc.org/sw/dhcp/
> /var/lib/dhcp///etc/dhcpd.conf line 52: unknown option dhcp.option-128
> option option-128 e4:
> ^
> /var/lib/dhcp///etc/dhcpd.conf line 53: unknown option dhcp.option-129
> option option-129 "NIC=8139too"
> ^
> Configuration file errors encountered -- exiting
> ----------------------------------------------------------
>
> - thank you in advance!
>
> Best regards,
> Verner KjÃrsgaard
>
> Open Source Academy
> SvalhÃjvej 13
> DK-3790 Hasle
> +45 56964223
> -------------------
>
>
> -------------------------------------------------------
> SF email is sponsored by - The IT Product Guide
> Read honest & candid reviews on hundreds of IT Products from real users.
> Discover which products truly live up to the hype. Start reading now.
> http://productguide.itmanagersjournal.com/
> _____________________________________________________________________
> 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.freenode.net
>