<div dir="ltr">I feel bad! I forgot about sending my DHCPD.conf entry. So here it is, abridged:<br><br># The ddns-updates-style parameter controls whether or not the server will<br># attempt to do a DNS update when a lease is confirmed. We default to the<br>
# behavior of the version 2 packages ('none', since DHCP v2 didn't<br># have support for DDNS.)<br>#I dont' think this is necessary for the HDHR<br>ddns-update-style none;<br><br># option definitions common to all supported networks...<br>
#I don't think this is necessary just for the HDHR<br>option domain-name "<a href="http://example.org">example.org</a>";<br>option domain-name-servers <a href="http://ns1.example.org">ns1.example.org</a>, <a href="http://ns2.example.org">ns2.example.org</a>;<br>
<br># Set the amount of time in seconds that<br># a client may keep the IP address<br><br>default-lease-time 1209600;<br>max-lease-time 1209600;<br><br># Use this to send dhcp log messages to a different log file (you also<br>
# have to hack syslog.conf to complete the redirection).<br>log-facility local7;<br><br># This is a very basic subnet declaration.<br><br>subnet <a href="http://192.168.1.0">192.168.1.0</a> netmask <a href="http://255.255.255.0">255.255.255.0</a> {<br>
range <a href="http://192.168.1.10">192.168.1.10</a> <a href="http://192.168.1.20">192.168.1.20</a>;<br># option routers <a href="http://rtr-239-0-1.example.org">rtr-239-0-1.example.org</a>, <a href="http://rtr-239-0-2.example.org">rtr-239-0-2.example.org</a>;<br>
}<br><br><br><br>Jim<br></div>