<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to bugs</title><link>https://sourceforge.net/p/dhcp-dns-server/bugs/</link><description>Recent changes to bugs</description><atom:link href="https://sourceforge.net/p/dhcp-dns-server/bugs/feed.rss" rel="self"/><language>en</language><lastBuildDate>Fri, 29 Jun 2018 03:31:32 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/dhcp-dns-server/bugs/feed.rss" rel="self" type="application/rss+xml"/><item><title>#21 DNS forwarder not working if on same machine</title><link>https://sourceforge.net/p/dhcp-dns-server/bugs/21/?limit=25#cab3</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Removed this check, should work now.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Achal Dhir</dc:creator><pubDate>Fri, 29 Jun 2018 03:31:32 -0000</pubDate><guid>https://sourceforge.net8f99512cd25debadc3d853a8ec6447d032a9000b</guid></item><item><title>#25 /tmp/opendhcp.state</title><link>https://sourceforge.net/p/dhcp-dns-server/bugs/25/?limit=25#2e15</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Should have been fixed in higher versions.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Achal Dhir</dc:creator><pubDate>Fri, 29 Jun 2018 03:30:16 -0000</pubDate><guid>https://sourceforge.net43e13541bd4d10a64099f8a578b298773c9a9e87</guid></item><item><title>#20 Primary - Secondary Replication not stable</title><link>https://sourceforge.net/p/dhcp-dns-server/bugs/20/?limit=25#fc88</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;These are very stable in versions 7.xx&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Achal Dhir</dc:creator><pubDate>Tue, 31 Mar 2015 05:41:51 -0000</pubDate><guid>https://sourceforge.net59bcd42642db9dee3812b1046cd476fff3e2a9da</guid></item><item><title>#21 DNS forwarder not working if on same machine</title><link>https://sourceforge.net/p/dhcp-dns-server/bugs/21/?limit=25#d572</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Yes it has been deliberately prevented to stop hunting.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Achal Dhir</dc:creator><pubDate>Tue, 31 Mar 2015 05:41:14 -0000</pubDate><guid>https://sourceforge.net61df2cae28bc739fd507edb3017a20a6040cb116</guid></item><item><title>#24 Only 32 CHILD_ZONES entries are read from configuration file</title><link>https://sourceforge.net/p/dhcp-dns-server/bugs/24/?limit=25#122e</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Yes these are 125 now in 7.xx versions.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Achal Dhir</dc:creator><pubDate>Tue, 31 Mar 2015 05:40:09 -0000</pubDate><guid>https://sourceforge.net62c3ba6f7e4b1bc17b7b079945f0b7524926ce1e</guid></item><item><title>#25 /tmp/opendhcp.state</title><link>https://sourceforge.net/p/dhcp-dns-server/bugs/25/?limit=25#6bcd</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;You can delete the /tmp/opendhcp.state and restart the server.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Achal Dhir</dc:creator><pubDate>Tue, 31 Mar 2015 05:35:44 -0000</pubDate><guid>https://sourceforge.net442cf2be7c1033e718b5e7b04be3fab6c1b66133</guid></item><item><title>/tmp/opendhcp.state</title><link>https://sourceforge.net/p/dhcp-dns-server/bugs/25/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;version opendhcp 1.52RC2&lt;br /&gt;
/tmp/opendhcp.state file exist then opendhcp server did not start&lt;/p&gt;
&lt;p&gt;1. run opendhcp&lt;br /&gt;
2. using for make /tmp/opendhcp.state&lt;br /&gt;
3. stop opendhcp&lt;br /&gt;
4. start opendhcp &amp;lt;-- did not start&lt;/p&gt;
&lt;p&gt;but opendhcp version 1.50 is work fine&lt;br /&gt;
Thanks&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 05 Mar 2013 09:28:15 -0000</pubDate><guid>https://sourceforge.net2e84c17c6f07046701c85a6e07ca315f138a081b</guid></item><item><title>Only 32 CHILD_ZONES entries are read from configuration file</title><link>https://sourceforge.net/p/dhcp-dns-server/bugs/24/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;In version 6.94 I've found out that if in the CHILD_ZONES section you have more than 32 zones defined, only the first 32 are actually read and used, the remaining ones are ignored.&lt;/p&gt;
&lt;p&gt;I've downloaded and checked the source file and have found out that in the code reading the .ini file there are some "if" and "for" loops which are tested not again the MAX_SERVERS or MAX_RANGES defines (which both equals 125) but directly against a 32 value. This applies to CHILD_ZONES section but also to other sections where the maximum number of entries is stated at 125.&lt;/p&gt;
&lt;p&gt;I've tried quickly replacing the instances of 32 in the .cpp file with the MAX_SERVERS define and recompiled source with MinGW and the patched executable is now reading all the zones I have configured.&lt;/p&gt;
&lt;p&gt;The patch I've applied is quite "quick and dirty" so I might have broken something else in the code, even if so far everything seems to be working good.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 12 Feb 2013 21:47:01 -0000</pubDate><guid>https://sourceforge.netbf7b55dc0618bb8f7a53998985827f653f391fb3</guid></item><item><title>Dualserver for FreeBSD</title><link>https://sourceforge.net/p/dhcp-dns-server/bugs/23/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Dualserver doesn't work properly in FreeBSD hosts due to divergences in the network code api&lt;br /&gt;
affecting network interface retrieval and message broadcast.&lt;/p&gt;
&lt;p&gt;The patches attached to this ticket are currently applied for the v6.94 of dualserver in the FreeBSD ports,&lt;br /&gt;
and must be integrated in the dualserver code for the future releases.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://files.bebik.net/patches/dualserver/patch-dualserverd.cpp" rel="nofollow"&gt;http://files.bebik.net/patches/dualserver/patch-dualserverd.cpp&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://files.bebik.net/patches/dualserver/patch-dualserverd.h" rel="nofollow"&gt;http://files.bebik.net/patches/dualserver/patch-dualserverd.h&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ros</dc:creator><pubDate>Fri, 30 Nov 2012 14:38:00 -0000</pubDate><guid>https://sourceforge.net0e702691e8b1c2b7cdc8736fbad54173ebd04779</guid></item><item><title>Dualserver for FreeBSD</title><link>https://sourceforge.net/p/dhcp-dns-server/bugs/22/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Dualserver doesn't work properly in FreeBSD hosts due to  divergences in the network code api&lt;br /&gt;
affecting network interface retrieval and message broadcast.&lt;/p&gt;
&lt;p&gt;The patches attached to this ticket are currently applied for the v6.94 of dualserver in the FreeBSD ports,&lt;br /&gt;
and must be integrated in the dualserver code for the future releases.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Fri, 30 Nov 2012 14:20:39 -0000</pubDate><guid>https://sourceforge.net4c4d4cbc636dbce8f3fba5617873842453d1a0d0</guid></item></channel></rss>