I've tried stripping my config down to the bare minimum and putting in no more than the man page says to. I basically just started with the default sample file that comes with Red Hat. But I'm still not getting any dns updates.<br>
<br>Here is my /etc/dhcpd.conf:<br>---------------------------------------<br>ddns-update-style interim;<br>ignore client-updates;<br><br>key DHCP_UPDATER {<br> algorithm hmac-md5;<br> secret pRP5FapFoJ95JEL06sv4PQ==;<br>
};<br><br>zone <a href="http://COMPANY.COM">COMPANY.COM</a>. {<br> primary 192.168.100.2;<br> key DHCP_UPDATER;<br>}<br>zone 100.168.192.in-addr.arpa. {<br> primary 192.168.100.2;<br> key DHCP_UPDATER;<br>}<br>
<br>subnet 192.168.100.0 netmask 255.255.254.0 {<br><br># --- default gateway<br> option routers 192.168.100.1;<br> option subnet-mask 255.255.254.0;<br><br># option nis-domain "<a href="http://company.com">company.com</a>";<br>
option domain-name "<a href="http://company.com">company.com</a>";<br> option domain-name-servers 192.168.100.2;<br><br># option time-offset -18000; # Eastern Standard Time<br># option ntp-servers 192.168.1.1;<br>
<br> range dynamic-bootp 192.168.100.128 192.168.100.254;<br> default-lease-time 21600;<br> max-lease-time 43200;<br>}<br>---------------------------------------<br><br>I even put in a dummy key just to see if tcpdump would show the dhcp server even attempting to contact the dns server, but tcpdump still shows absolutely no traffice between the dhcp server and the dns server.<br>
<br>I tried it with and without the key and with and without the zone declarations.<br><br>James<br>