ディストリビューションにDHCPサービスBacktrack5 R2(ubuntu 10.04)をインストールしていて、正常に機能していましたが、DNSの構成を開始すると、突然機能しなくなりました。どうすれば再び機能させることができますか?
Dhcp.confファイル:
ddns-update-style none;
option domain-name "admin.servers.net";
default-lease-time 600;
max-lease-time 7200;
authoritative;
log-facility local7;
subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.50 192.168.0.100;
option domain-name-servers 192.168.0.2, 8.8.4.4;
option routers 192.168.0.254;
option broadcast-address 192.168.0.255;
default-lease-time 600;
max-lease-time 7200;
}
そして、サービスを再起動すると、次のように表示されます。
Internet Systems Consortium DHCP Server V3.1.3
Copyright 2004-2009 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/
Wrote 4 leases to leases file.
No subnet declaration for restart (0.0.0.0).
** Ignoring requests on restart. If this is not what
you want, please write a subnet declaration
in your dhcpd.conf file for the network segment
to which interface restart is attached. **
Not configured to listen on any interfaces!
dhcp3-serverには次のものがあります。
INTERFACES="eth0"
iPアドレス:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope Host lo
inet6 ::1/128 scope Host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
link/ether 04:7d:7b:15:29:6b brd ff:ff:ff:ff:ff:ff
inet 192.168.0.2/24 brd 192.168.0.255 scope global eth0
inet6 fe80::67d:7bff:fe15:296b/64 scope link
valid_lft forever preferred_lft forever
3: wlan0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN qlen 1000
link/ether 74:e5:0b:57:b4:82 brd ff:ff:ff:ff:ff:ff
ipルート:
default via 192.168.0.254 dev eth0
192.168.0.0/24 dev eth0 proto kernel scope link src 192.168.0.8
/ etc/network/interfaces:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.0.2
network 192.168.0.0
netmask 255.255.255.0
broadcast 192.168.0.255
gateway 192.168.0.254
ルート-n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.0.254 0.0.0.0 UG 100 0 0 eth0
192.168.0.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
あなたのdhcpd.confは怪しげに見えます。例:
Linux DHCPサーバー構成 のチュートリアルを読み、dhcpd.confを最初の例に基づいて、値を入力することをお勧めします(「optiontime-offset」で停止します)。
問題が解決しない場合は、投稿を更新し、route -n
の出力も追加してください。
どの「DNSサービス」を使用していますか?通常、バインドは問題になりませんが、dnsmasqには独自のDHCPサーバーが含まれています。
明確にするために:DHCPサーバーを再起動しようとしたときにdnsmasqがすでに実行されている場合、DHCPサーバーはポート53にバインドできません。少しわかりやすいエラーメッセージが出力されると思いますが、技術的には次のように構成されていません。任意のインターフェイスでリッスンします。
構成は許容範囲内に見えます。サービスを誤って再起動しているようです。
質問の正確な構成を使用する:
root@bt:~# service dhcp3-server restart
* Stopping DHCP server dhcpd3 [fail]
* Starting DHCP server dhcpd3 [ OK ]
ただし、この(間違った)コマンドはあなたが投稿した出力を私に与えます:
root@bt:~# dhcpd3 restart
Internet Systems Consortium DHCP Server V3.1.3
Copyright 2004-2009 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/
Wrote 0 leases to leases file.
No subnet declaration for restart (0.0.0.0).
** Ignoring requests on restart. If this is not what
you want, please write a subnet declaration
in your dhcpd.conf file for the network segment
to which interface restart is attached. **
Not configured to listen on any interfaces!
それでも問題が解決しない場合は、パッケージを再構成してみてください。
dpkg-reconfigure dhcp3-server
それが機能しない場合は、パッケージを再インストールします(構成を保存します)。
apt-get install --reinstall dhcp3-server