vine-users ML アーカイブ



[vine-users:061884] Re: DHCP でのエラー

  • From: Satoshi I.Nozawa <snozawa@xxxxxxxxxxxxxxxxxxxxx>
  • Subject: [vine-users:061884] Re: DHCP でのエラー
  • Date: Tue, 19 Aug 2003 13:39:43 +0900 (JST)
のざわです。

> さて、今PCクラスタで使用しているBOOTPをDHCPへ
> 変更しているのですがどうしても以下のようなエラーがでて
> DHCPサーバが動かなく困っています。

>    2.4.21-pre3 

お、自分でコンパイルしているのですか。では

> しかし、Networking optionsでは 
> Socket Filtering  y 
> Packet socket y

.config の

CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
CONFIG_IP_PNP_BOOTP=y
CONFIG_IP_PNP_RARP=y

は大丈夫でしょうか。

> 	range dynamic-bootp 192.168.0.1 192.168.0.2;

> if leased-address = "192.168.0.1" {
>                 filename "xxx";
>                 option root-path "xxx";
>         }
>         else {
>                 filename "xxx";
>                 option root-path "xxx";
>         }

へえ、こういった書き方があるですか、知なかったです。ちなみに

host client {
        hardware ethernet 00:xx:xx:xx:xx:xx;
        fixed-address xxx.xx.xx.xx;
        filename        "/tftpboot/client1/bootImage";
        option host-name "client1";
        option root-path "/tftpboot/client1";
}

と私のところでの書き方です。