<?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; example</title>
	<atom:link href="http://www.dhcpserver.de/cms/category/example/feed/" rel="self" type="application/rss+xml" />
	<link>http://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>Example 4: Static configuration on one subnet</title>
		<link>http://www.dhcpserver.de/cms/example/example-4/</link>
		<comments>http://www.dhcpserver.de/cms/example/example-4/#comments</comments>
		<pubDate>Mon, 08 Sep 2014 20:37:00 +0000</pubDate>
		<dc:creator><![CDATA[uwe]]></dc:creator>
				<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://www.dhcpserver.de/cms/?p=428</guid>
		<description><![CDATA[The INI file looks like this: [General] SUBNETMASK=255.255.255.0 LEASETIME=32000000 ; approx. 1 year ROUTER_1=192.168.10.1 DNS_1=192.168.10.1 [Settings] IPBIND_1=192.168.10.1 IgnoreUnknownClients=1 [00-E0-00-1C-AB-68] ; Client 2 IPADDR=192.168.10.50 [00-E0-00-1C-AB-67] ; Client 1 IPADDR=192.168.10.11 Please note the line IgnoreUnknownClients=1. This option prevents the DHCP Server from sending answers to clients that are not configured in the INI file.]]></description>
				<content:encoded><![CDATA[<p>The INI file looks like this:</p>
<p><a href="https://www.dhcpserver.de/cms/wp-content/uploads/2014/09/netpic6.gif"><img class="alignright size-full wp-image-430" src="https://www.dhcpserver.de/cms/wp-content/uploads/2014/09/netpic6.gif" alt="netpic6" width="258" height="205" /></a></p>
<pre class="textbox">[General]
SUBNETMASK=255.255.255.0
LEASETIME=32000000 ; approx. 1 year
ROUTER_1=192.168.10.1
DNS_1=192.168.10.1
[Settings]
IPBIND_1=192.168.10.1
IgnoreUnknownClients=1
[00-E0-00-1C-AB-68] ; Client 2
IPADDR=192.168.10.50
[00-E0-00-1C-AB-67] ; Client 1
IPADDR=192.168.10.11
</pre>
<p>Please note the line IgnoreUnknownClients=1. This option prevents the DHCP Server from sending answers to clients that are not configured in the INI file. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhcpserver.de/cms/example/example-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Example 3: The server has 2 or more NICs and manages clients on two subnets</title>
		<link>http://www.dhcpserver.de/cms/example/example-3/</link>
		<comments>http://www.dhcpserver.de/cms/example/example-3/#comments</comments>
		<pubDate>Mon, 08 Sep 2014 19:58:42 +0000</pubDate>
		<dc:creator><![CDATA[uwe]]></dc:creator>
				<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://www.dhcpserver.de/cms/?p=398</guid>
		<description><![CDATA[The INI file looks like this: [General] SUBNETMASK=255.255.255.0 ROUTER_1=192.168.10.1 DNS_1=192.168.10.1 [Settings] AssociateBindsToPools=1 IPBIND_1=192.168.10.1 IPBIND_2=192.168.11.1 IPPOOL_1=192.168.10.2-49 IPPOOL_2=192.168.11.2-49 This manages the IP addresses 192.168.10.2 until 192.168.10.49 for Ethernet 1 and 192.168.11.2 until 192.168.11.49 for Ethernet 2. Please note the line AssociateBindsToPools=1. This option associates the IP Pools with the corresponding IP Binds. Without that option the DHCP [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="https://www.dhcpserver.de/cms/wp-content/uploads/2014/09/netpic4.gif"><img class="alignright size-full wp-image-415" src="https://www.dhcpserver.de/cms/wp-content/uploads/2014/09/netpic4.gif" alt="netpic4" width="230" height="200" /></a>The INI file looks like this:</p>
<pre class="textbox">[General]
SUBNETMASK=255.255.255.0
ROUTER_1=192.168.10.1 
DNS_1=192.168.10.1 
[Settings]
AssociateBindsToPools=1
IPBIND_1=192.168.10.1
IPBIND_2=192.168.11.1
IPPOOL_1=192.168.10.2-49
IPPOOL_2=192.168.11.2-49
</pre>
<p>This manages the IP addresses 192.168.10.2 until 192.168.10.49 for Ethernet 1 and 192.168.11.2 until 192.168.11.49 for Ethernet 2. Please note the line AssociateBindsToPools=1. This option associates the IP Pools with the corresponding IP Binds. Without that option the DHCP Server would view all IPPOOL_x as one big IP pool independent of the subnet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhcpserver.de/cms/example/example-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Example 2: The server has 2 or more NICs and manages clients on one of the subnets</title>
		<link>http://www.dhcpserver.de/cms/example/example-2/</link>
		<comments>http://www.dhcpserver.de/cms/example/example-2/#comments</comments>
		<pubDate>Mon, 08 Sep 2014 19:58:28 +0000</pubDate>
		<dc:creator><![CDATA[uwe]]></dc:creator>
				<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://www.dhcpserver.de/cms/?p=396</guid>
		<description><![CDATA[The INI file looks like this: [General] SUBNETMASK=255.255.255.0 ROUTER_1=192.168.10.1 DNS_1=192.168.10.1 [Settings] IPBIND_1=192.168.10.1 IPPOOL_1=192.168.10.2-49 This manages the IP addresses 192.168.10.2 until 192.168.10.49. The DHCP Server binds only to one NIC with the IP address 192.168.10.1. The other NIC (Ethernet 2) is not touched by the DHCP Server. This is very useful if Ethernet 2 is your [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="https://www.dhcpserver.de/cms/wp-content/uploads/2014/09/netpic3.gif"><img class="alignright size-full wp-image-411" src="https://www.dhcpserver.de/cms/wp-content/uploads/2014/09/netpic3.gif" alt="netpic3" width="207" height="214" /></a>The INI file looks like this:</p>
<pre class="textbox">[General]
SUBNETMASK=255.255.255.0
ROUTER_1=192.168.10.1 
DNS_1=192.168.10.1 
[Settings]
IPBIND_1=192.168.10.1
IPPOOL_1=192.168.10.2-49 
</pre>
<p>This manages the IP addresses 192.168.10.2 until 192.168.10.49. The DHCP Server binds only to one NIC with the IP address 192.168.10.1. The other NIC (Ethernet 2) is not touched by the DHCP Server. This is very useful if Ethernet 2 is your company LAN and you don’t want to interfere with it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhcpserver.de/cms/example/example-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Example 1: The server has only one NIC and manages clients on the same subnet</title>
		<link>http://www.dhcpserver.de/cms/example/example-1/</link>
		<comments>http://www.dhcpserver.de/cms/example/example-1/#comments</comments>
		<pubDate>Mon, 08 Sep 2014 19:51:44 +0000</pubDate>
		<dc:creator><![CDATA[uwe]]></dc:creator>
				<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://www.dhcpserver.de/cms/?p=386</guid>
		<description><![CDATA[This is a very simple example and the INI file looks like this: [General] SUBNETMASK=255.255.255.0 ROUTER_1=192.168.10.1 DNS_1=192.168.10.1 [Settings] IPPOOL_1=192.168.10.2-49 This manages the IP addresses 192.168.10.2 until 192.168.10.49. But be aware that all clients connected to the subnet 192.168.10.X get IP addresses assigned. Please make sure that you don’t get in conflict with other DHCP Servers.]]></description>
				<content:encoded><![CDATA[<p><a href="https://www.dhcpserver.de/cms/wp-content/uploads/2014/09/netpic5.gif"><img class="alignright wp-image-387 size-full" src="https://www.dhcpserver.de/cms/wp-content/uploads/2014/09/netpic5.gif" alt="netpic5" width="199" height="203" /></a>This is a very simple example and the INI file looks like this:</p>
<pre class="textbox">[General]
SUBNETMASK=255.255.255.0
ROUTER_1=192.168.10.1 
DNS_1=192.168.10.1 
[Settings]
IPPOOL_1=192.168.10.2-49
</pre>
<p>This manages the IP addresses 192.168.10.2 until 192.168.10.49. But be aware that all clients connected to the subnet 192.168.10.X get IP addresses assigned. Please make sure that you don’t get in conflict with other DHCP Servers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dhcpserver.de/cms/example/example-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
