dhcp服务器得一些问题!
最近做了一个redhat as 3.0下的dhcp服务器:配置如下:
ddns-update-style interim;
ignore client-updates;
subnet 192.168.211.0 netmask 255.255.255.0 {
# --- default gateway
option routers 192.168.211.1;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.211.255
option nis-domain "domain.org";
option domain-name "domain.org";
option domain-name-servers 202.107.117.11,202.107.117.12;
option time-offset -18000; # Eastern Standard Time
# option ntp-servers 192.168.1.1;
# option netbios-name-servers 192.168.1.1;
# --- Selects point-to-point node (default is hybrid). Don't change this unless
# -- you understand Netbios very well
# option netbios-node-type 2;file:/usr/share/doc/dhcp-3.0pl2/dhcpd.conf.sample
range dynamic-bootp 192.168.211.122 192.168.211.134;
default-lease-time 21600;
max-lease-time 43200;
# we want the nameserver to appear at a fixed address
host ns {
next-server marvin.redhat.com;
hardware ethernet 12:34:56:78:AB:CD;
fixed-address 207.175.42.254;
}
}
但是我在win2000的客户机上使用自动配置却不好用,以上配置说明如下:
我的网段:192.168.211.0
IP范围:192.168.211.122-144
掩码:255.255.255.0
网关:192.168.211.1
广播:192.168.211.255
DNS:202.107.117.11,202.107.117.12
请问我的配置有问题吗?其它还需要什么配置吗?客户端还有什么要求吗?