<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>DHCP Server for Windows &#187; faq</title>
	<atom:link href="https://www.dhcpserver.de/cms/category/faq/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.dhcpserver.de/cms</link>
	<description></description>
	<lastBuildDate>Fri, 30 Jan 2026 05:36:21 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.0.38</generator>
	<item>
		<title>How to run external scripts from the HTTP server?</title>
		<link>https://www.dhcpserver.de/cms/faq/external-scripts/</link>
		<comments>https://www.dhcpserver.de/cms/faq/external-scripts/#comments</comments>
		<pubDate>Sun, 11 Aug 2024 07:38:19 +0000</pubDate>
		<dc:creator><![CDATA[uwe]]></dc:creator>
				<category><![CDATA[faq]]></category>

		<guid isPermaLink="false">http://www.dhcpserver.de/cms/?p=835</guid>
		<description><![CDATA[External scripts are a great way to enhance the HTTP server with specific features. This is supported in the Raspberry Pi Version V2.9.4.0 only, for now. The external script can be actually any executable, but the most obvious is to run a bash script. Here is an example: #!/bin/bash echo "&#60;!DOCTYPE html&#62;&#60;html&#62;&#60;head&#62;" echo "&#60;/head&#62;&#60;body&#62;" echo "&#60;h2&#62;Hello [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>External scripts are a great way to enhance the HTTP server with specific features. This is supported in the Raspberry Pi Version V2.9.4.0 only, for now.</p>
<p>The external script can be actually any executable, but the most obvious is to run a bash script. Here is an example:</p>
<pre>#!/bin/bash
echo "&lt;!DOCTYPE html&gt;&lt;html&gt;&lt;head&gt;"
echo "&lt;/head&gt;&lt;body&gt;"
echo "&lt;h2&gt;Hello Script&lt;/h2&gt;"
echo "&lt;/body&gt;&lt;/html&gt;"
</pre>
<p>Place this file into your wwwroot folder name it say &#8220;script01&#8243; and make it an executable with the chmod command from the command line:</p>
<pre>cd /usr/local/etc/dhcpsrv/wwwroot
chmod +x script01</pre>
<p>It is assumed that the HTTP Server function is enabled and reachable by an url such as http://raspberry. To execute script01 and see the resulting page enter http://raspberry/script01 into the address line of your browser and you will see the  Hello Script page. If that is not the case then please check the <a title="Why is the DHCP Status web page not showing?" href="https://www.dhcpserver.de/cms/faq/why_no_status_page/">HTTP server configuration</a>.</p>
<p>In case you don&#8217;t want to return HTML code from your script but for example some JSON structure then this can be done as well. This a bash script that returns a JSON structure:</p>
<pre>#!/bin/bash
DATA="{\"valid\":true}"
# write to stdout the HTTP response
DATESTRING=$(date "+%a, %d %b %Y %H:%M:%S %Z")
printf "HTTP/1.1 200 OK\r\n"
printf "Date: %s\r\n" "$DATESTRING"
printf "Last-Modified: %s\r\n" "$DATESTRING"
printf "Server: %s\r\n" "dhcpsrv"
printf "Content-Type: %s\r\n" "application/json"
printf "Content-Length: %s\r\n" "${#DATA}"
printf "\r\n"
printf "%s" "$DATA"</pre>
<p>As you can see the big difference is that in case of something else than a &lt;!DOCTYPE html&gt;, the full header needs to be included into the output of the bash script. Let&#8217;s paste the above into a bash script02 file and make that executable as well with chmod, then your browser will display the JSON output when directed to the url http://raspberry/script02.</p>
<p>The examples so far were HTTP GET use cases. Now let&#8217;s take a look at POST requests. POST requests differ from GET requests in extra data supplied from the client app running in the browser. This extra data is usually a list of key/value pairs as they are coming from an HTML form. The DHCP server integrated HTTP function writes that extra data into a temporary file and that filename is supplied as a parameter to the external script. Here is an example on how to deal with that:</p>
<pre>#!/bin/bash
saveIFS=$IFS
IFS='=&amp;'

declare -A post

if [ -f "$1" ]; then
 # construct the associative array for POST_STRING
 POST_STRING="$(&lt;"$1")"
 parm=($POST_STRING)
 for ((i=0; i&lt;${#parm[@]}; i+=2))
 do
    post[${parm[i]}]=${parm[i+1]}
 done
fi

IFS=$saveIFS

# do something with the post data e.g. ${post["firstname"]}

printf "HTTP/1.1 301 Moved Permanently\r\n"
printf "Date: %s\r\n" "$DATESTRING"
printf "Last-Modified: %s\r\n" "$DATESTRING"
printf "Server: %s\r\n" "dhcpsrv"
printf "Location: %s\r\n" "post.html"
printf "\r\n"</pre>
<p>We see two important things here:</p>
<ol>
<li>The post data is read from the file supplied as a argument $1 into a param array splitted by &#8216;=&#8217; and &#8216;&amp;&#8217;. The param array is only there to construct an associative array with the name &#8220;post&#8221;.   That in turn can be used by the script to perform the required action on that data.</li>
<li>The returning result text from the script is now a redirect header. This is part of the post-redirect-get pattern commonly used together with POST requests. In this case the redirection target is post.html and obviously can be anything else.</li>
</ol>
<p>We save the above script as &#8220;script03&#8243; in the wwwroot folder and call that script from a post request such as in the following example HTML post.html:</p>
<pre>&lt;!DOCTYPE html&gt;
&lt;html&gt;
 &lt;head&gt;
 &lt;/head&gt;
 &lt;body&gt;
  &lt;form method="post" id="form1"&gt;
   &lt;label for="firstname"&gt;First name:&lt;/label&gt;
   &lt;input id="id_firstname" type="text" name="firstname" p/&gt;&lt;br /&gt;

   &lt;label for="lastname"&gt;Last name:&lt;/label&gt;
   &lt;input id="id_lastname" type="text" name="lastname" p/&gt;&lt;br /&gt;

  &lt;/form&gt;
  &lt;button type="submit" form="form1" value="Submit" formaction="script03"&gt;Submit&lt;/button&gt;
 &lt;/body&gt;
&lt;/html&gt;</pre>
<p>This HTML code presents a form with two entry fields &#8220;First name&#8221; and &#8220;Last name&#8221;. Those will show up in the script03 as  ${post[&#8220;firstname&#8221;]} and ${post[&#8220;lastname&#8221;]} and can be used to perform whatever that script needs to do.</p>
<p>QUERY data is supported as well, as they are supplied as part of the URL such as &#8220;http://raspberry/script04?key1=value1&amp;key2=value2&#8243;. An enhanced version of script03 (called script04) can make use of the query data as follows:</p>
<pre>#!/bin/bash
saveIFS=$IFS
IFS='=&amp;'

declare -A post
<strong>declare -A query</strong>

<strong># construct the associative array for QUERY_STRING
parm=($QUERY_STRING)
for ((i=0; i&lt;${#parm[@]}; i+=2))
do
 query[${parm[i]}]=${parm[i+1]}
done
</strong>
if [ -f "$1" ]; then
 # construct the associative array for POST_STRING
 POST_STRING="$(&lt;"$1")"
 parm=($POST_STRING)
 for ((i=0; i&lt;${#parm[@]}; i+=2))
 do
    post[${parm[i]}]=${parm[i+1]}
 done
fi

IFS=$saveIFS

# do something with the post data e.g. ${post["firstname"]} or ${query["key1"]}

printf "HTTP/1.1 301 Moved Permanently\r\n"
printf "Date: %s\r\n" "$DATESTRING"
printf "Last-Modified: %s\r\n" "$DATESTRING"
printf "Server: %s\r\n" "dhcpsrv"
printf "Location: %s\r\n" "post.html"
printf "\r\n"</pre>
<p>The scripts executed this way run with the privilege of the dhcpsrv executable. Usually root privileges in case of systemctl based installation as described <a title="DHCP Server on Raspberry Pi" href="https://www.dhcpserver.de/cms/dhcp-server-on-raspberry-pi/">here</a>. Handle with care!</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>https://www.dhcpserver.de/cms/faq/external-scripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Does the integrated HTTP Server support POST?</title>
		<link>https://www.dhcpserver.de/cms/faq/does-the-integrated-http-server-support-post/</link>
		<comments>https://www.dhcpserver.de/cms/faq/does-the-integrated-http-server-support-post/#comments</comments>
		<pubDate>Sun, 11 Aug 2024 07:35:53 +0000</pubDate>
		<dc:creator><![CDATA[uwe]]></dc:creator>
				<category><![CDATA[faq]]></category>

		<guid isPermaLink="false">http://www.dhcpserver.de/cms/?p=833</guid>
		<description><![CDATA[Yes, POST requests are supported since V2.9.4.0 on Raspberry Pi version only for now. It works in a CGI like manner and is described in detail here.]]></description>
				<content:encoded><![CDATA[<p style="text-align: left;">Yes, POST requests are supported since V2.9.4.0 on Raspberry Pi version only for now. It works in a CGI like manner and is described in detail <a title="How to run external scripts from the HTTP server?" href="https://www.dhcpserver.de/cms/faq/external-scripts/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.dhcpserver.de/cms/faq/does-the-integrated-http-server-support-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to configure DHCP server for redundancy?</title>
		<link>https://www.dhcpserver.de/cms/faq/how-to-redundancy/</link>
		<comments>https://www.dhcpserver.de/cms/faq/how-to-redundancy/#comments</comments>
		<pubDate>Mon, 31 Aug 2020 03:27:53 +0000</pubDate>
		<dc:creator><![CDATA[uwe]]></dc:creator>
				<category><![CDATA[faq]]></category>

		<guid isPermaLink="false">http://www.dhcpserver.de/cms/?p=722</guid>
		<description><![CDATA[The DHCP Server supports the split scope redundancy Split scope means that you simply run two DHCP servers each with a different IP range. A client asking for an IP address by broadcasting a DHCPDISCOVER message gets two answers. This adds network traffic but is otherwise not creating any trouble. The client will choose one [&#8230;]]]></description>
				<content:encoded><![CDATA[<h4>The DHCP Server supports the split scope redundancy</h4>
<p>Split scope means that you simply run two DHCP servers each with a different IP range. A client asking for an IP address by broadcasting a DHCPDISCOVER message gets two answers. This adds network traffic but is otherwise not creating any trouble. The client will choose one of the answers (mostly the first it got). Once an IP address is assigned then the client will extend the lease by sending the DHCP message by unicast anyway and is therefore only talking to the chosen DHCP server. The client will reinitiate the complete process in case that server is down and does not reply to requests. The beauty of split scope redundancy is, that it only relies on standard DHCP protocol mechanisms. The client will simply get a new IP address from the other DHCP server and will be happy to talk to that server from now on. Another big benefit is that since the two DHCP servers never sync up, they don‘t need to be the same software or software version.</p>
<p>Configuration of server 1:</p>
<pre class="textbox">[Settings]
IPPOOL_1=10.0.0.2-200
IPBIND_1=10.0.0.1
AssociateBindsToPools=1
Trace=1

[GENERAL]
LEASETIME=86400
NODETYPE=8
SUBNETMASK=255.255.254.0
</pre>
<p>Configuration of server 2:</p>
<pre class="textbox">[Settings]
IPPOOL_1=10.0.1.2-200
IPBIND_1=10.0.1.1
AssociateBindsToPools=1
Trace=1

[GENERAL]
LEASETIME=86400
NODETYPE=8
SUBNETMASK=255.255.254.0</pre>
<p>Please note that I have chosen a subnet mask of <b>255.255.254.0</b> which allows me to have twice as many IP addresses. The two servers are running on two different computers with the IP addresses 10.0.0.1 and 10.0.1.1, respectively. Each serve different IP ranges: 10.0.0.2-200 and 10.0.1.2-200.</p>
<p>The clients can talk to each other and to both servers with no problem, because they are all on the same subnet 10.0.0.1/23 but get IP addresses assigned depending on which server was chosen.</p>
<p>The only thing that needs to be taken care of is to set DNS_0 and ROUTER_0 dependent on your network infrastructure.</p>
<p>In case DHCP server acts as DNS server as well, then one problem exists. A DNS request reaching server 0 can not be fulfilled with data stored at server 1, and vice versa. Therefore, since V2.9 the SyncServer feature has been introduced. Here is the same example as above with the SyncServer feature enabled:</p>
<p>Configuration of server 1:</p>
<pre class="textbox">[Settings]
IPPOOL_1=10.0.0.2-200
IPBIND_1=10.0.0.1
AssociateBindsToPools=1
Trace=1
<strong>SyncServer=10.0.1.1:80</strong>

[GENERAL]
LEASETIME=86400
NODETYPE=8
SUBNETMASK=255.255.254.0

<strong>[HTTP-SETTINGS]
EnableHTTP=1

</strong></pre>
<p>Configuration of server 2:</p>
<pre class="textbox">[Settings]
IPPOOL_1=10.0.1.2-200
IPBIND_1=10.0.1.1
AssociateBindsToPools=1
Trace=1
<strong>SyncServer=10.0.0.1:80</strong>

[GENERAL]
LEASETIME=86400
NODETYPE=8
SUBNETMASK=255.255.254.0

<strong>[HTTP-SETTINGS]
EnableHTTP=1
</strong></pre>
<p>Please note that enabling the HTTP function is essential for this to work, because the sync mechanism simply utilizes the same communication as the status web page.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.dhcpserver.de/cms/faq/how-to-redundancy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to uninstall DHCP server</title>
		<link>https://www.dhcpserver.de/cms/faq/how-to-uninstall-dhcp-server/</link>
		<comments>https://www.dhcpserver.de/cms/faq/how-to-uninstall-dhcp-server/#comments</comments>
		<pubDate>Fri, 03 Apr 2015 15:18:21 +0000</pubDate>
		<dc:creator><![CDATA[uwe]]></dc:creator>
				<category><![CDATA[faq]]></category>

		<guid isPermaLink="false">http://www.dhcpserver.de/cms/?p=585</guid>
		<description><![CDATA[The DHCP server has no install function and therefore also does not have an uninstall function either. The DHCP server runs as an application without any install, just run it and stop it as you wish. If you are using the DHCP server as a service then you have to remove the service. To remove the service, [&#8230;]]]></description>
				<content:encoded><![CDATA[<div class="">The DHCP server has no install function and therefore also does not have an uninstall function either. The DHCP server runs as an application without any install, just run it and stop it as you wish.</div>
<div class="">If you are using the DHCP server as a service then you have to remove the service. To remove the service, you can either just hit the stop followed by the remove button or you go into the services applet of windows and remove the service there. Please keep in mind that you need administrator privileges to do so.</p>
<div class=""></div>
<div class=""><a href="https://www.dhcpserver.de/cms/wp-content/uploads/2014/09/dhcpwiz_6.jpg"><img class="aligncenter size-full wp-image-475" src="https://www.dhcpserver.de/cms/wp-content/uploads/2014/09/dhcpwiz_6.jpg" alt="dhcpwiz_6" width="503" height="409" /></a></div>
<div class="">Some people that have used the HTTP function of the DHCP server software, have experienced that the browser shows the DHCP status page even when the software is not running. This is due to the browser and its cache. Please just clean your browser cache in that case.</div>
<div class=""></div>
<div class="">After you have removed the service and cleaned the browser cache, the DHCP server software is completely removed from your system.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>https://www.dhcpserver.de/cms/faq/how-to-uninstall-dhcp-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to exclude clients from IP assignment</title>
		<link>https://www.dhcpserver.de/cms/faq/how-to-exclude-clients-from-ip-assignment/</link>
		<comments>https://www.dhcpserver.de/cms/faq/how-to-exclude-clients-from-ip-assignment/#comments</comments>
		<pubDate>Sun, 21 Sep 2014 09:04:06 +0000</pubDate>
		<dc:creator><![CDATA[uwe]]></dc:creator>
				<category><![CDATA[faq]]></category>

		<guid isPermaLink="false">http://www.dhcpserver.de/cms/?p=548</guid>
		<description><![CDATA[Option 1: Exclude with negative (black) list You can use the IPSCOPE feature, in order to exclude one or more clients from getting an IP address assigned. Assuming you want to exclude just one client with a given MAC address (e.g. 08:00:00:01:03:A1). Here is an example: [Settings] IPPOOL_1=10.30.99.2-30 IPBIND_1=10.30.99.1 IPSCOPE_1=if(chaddr == "08:00:00:01:03:A1", null, "validdevice"); AssociateBindsToPools=1 [&#8230;]]]></description>
				<content:encoded><![CDATA[<h4>Option 1: Exclude with negative (black) list</h4>
<p>You can use the <a title="IPSCOPE" href="/cms/ini_file_reference/settings/ipscope/">IPSCOPE</a> feature, in order to exclude one or more clients from getting an IP address assigned. Assuming you want to exclude just one client with a given MAC address (e.g. 08:00:00:01:03:A1). Here is an example:</p>
<pre class="textbox">[Settings]
IPPOOL_1=10.30.99.2-30
IPBIND_1=10.30.99.1
<b>IPSCOPE_1=if(chaddr == "08:00:00:01:03:A1", null, "validdevice");</b>

AssociateBindsToPools=1
Trace=1
DeleteOnRelease=0
ExpiredLeaseTimeout=3600

[GENERAL]
LEASETIME=86400
NODETYPE=8
SUBNETMASK=255.255.255.0
DNS_0=10.30.99.1
ROUTER_0=10.30.99.1
</pre>
<p>This will consider all clients but 08:00:00:01:03:A1 to be a &#8220;validdevice&#8221;. 08:00:00:01:03:A1 is not.</p>
<p>The term validdevice can be used to configure specifics in the scope section for the devices named by IPSCOPE_1. You can follow up on that by reading the <a title="IPSCOPE feature description" href="/cms/ini_file_reference/settings/ipscope/">IPSCOPE feature description</a>. There is no need to go into details of that now for excluding certain devices from IP address assignment.</p>
<p>If you want to exclude even more devices then just extent the IPSCOPE setting accordingly:</p>
<pre class="textbox">[Settings]
...
<b>IPSCOPE_1=if(chaddr == "08:00:00:01:03:A1" || chaddr == "08:00:00:01:03:A2", null, "validdevice");</b>
...</pre>
<p>Now also 08:00:00:01:03:A2 will not get an IP address anymore.<br />
Please be aware that this feature works only, if the client(s) don&#8217;t already have a client section in the INI file. Only new clients (unknown to the DHCP server) will be selected based on the IPSCOPE definition.</p>
<h4>Option 2: Exclude with positive (white) list</h4>
<p>The other way to define which client get an IP address assigned is a white-list approach. Here is an example on how to do that based on the <a title="IgnoreUnknownClients" href="/cms/ini_file_reference/settings/ignoreunknownclients/">IgnoreUnkownClients</a> setting:</p>
<pre class="textbox">[Settings]
IPPOOL_1=10.30.99.2-30
IPBIND_1=10.30.99.1

AssociateBindsToPools=1
Trace=1
DeleteOnRelease=0
ExpiredLeaseTimeout=3600
<b>IgnoreUnknownClients=1</b>

[GENERAL]
LEASETIME=86400
NODETYPE=8
SUBNETMASK=255.255.255.0
DNS_0=10.30.99.1
ROUTER_0=10.30.99.1

; white-list of clients that get an IP address assigned:
[10-11-12-13-14-15]
[10-11-12-13-14-16]
[10-11-12-13-14-17]
[10-11-12-13-14-18]
</pre>
<p>Please note that only the four clients listed based on their mac addresses will be served by the DHCP server. The client section does not need to include anything. Simply add more client mac addresses to the list to serve them as well.<br />
The key to this approach is, besides the fact that you need to know the clients beforehand, is to set IgnoreUnkownClients=1. You can add clients to the INI file anytime. And, you can even use wildcards, as described <a title="here" href="/cms/ini_file_reference/special/client-sections-with-wildcards/">here</a>.</p>
<p>The following example adds all clients 10-11-12-13-14-00 up to 10-11-12-13-14-FF  to the (white) list of clients:</p>
<pre class="textbox">...
[10-11-12-13-14-??]
...
</pre>
]]></content:encoded>
			<wfw:commentRss>https://www.dhcpserver.de/cms/faq/how-to-exclude-clients-from-ip-assignment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why does IgnoreUnknownClients not work as expected?</title>
		<link>https://www.dhcpserver.de/cms/faq/how_to_ignoreunknownclients/</link>
		<comments>https://www.dhcpserver.de/cms/faq/how_to_ignoreunknownclients/#comments</comments>
		<pubDate>Sat, 06 Sep 2014 12:03:31 +0000</pubDate>
		<dc:creator><![CDATA[uwe]]></dc:creator>
				<category><![CDATA[faq]]></category>

		<guid isPermaLink="false">http://www.dhcpserver.de/cms/?p=83</guid>
		<description><![CDATA[Sometimes there is confusion about IgnoreUnknownClients. There are two settings that control the behavior of the DHCP server with respect to unknown clients: ConfigureUnknownClients and IgnoreUnknownClients. ConfigureUnknownClients controls whether an unknown client gets an entry automatically generated in the INI file based on IPPOOLs and so on. What makes a client a known client is [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Sometimes there is confusion about IgnoreUnknownClients. There are two settings that control the behavior of the DHCP server with respect to unknown clients: ConfigureUnknownClients and IgnoreUnknownClients. ConfigureUnknownClients controls whether an unknown client gets an entry automatically generated in the INI file based on IPPOOLs and so on. What makes a client a known client is any kind of client section in the INI file. This can be a client section with wildcards. This client section does not need to contain any IPADDR entry. The IPADDR entry is generated automatically. IgnoreUnknownClients controls how the DHCP server behaves in cases in which no client section is generated by the DHCP server. Sent a NAK to the requesting client or simple ignore the request. Example:</p>
<pre class="textbox">[00-40-8C-??-??-??] ; support only clients with mac address starting with 00-40-8C
AutoConfig=1
[Settings]
ConfigureUnknownClients=0
IgnoreUnknownClients=1</pre>
<p>This tells the DHCP server to configure only clients with mac address 00-40-8C-??-??-?? and do not respond to any requests from other kind of clients.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.dhcpserver.de/cms/faq/how_to_ignoreunknownclients/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Does the DHCP server support more than one ethernet card?</title>
		<link>https://www.dhcpserver.de/cms/faq/multiple_nics/</link>
		<comments>https://www.dhcpserver.de/cms/faq/multiple_nics/#comments</comments>
		<pubDate>Sat, 06 Sep 2014 12:00:28 +0000</pubDate>
		<dc:creator><![CDATA[uwe]]></dc:creator>
				<category><![CDATA[faq]]></category>

		<guid isPermaLink="false">http://www.dhcpserver.de/cms/?p=81</guid>
		<description><![CDATA[Yes. It automatically uses all NIC&#8217;s that it finds and listens for incoming DHCP requests. Windows 2000 (and later OSs) has a little bit of a different behavior than previous Windows operating systems. It doesn&#8217;t tell you the IP address of an adapter until it is physically connected. The DHCP server since V1.3 supports that [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Yes. It automatically uses all NIC&#8217;s that it finds and listens for incoming DHCP requests. Windows 2000 (and later OSs) has a little bit of a different behavior than previous Windows operating systems. It doesn&#8217;t tell you the IP address of an adapter until it is physically connected. The DHCP server since V1.3 supports that as well by implicitly stopping and starting itself whenever a change in the IP configuration occurs.<br />
You can also restrict the DHCP Server to certain cards by using the <a title="UseClientID" href="/cms/ini_file_reference/settings/ipbind"> IPBIND_x </a>entries in the [Settings] section or server &#8220;virtualization&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.dhcpserver.de/cms/faq/multiple_nics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Does the DHCP server support the BOOTP protocol?</title>
		<link>https://www.dhcpserver.de/cms/faq/support_bootp/</link>
		<comments>https://www.dhcpserver.de/cms/faq/support_bootp/#comments</comments>
		<pubDate>Sat, 06 Sep 2014 11:58:25 +0000</pubDate>
		<dc:creator><![CDATA[uwe]]></dc:creator>
				<category><![CDATA[faq]]></category>

		<guid isPermaLink="false">http://www.dhcpserver.de/cms/?p=79</guid>
		<description><![CDATA[Yes. The DHCP server implements the DHCP protocol. And since V1.8 also the BOOTP style requests are supported.]]></description>
				<content:encoded><![CDATA[<p>Yes. The DHCP server implements the DHCP protocol. And since V1.8 also the BOOTP style requests are supported.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.dhcpserver.de/cms/faq/support_bootp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is it possible to get the source code of the DHCP server?</title>
		<link>https://www.dhcpserver.de/cms/faq/source_available/</link>
		<comments>https://www.dhcpserver.de/cms/faq/source_available/#comments</comments>
		<pubDate>Sat, 06 Sep 2014 11:57:14 +0000</pubDate>
		<dc:creator><![CDATA[uwe]]></dc:creator>
				<category><![CDATA[faq]]></category>

		<guid isPermaLink="false">http://www.dhcpserver.de/cms/?p=77</guid>
		<description><![CDATA[DHCP Server for Windows is not open source and therefore the source code is not available for free.]]></description>
				<content:encoded><![CDATA[<p>DHCP Server for Windows is not open source and therefore the source code is not available for free.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.dhcpserver.de/cms/faq/source_available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is it necessary to restart the DHCP server after editing the INI file?</title>
		<link>https://www.dhcpserver.de/cms/faq/restart_after_edit/</link>
		<comments>https://www.dhcpserver.de/cms/faq/restart_after_edit/#comments</comments>
		<pubDate>Sat, 06 Sep 2014 11:54:37 +0000</pubDate>
		<dc:creator><![CDATA[uwe]]></dc:creator>
				<category><![CDATA[faq]]></category>

		<guid isPermaLink="false">http://www.dhcpserver.de/cms/?p=75</guid>
		<description><![CDATA[No. The DHCP server reads the dhcpsrv.ini every time again, when a client requests an IP address.]]></description>
				<content:encoded><![CDATA[<p>No. The DHCP server reads the dhcpsrv.ini every time again, when a client requests an IP address.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.dhcpserver.de/cms/faq/restart_after_edit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
