vine-users ML アーカイブ



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

  • From: <furu@xxxxxxxxxxxxxxxxx>
  • Subject: [vine-users:061883] DHCP でのエラー
  • Date: Tue, 19 Aug 2003 12:35:22 +0900 (JST)
古川です。
Vine linuxを使い始めて半年程のものです。
過去ログとかみても情報がなかったので、投稿させて頂きます。

環境:Vine 2.5 
   2.4.21-pre3 

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

socket: Protocol not available - make sure 
CONFIG_PACKET (Packet socket) and CONFIG_FILTER 
(Socket Filtering) are enabled in your kernel 
configuration!

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

となっています。
また、dhcpd.confは

#deny bootp;
server-identifier 		192.168.0.254;
option subnet-mask		255.255.255.0;
default-lease-time 28800;
max-lease-time 43200;

subnet 192.168.0.0 netmask 255.255.255.0 {
	range dynamic-bootp 192.168.0.1 192.168.0.2;
	server-name 			"xxx";
	option nis-domain		         "xxx";
	option domain-name		"localdomain";
	option domain-name-servers	         192.168.0.254;
	option routers 			192.168.0.254;
	option broadcast-address 	         192.168.0.255;
	
if leased-address = "192.168.0.1" {
                filename "xxx";
                option root-path "xxx";
        }
        else {
                filename "xxx";
                option root-path "xxx";
        }

といった感じです。この設定は実際に他のマシンで動いたので
大丈夫だと思います。
説明に不足があるかと思いますが、どうかご教授下さい。
よろしくお願いいたします。