我在我的网络中设置了几个子网,并且在其中一个子网中我设置了如下主机:
subnet 10.0.0.0 netmask 255.255.255.0 {
option ntp-servers 10.0.0.1;
option time-servers 10.0.0.1;
authoritative;
allow client-updates;
allow unknown-clients;
range 10.0.0.10 10.0.0.250;
option domain-name-servers 10.0.0.1;
ddns-updates on;
ddns-domainname "yellow";
option domain-search "yellow";
# Rack 3 UPS
host rack3ups {
allow client-updates;
hardware ethernet 28:29:86:xxxxxxxx;
fixed-address 10.0.0.203;
}
子网中的客户端更新绑定 DNS 服务器,我可以在租约文件中看到它们,但看不到主机定义。
有人能告诉我为什么这不起作用吗,或者也许这不起作用,我应该自己更新 DNS 服务器(感觉有点小题大做)。
谢谢,亨克