I'm putting in an ISC DHCPD server to replace Microsoft DHCP server
because it is a pain in the neck managing reserved hosts in Microsoft's
DHCP.<br>
<br>
Anyway, it won't add the clients that it assigns addresses for to the
DNS servers. I've set the zones on the dns servers to accept secure and
non-secure updates, and here is my dhcpd.conf:<br>
--------------------<br>
##### SERVER SETTINGS #####<br>
<br>
ddns-update-style interim;<br>
ignore client-updates;<br>
update-static-leases on;<br>
<br>
zone <a href="http://bucoks.com">bucoks.com</a> {<br>
        primary 192.168.100.2;<br>
        secondary 192.168.100.3;<br>
}<br>
zone 100.168.192.in-addr.arpa. {<br>
        primary 192.168.100.2;<br>
        secondary 192.168.100.3;<br>
}<br>
<br>
option domain-name              "<a href="http://company.com">company.com</a>";<br>
option domain-name-servers      192.168.100.2, 192.168.100.3;<br>
<br>
# 8-day leases<br>
default-lease-time              69102;<br>
<br>
# disable bootp<br>
deny bootp;<br>
#deny dynamic bootp clients;<br>
<br>
##### SUBNET SETTINGS #####<br>
<br>
subnet 192.168.100.0 netmask 255.255.254.0 {<br>
        option routers                  192.168.100.1;<br>
        option subnet-mask              255.255.254.0;<br>
<br>
        range 192.168.100.0 192.168.101.254;<br>
<br>
        host server1 {<br>
                option host-name "<a href="http://server1.company.com">server1.company.com</a>";<br>
                hardware ethernet 00:XX:XX:XX:XX:XX;<br>
                fixed-address 192.168.100.4;<br>
        } # end of host<br>
<br>
        host server2 {<br>
                option host-name "<a href="http://server2.company.com">server2.company.com</a>";<br>
                hardware ethernet 00:XX:XX:XX:XX:XX;<br>
                fixed-address 192.168.100.5;<br>
        } # end of host<br>
<br>
} # end of subnet<br>
--------------------<br>
<br>
I can't find anything about even attempting to update dns in the logs,
just that the dhcp addresses were requested and acknowledged, and all
static and dynamic clients are getting addresses just fine.<br>
<br>
Any ideas? I'm not even sure if it's really not even trying to do the
dns updates or if I just need to set something to get some better
logging?  A tcpdump shows that the dhcp server is not even attempting any communication with the dns server.<br>