Subject: Re: something got wrong with dhcpd!!!
To: Michael <macallan18@earthlink.net>
From: Wojciech Puchar <wojtek@tensor.3miasto.net>
List: current-users
Date: 09/20/2005 23:22:22
>
>> 10.255.245.5 is able to boot xterminal.bin that it turn boots
>> /usr/local/Xterminals/wojtek/netbsd which starts, then does DHCP again
>> and then can't mount NFS root because server is 0.0.0.0
>
> Well, you didn't state from which server it's supposed to mount its root.

same as DHCPD and DNS - which is default in DHCPD.

tried to type

10.255.245.1:/usr/local/Xterminals/wojtek/

doesn't work too.

anyway please read again - SAME config worked fine with dhcpd from 3.99.7 
which i'm using now
>
>> my config:
>>
>> authoritative;
>> option domain-name "l.";
>> option domain-name-servers dns.l.;
>> default-lease-time 60000;
>> max-lease-time 72000;
>> ddns-updates off;
>> ddns-update-style none;
>>
>> class "pxe-clients-ia32" {
>> match if substring (option vendor-class-identifier, 0, 20)
>> = "PXEClient:Arch:00000";
>> filename "xterminal.bin";
>> }
>>
>> subnet 10.255.245.0 netmask 255.255.255.0 {
>> ddns-updates off;
>> option routers 10.255.245.1;
>> option subnet-mask 255.255.255.224;
>> option broadcast-address 10.255.245.31;
>> deny unknown-clients;
>> range 10.255.245.20 10.255.245.30;
>>
>>   host mama.dom {
>>    hardware ethernet 00:0A:Cd:05:45:FB;
>>    fixed-address 10.255.245.2;
>>    option host-name "mama.dom";
>>   }
>>
>>   host wojtek-term2.dom {
>>    hardware ethernet 00:50:04:ed:2a:3d;
>>    fixed-address 10.255.245.5;
>>    option host-name "wojtek-term2.dom";
>>    option root-path "/usr/local/Xterminals/wojtek";
>>   }
>>
>> }
>
> next-server whatever;
>
> should cure it.
>
> have fun
> Michael
>