由 sbrd 在 04-20-2004 11:32 发表:
请问为什么DHCP无法启动
我的系统是redhat9,现在要做一个dhcp服务器,一下是我的dhcpd.conf的配置
subnet 192.168.0.0 netmask 255.255.255.0 {
default-lease-time 86400;
max-lease-time 6220800;
option routers 192.168.0.1;
option subnet-mask 255.255.255.0;
option domain-name "mydomain.com";
#option broadcast-address 192.168.0.255;
option domain-name-servers 192.168.0.1;
range dynamic-bootp 192.168.0.21 192.168.0.253;
}
每次系统启动的时候dhcp就报错,手工启动也报错,报错内容如下,请问这是什么原因,该如何解决。谢谢
Starting dhcpd: Internet Software Consortium DHCP Server V3.0pl1
Copyright 1995-2001 Internet Software Consortium.
All rights reserved.
For info, please visit http://www.isc.org/products/DHCP
** You must add a ddns-update-style statement to /etc/dhcpd.conf.
To get the same behaviour as in 3.0b2pl11 and previous
versions, add a line that says "ddns-update-style ad-hoc;"
Please read the dhcpd.conf manual page for more information. **
If you did not get this software from ftp.isc.org, please
get the latest from ftp.isc.org and install that before
requesting help.
If you did get this software from ftp.isc.org and have not
yet read the README, please read it before requesting help.
If you intend to request help from the [email protected]
mailing list, please read the section on the README about
submitting bug reports and requests for help.
Please do not under any circumstances send requests for
help directly to the authors of this software - please
send them to the appropriate mailing list as described in
the README file.
exiting.
由 sbrd 在 04-20-2004 13:35 发表:
搞定了,有几个参数我不明白,请教一下
ddns-update-style interim;
ignore client-updates;
option time-offset -18000;
这三个参数是干什么用的,能解释一下吗?谢谢
由 pippo999 在 04-20-20