<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: How to Install a DHCP Server in Ubuntu and Debian	</title>
	<atom:link href="https://www.tecmint.com/install-dhcp-server-in-ubuntu-debian/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/install-dhcp-server-in-ubuntu-debian/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Sat, 04 Sep 2021 01:40:01 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: sokha		</title>
		<link>https://www.tecmint.com/install-dhcp-server-in-ubuntu-debian/comment-page-1/#comment-1580152</link>

		<dc:creator><![CDATA[sokha]]></dc:creator>
		<pubDate>Sat, 04 Sep 2021 01:40:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=25125#comment-1580152</guid>

					<description><![CDATA[Hi, Sir I have some problem I can run my application on ubuntu on vmware ESXi but i can&#039;t access it from another computer on the same network with IP and port first I think ufw is blocked my port but when I allow and disable it still not work]]></description>
			<content:encoded><![CDATA[<p>Hi, Sir I have some problem I can run my application on ubuntu on vmware ESXi but i can&#8217;t access it from another computer on the same network with IP and port first I think ufw is blocked my port but when I allow and disable it still not work</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aaron Kili		</title>
		<link>https://www.tecmint.com/install-dhcp-server-in-ubuntu-debian/comment-page-1/#comment-1286348</link>

		<dc:creator><![CDATA[Aaron Kili]]></dc:creator>
		<pubDate>Mon, 11 Nov 2019 08:22:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=25125#comment-1286348</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-dhcp-server-in-ubuntu-debian/comment-page-1/#comment-1284539&quot;&gt;Alan&lt;/a&gt;.

@Alan

Welcome, thanks for the feedback.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-dhcp-server-in-ubuntu-debian/comment-page-1/#comment-1284539">Alan</a>.</p>
<p>@Alan</p>
<p>Welcome, thanks for the feedback.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Alan		</title>
		<link>https://www.tecmint.com/install-dhcp-server-in-ubuntu-debian/comment-page-1/#comment-1284539</link>

		<dc:creator><![CDATA[Alan]]></dc:creator>
		<pubDate>Fri, 08 Nov 2019 13:50:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=25125#comment-1284539</guid>

					<description><![CDATA[Amazing, the guide was easy to follow, thanks.]]></description>
			<content:encoded><![CDATA[<p>Amazing, the guide was easy to follow, thanks.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Manglada		</title>
		<link>https://www.tecmint.com/install-dhcp-server-in-ubuntu-debian/comment-page-1/#comment-1269089</link>

		<dc:creator><![CDATA[Manglada]]></dc:creator>
		<pubDate>Tue, 15 Oct 2019 07:40:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=25125#comment-1269089</guid>

					<description><![CDATA[Thank you this article helped me a lot, I found no problems after following the steps in this post. it&#039;s just that I&#039;m configuring wrong interfaces..]]></description>
			<content:encoded><![CDATA[<p>Thank you this article helped me a lot, I found no problems after following the steps in this post. it&#8217;s just that I&#8217;m configuring wrong interfaces..</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Lord Randy		</title>
		<link>https://www.tecmint.com/install-dhcp-server-in-ubuntu-debian/comment-page-1/#comment-1223606</link>

		<dc:creator><![CDATA[Lord Randy]]></dc:creator>
		<pubDate>Tue, 13 Aug 2019 07:29:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=25125#comment-1223606</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-dhcp-server-in-ubuntu-debian/comment-page-1/#comment-1136308&quot;&gt;Shuvo&lt;/a&gt;.

You could do that, but your configuration is wrong. You need to learn about subnet masking. Your netmask would need to allow for all those clients to fit in the range. After that you could add all the subnets you want and need. 

Another issue you will run into is broadcast storms with that many clients on the same network partition. This will be even worse if you are using wireless comms.

If you want to carry on then something like this should do the trick:

A subnet of 255.255.252.0 will yield = 192.168.16.1 - 192.168.19.254

No you can&#039;t just start from .10.x because that subnet is in the middle of another one.
&lt;pre&gt;
subnet 192.168.16.0 netmask 255.255.252.0 {
        option routers                        192.168.16.1;
        option subnet-mask              255.255.252.0;
        option domain-search            &quot;tecmint.lan&quot;;
        option domain-name-servers      192.168.16.1;
        range   192.168.16.10   192.168.16.255;
        range   192.168.17.10   192.168.17.255;
        range   192.168.18.10   192.168.18.255;
        range   192.168.19.10   192.168.19.254;
}
&lt;/pre&gt;
It looks weird to most people but 192.168.16.255 is a usable address in this subnet. This will give you the first 10 IP address in each number range to be static if you want but maximises on usable address in the dhcp server.

I would also recommend looking into splitting this into 2 maybe 4 servers. DHCP works on a race. The first server to respond can issue the IP address. Therefore if one of your servers breaks, then the others can still service your clients.
People don&#039;t like it when &quot;the internet&quot; breaks.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-dhcp-server-in-ubuntu-debian/comment-page-1/#comment-1136308">Shuvo</a>.</p>
<p>You could do that, but your configuration is wrong. You need to learn about subnet masking. Your netmask would need to allow for all those clients to fit in the range. After that you could add all the subnets you want and need. </p>
<p>Another issue you will run into is broadcast storms with that many clients on the same network partition. This will be even worse if you are using wireless comms.</p>
<p>If you want to carry on then something like this should do the trick:</p>
<p>A subnet of 255.255.252.0 will yield = 192.168.16.1 &#8211; 192.168.19.254</p>
<p>No you can&#8217;t just start from .10.x because that subnet is in the middle of another one.</p>
<pre>
subnet 192.168.16.0 netmask 255.255.252.0 {
        option routers                        192.168.16.1;
        option subnet-mask              255.255.252.0;
        option domain-search            "tecmint.lan";
        option domain-name-servers      192.168.16.1;
        range   192.168.16.10   192.168.16.255;
        range   192.168.17.10   192.168.17.255;
        range   192.168.18.10   192.168.18.255;
        range   192.168.19.10   192.168.19.254;
}
</pre>
<p>It looks weird to most people but 192.168.16.255 is a usable address in this subnet. This will give you the first 10 IP address in each number range to be static if you want but maximises on usable address in the dhcp server.</p>
<p>I would also recommend looking into splitting this into 2 maybe 4 servers. DHCP works on a race. The first server to respond can issue the IP address. Therefore if one of your servers breaks, then the others can still service your clients.<br />
People don&#8217;t like it when &#8220;the internet&#8221; breaks.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
