Basic networking and DHCP theory












3















Background



We're organizing an event where we need to connect about 10 PCs into a single LAN network (no internet access). We've got some general experience with "home" and "web" networking but we've never set up a custom network for ourselves before.



Our plan




  1. Get a basic managed or unmanaged switch

  2. Connect all PCs to it via ethernet

  3. Assign fixed IP to each one of them for easier access

  4. That's it


Questions




  1. Could someone with a bit more experience confirm if the above approach will "just work" as we imagine, or is there something we haven't taken into account?

  2. DHCP. If we set up a DHCP server on one of the PCs, will it "just work"? I.e. if we connect a laptop to the switch during the event, will it be assigned an IP from that PC, or does the DHCP server need to run directly on the switch?










share|improve this question


















  • 1





    Switches do not care about IP addressing, they use layer-2 (MAC) addressing for forwarding frames. As long as the hosts are correctly addressed, they it should just work, but host/server configurations are off-topic here (you can ask about that for your business network on Server Fault).

    – Ron Maupin
    Dec 7 '18 at 17:06
















3















Background



We're organizing an event where we need to connect about 10 PCs into a single LAN network (no internet access). We've got some general experience with "home" and "web" networking but we've never set up a custom network for ourselves before.



Our plan




  1. Get a basic managed or unmanaged switch

  2. Connect all PCs to it via ethernet

  3. Assign fixed IP to each one of them for easier access

  4. That's it


Questions




  1. Could someone with a bit more experience confirm if the above approach will "just work" as we imagine, or is there something we haven't taken into account?

  2. DHCP. If we set up a DHCP server on one of the PCs, will it "just work"? I.e. if we connect a laptop to the switch during the event, will it be assigned an IP from that PC, or does the DHCP server need to run directly on the switch?










share|improve this question


















  • 1





    Switches do not care about IP addressing, they use layer-2 (MAC) addressing for forwarding frames. As long as the hosts are correctly addressed, they it should just work, but host/server configurations are off-topic here (you can ask about that for your business network on Server Fault).

    – Ron Maupin
    Dec 7 '18 at 17:06














3












3








3








Background



We're organizing an event where we need to connect about 10 PCs into a single LAN network (no internet access). We've got some general experience with "home" and "web" networking but we've never set up a custom network for ourselves before.



Our plan




  1. Get a basic managed or unmanaged switch

  2. Connect all PCs to it via ethernet

  3. Assign fixed IP to each one of them for easier access

  4. That's it


Questions




  1. Could someone with a bit more experience confirm if the above approach will "just work" as we imagine, or is there something we haven't taken into account?

  2. DHCP. If we set up a DHCP server on one of the PCs, will it "just work"? I.e. if we connect a laptop to the switch during the event, will it be assigned an IP from that PC, or does the DHCP server need to run directly on the switch?










share|improve this question














Background



We're organizing an event where we need to connect about 10 PCs into a single LAN network (no internet access). We've got some general experience with "home" and "web" networking but we've never set up a custom network for ourselves before.



Our plan




  1. Get a basic managed or unmanaged switch

  2. Connect all PCs to it via ethernet

  3. Assign fixed IP to each one of them for easier access

  4. That's it


Questions




  1. Could someone with a bit more experience confirm if the above approach will "just work" as we imagine, or is there something we haven't taken into account?

  2. DHCP. If we set up a DHCP server on one of the PCs, will it "just work"? I.e. if we connect a laptop to the switch during the event, will it be assigned an IP from that PC, or does the DHCP server need to run directly on the switch?







dhcp lan






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Dec 7 '18 at 17:03









ZorleQZorleQ

1184




1184








  • 1





    Switches do not care about IP addressing, they use layer-2 (MAC) addressing for forwarding frames. As long as the hosts are correctly addressed, they it should just work, but host/server configurations are off-topic here (you can ask about that for your business network on Server Fault).

    – Ron Maupin
    Dec 7 '18 at 17:06














  • 1





    Switches do not care about IP addressing, they use layer-2 (MAC) addressing for forwarding frames. As long as the hosts are correctly addressed, they it should just work, but host/server configurations are off-topic here (you can ask about that for your business network on Server Fault).

    – Ron Maupin
    Dec 7 '18 at 17:06








1




1





Switches do not care about IP addressing, they use layer-2 (MAC) addressing for forwarding frames. As long as the hosts are correctly addressed, they it should just work, but host/server configurations are off-topic here (you can ask about that for your business network on Server Fault).

– Ron Maupin
Dec 7 '18 at 17:06





Switches do not care about IP addressing, they use layer-2 (MAC) addressing for forwarding frames. As long as the hosts are correctly addressed, they it should just work, but host/server configurations are off-topic here (you can ask about that for your business network on Server Fault).

– Ron Maupin
Dec 7 '18 at 17:06










3 Answers
3






active

oldest

votes


















5














At the basic IP level, yes




  • Static addressing will work

  • Setting up one DHCP server will work


    • Either one of the PCs

    • On a small router




Most small-business switches without any configuration behave like a simple unmanaged switch, and certainly you don't need anything beyond that for what you desccribe.



By "work" I mean these:




  • ping another host by IP address

  • web from one host to another by IP address (on presumption you have a web server)

  • SSH from one host to another by IP address (on presumption they are set up to accept SSH)


What won't work is any name-to-address translation



For short-duration small networks




  • Just using IP addresses is fine

  • Use /etc/hosts (unix) or hosts.txt (Windows) for the few names you need

  • Set up a DNS server (not recommended if you are new to this)

  • Set up Windows NetBIOS-type name resolution (not recommended if you're new to that)


Another thing which won't work (as you've described your network) is any kind of check-license-over-internet, which a lot of software uses these days.



Something which might surprise you is the amount of software which checks the reverse lookups of incoming IP addresses. For example, many telnet, SSH, web, mail server programs will reverse lookup the IP address (ie, make a DNS lookup to find the name from the IP address). These programs will normally make DNS lookup to their configured DNS server, which is possibly on the far side of a local router. These things can sometimes fail and retry rather slowly. Some applications and operating systems will let you use /etc/hosts as mentioned above.



This issue is definitely worth checking with your planned applications.






share|improve this answer


























  • Thank you for confirming everything. And the newly connecting devices will find the DHCP server by themselves? No need to tell them where where it is?

    – ZorleQ
    Dec 7 '18 at 18:01






  • 1





    DHCP always works like that: clients always broadcast to find them ("hey any DHCP servers there? please can I have an address").

    – jonathanjo
    Dec 7 '18 at 18:04











  • Great news. DNS shouldn't cause us too much trouble, we're building software for all of those PCs in house, so hopefully can mitigate that and disable all irrelevant system services.

    – ZorleQ
    Dec 7 '18 at 18:07











  • What OS are your PCs?

    – jonathanjo
    Dec 7 '18 at 18:11











  • A mixture of windows and mac.

    – ZorleQ
    Dec 7 '18 at 18:14



















2














Welcome to Network Engineering!



Your plan is fine, as long as you assign IP addresses in the same subnet. You can, for example, use addresses 192.168.0.1, 192.168.0.2, etc. The subnet mask should be 255.255.255.0.



As an alternative, you can let the PCs assign their own addresses. All the PCs will assign themselves addresses in the 169.254.0.0 network, with the subnet 255.255.0.0. You don't have to do anything for this to happen. This method has a slight disadvantage in that you have to look at each PC to see their address.



For a small network like this, DHCP is an unnecessary complication.






share|improve this answer
























  • Thank you for confirming my thoughts. The reason why I asked about DHCP is to ease things a bit for us on the day (not having to change IP configuration on control laptops, which we'll use occasionally in preparation to the event).

    – ZorleQ
    Dec 7 '18 at 18:05



















0














Honestly, small business level routers are so cheap nowadays, I'd just pick up one of those for fifty bucks, pick up an unmanaged switch, and do the DHCP that way. It's a LOT easier. This way, if your situation changes, and you do need internet access, you can plug in the upstream. If your situation does not change, you can leave it alone. You can leave the router's defaults in place and have your clients use DHCP.






share|improve this answer


























  • Consumer-grade devices are explicitly off-topic here.

    – Ron Maupin
    Dec 7 '18 at 20:54











  • Why? Where was that stated? I don't know where the original poster is located, but where I'm located, there is a computers and electronics shop where there are also cheap routers that are a step above consumer-grade if that helps.

    – J.D. Walker
    Dec 7 '18 at 20:56











  • It right on the What topics can I ask about here? page under the Off-Topic section: "consumer grade products"

    – Ron Maupin
    Dec 7 '18 at 21:21











  • For a product to be on-topic, the manufacturer must offer optional, paid support: "hardware that has a paid support option from the manufacturer (enterprise/provider class products, some small business class devices)"

    – Ron Maupin
    Dec 7 '18 at 21:22











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "496"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fnetworkengineering.stackexchange.com%2fquestions%2f55277%2fbasic-networking-and-dhcp-theory%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























3 Answers
3






active

oldest

votes








3 Answers
3






active

oldest

votes









active

oldest

votes






active

oldest

votes









5














At the basic IP level, yes




  • Static addressing will work

  • Setting up one DHCP server will work


    • Either one of the PCs

    • On a small router




Most small-business switches without any configuration behave like a simple unmanaged switch, and certainly you don't need anything beyond that for what you desccribe.



By "work" I mean these:




  • ping another host by IP address

  • web from one host to another by IP address (on presumption you have a web server)

  • SSH from one host to another by IP address (on presumption they are set up to accept SSH)


What won't work is any name-to-address translation



For short-duration small networks




  • Just using IP addresses is fine

  • Use /etc/hosts (unix) or hosts.txt (Windows) for the few names you need

  • Set up a DNS server (not recommended if you are new to this)

  • Set up Windows NetBIOS-type name resolution (not recommended if you're new to that)


Another thing which won't work (as you've described your network) is any kind of check-license-over-internet, which a lot of software uses these days.



Something which might surprise you is the amount of software which checks the reverse lookups of incoming IP addresses. For example, many telnet, SSH, web, mail server programs will reverse lookup the IP address (ie, make a DNS lookup to find the name from the IP address). These programs will normally make DNS lookup to their configured DNS server, which is possibly on the far side of a local router. These things can sometimes fail and retry rather slowly. Some applications and operating systems will let you use /etc/hosts as mentioned above.



This issue is definitely worth checking with your planned applications.






share|improve this answer


























  • Thank you for confirming everything. And the newly connecting devices will find the DHCP server by themselves? No need to tell them where where it is?

    – ZorleQ
    Dec 7 '18 at 18:01






  • 1





    DHCP always works like that: clients always broadcast to find them ("hey any DHCP servers there? please can I have an address").

    – jonathanjo
    Dec 7 '18 at 18:04











  • Great news. DNS shouldn't cause us too much trouble, we're building software for all of those PCs in house, so hopefully can mitigate that and disable all irrelevant system services.

    – ZorleQ
    Dec 7 '18 at 18:07











  • What OS are your PCs?

    – jonathanjo
    Dec 7 '18 at 18:11











  • A mixture of windows and mac.

    – ZorleQ
    Dec 7 '18 at 18:14
















5














At the basic IP level, yes




  • Static addressing will work

  • Setting up one DHCP server will work


    • Either one of the PCs

    • On a small router




Most small-business switches without any configuration behave like a simple unmanaged switch, and certainly you don't need anything beyond that for what you desccribe.



By "work" I mean these:




  • ping another host by IP address

  • web from one host to another by IP address (on presumption you have a web server)

  • SSH from one host to another by IP address (on presumption they are set up to accept SSH)


What won't work is any name-to-address translation



For short-duration small networks




  • Just using IP addresses is fine

  • Use /etc/hosts (unix) or hosts.txt (Windows) for the few names you need

  • Set up a DNS server (not recommended if you are new to this)

  • Set up Windows NetBIOS-type name resolution (not recommended if you're new to that)


Another thing which won't work (as you've described your network) is any kind of check-license-over-internet, which a lot of software uses these days.



Something which might surprise you is the amount of software which checks the reverse lookups of incoming IP addresses. For example, many telnet, SSH, web, mail server programs will reverse lookup the IP address (ie, make a DNS lookup to find the name from the IP address). These programs will normally make DNS lookup to their configured DNS server, which is possibly on the far side of a local router. These things can sometimes fail and retry rather slowly. Some applications and operating systems will let you use /etc/hosts as mentioned above.



This issue is definitely worth checking with your planned applications.






share|improve this answer


























  • Thank you for confirming everything. And the newly connecting devices will find the DHCP server by themselves? No need to tell them where where it is?

    – ZorleQ
    Dec 7 '18 at 18:01






  • 1





    DHCP always works like that: clients always broadcast to find them ("hey any DHCP servers there? please can I have an address").

    – jonathanjo
    Dec 7 '18 at 18:04











  • Great news. DNS shouldn't cause us too much trouble, we're building software for all of those PCs in house, so hopefully can mitigate that and disable all irrelevant system services.

    – ZorleQ
    Dec 7 '18 at 18:07











  • What OS are your PCs?

    – jonathanjo
    Dec 7 '18 at 18:11











  • A mixture of windows and mac.

    – ZorleQ
    Dec 7 '18 at 18:14














5












5








5







At the basic IP level, yes




  • Static addressing will work

  • Setting up one DHCP server will work


    • Either one of the PCs

    • On a small router




Most small-business switches without any configuration behave like a simple unmanaged switch, and certainly you don't need anything beyond that for what you desccribe.



By "work" I mean these:




  • ping another host by IP address

  • web from one host to another by IP address (on presumption you have a web server)

  • SSH from one host to another by IP address (on presumption they are set up to accept SSH)


What won't work is any name-to-address translation



For short-duration small networks




  • Just using IP addresses is fine

  • Use /etc/hosts (unix) or hosts.txt (Windows) for the few names you need

  • Set up a DNS server (not recommended if you are new to this)

  • Set up Windows NetBIOS-type name resolution (not recommended if you're new to that)


Another thing which won't work (as you've described your network) is any kind of check-license-over-internet, which a lot of software uses these days.



Something which might surprise you is the amount of software which checks the reverse lookups of incoming IP addresses. For example, many telnet, SSH, web, mail server programs will reverse lookup the IP address (ie, make a DNS lookup to find the name from the IP address). These programs will normally make DNS lookup to their configured DNS server, which is possibly on the far side of a local router. These things can sometimes fail and retry rather slowly. Some applications and operating systems will let you use /etc/hosts as mentioned above.



This issue is definitely worth checking with your planned applications.






share|improve this answer















At the basic IP level, yes




  • Static addressing will work

  • Setting up one DHCP server will work


    • Either one of the PCs

    • On a small router




Most small-business switches without any configuration behave like a simple unmanaged switch, and certainly you don't need anything beyond that for what you desccribe.



By "work" I mean these:




  • ping another host by IP address

  • web from one host to another by IP address (on presumption you have a web server)

  • SSH from one host to another by IP address (on presumption they are set up to accept SSH)


What won't work is any name-to-address translation



For short-duration small networks




  • Just using IP addresses is fine

  • Use /etc/hosts (unix) or hosts.txt (Windows) for the few names you need

  • Set up a DNS server (not recommended if you are new to this)

  • Set up Windows NetBIOS-type name resolution (not recommended if you're new to that)


Another thing which won't work (as you've described your network) is any kind of check-license-over-internet, which a lot of software uses these days.



Something which might surprise you is the amount of software which checks the reverse lookups of incoming IP addresses. For example, many telnet, SSH, web, mail server programs will reverse lookup the IP address (ie, make a DNS lookup to find the name from the IP address). These programs will normally make DNS lookup to their configured DNS server, which is possibly on the far side of a local router. These things can sometimes fail and retry rather slowly. Some applications and operating systems will let you use /etc/hosts as mentioned above.



This issue is definitely worth checking with your planned applications.







share|improve this answer














share|improve this answer



share|improve this answer








edited Dec 7 '18 at 18:03

























answered Dec 7 '18 at 17:46









jonathanjojonathanjo

11.2k1934




11.2k1934













  • Thank you for confirming everything. And the newly connecting devices will find the DHCP server by themselves? No need to tell them where where it is?

    – ZorleQ
    Dec 7 '18 at 18:01






  • 1





    DHCP always works like that: clients always broadcast to find them ("hey any DHCP servers there? please can I have an address").

    – jonathanjo
    Dec 7 '18 at 18:04











  • Great news. DNS shouldn't cause us too much trouble, we're building software for all of those PCs in house, so hopefully can mitigate that and disable all irrelevant system services.

    – ZorleQ
    Dec 7 '18 at 18:07











  • What OS are your PCs?

    – jonathanjo
    Dec 7 '18 at 18:11











  • A mixture of windows and mac.

    – ZorleQ
    Dec 7 '18 at 18:14



















  • Thank you for confirming everything. And the newly connecting devices will find the DHCP server by themselves? No need to tell them where where it is?

    – ZorleQ
    Dec 7 '18 at 18:01






  • 1





    DHCP always works like that: clients always broadcast to find them ("hey any DHCP servers there? please can I have an address").

    – jonathanjo
    Dec 7 '18 at 18:04











  • Great news. DNS shouldn't cause us too much trouble, we're building software for all of those PCs in house, so hopefully can mitigate that and disable all irrelevant system services.

    – ZorleQ
    Dec 7 '18 at 18:07











  • What OS are your PCs?

    – jonathanjo
    Dec 7 '18 at 18:11











  • A mixture of windows and mac.

    – ZorleQ
    Dec 7 '18 at 18:14

















Thank you for confirming everything. And the newly connecting devices will find the DHCP server by themselves? No need to tell them where where it is?

– ZorleQ
Dec 7 '18 at 18:01





Thank you for confirming everything. And the newly connecting devices will find the DHCP server by themselves? No need to tell them where where it is?

– ZorleQ
Dec 7 '18 at 18:01




1




1





DHCP always works like that: clients always broadcast to find them ("hey any DHCP servers there? please can I have an address").

– jonathanjo
Dec 7 '18 at 18:04





DHCP always works like that: clients always broadcast to find them ("hey any DHCP servers there? please can I have an address").

– jonathanjo
Dec 7 '18 at 18:04













Great news. DNS shouldn't cause us too much trouble, we're building software for all of those PCs in house, so hopefully can mitigate that and disable all irrelevant system services.

– ZorleQ
Dec 7 '18 at 18:07





Great news. DNS shouldn't cause us too much trouble, we're building software for all of those PCs in house, so hopefully can mitigate that and disable all irrelevant system services.

– ZorleQ
Dec 7 '18 at 18:07













What OS are your PCs?

– jonathanjo
Dec 7 '18 at 18:11





What OS are your PCs?

– jonathanjo
Dec 7 '18 at 18:11













A mixture of windows and mac.

– ZorleQ
Dec 7 '18 at 18:14





A mixture of windows and mac.

– ZorleQ
Dec 7 '18 at 18:14











2














Welcome to Network Engineering!



Your plan is fine, as long as you assign IP addresses in the same subnet. You can, for example, use addresses 192.168.0.1, 192.168.0.2, etc. The subnet mask should be 255.255.255.0.



As an alternative, you can let the PCs assign their own addresses. All the PCs will assign themselves addresses in the 169.254.0.0 network, with the subnet 255.255.0.0. You don't have to do anything for this to happen. This method has a slight disadvantage in that you have to look at each PC to see their address.



For a small network like this, DHCP is an unnecessary complication.






share|improve this answer
























  • Thank you for confirming my thoughts. The reason why I asked about DHCP is to ease things a bit for us on the day (not having to change IP configuration on control laptops, which we'll use occasionally in preparation to the event).

    – ZorleQ
    Dec 7 '18 at 18:05
















2














Welcome to Network Engineering!



Your plan is fine, as long as you assign IP addresses in the same subnet. You can, for example, use addresses 192.168.0.1, 192.168.0.2, etc. The subnet mask should be 255.255.255.0.



As an alternative, you can let the PCs assign their own addresses. All the PCs will assign themselves addresses in the 169.254.0.0 network, with the subnet 255.255.0.0. You don't have to do anything for this to happen. This method has a slight disadvantage in that you have to look at each PC to see their address.



For a small network like this, DHCP is an unnecessary complication.






share|improve this answer
























  • Thank you for confirming my thoughts. The reason why I asked about DHCP is to ease things a bit for us on the day (not having to change IP configuration on control laptops, which we'll use occasionally in preparation to the event).

    – ZorleQ
    Dec 7 '18 at 18:05














2












2








2







Welcome to Network Engineering!



Your plan is fine, as long as you assign IP addresses in the same subnet. You can, for example, use addresses 192.168.0.1, 192.168.0.2, etc. The subnet mask should be 255.255.255.0.



As an alternative, you can let the PCs assign their own addresses. All the PCs will assign themselves addresses in the 169.254.0.0 network, with the subnet 255.255.0.0. You don't have to do anything for this to happen. This method has a slight disadvantage in that you have to look at each PC to see their address.



For a small network like this, DHCP is an unnecessary complication.






share|improve this answer













Welcome to Network Engineering!



Your plan is fine, as long as you assign IP addresses in the same subnet. You can, for example, use addresses 192.168.0.1, 192.168.0.2, etc. The subnet mask should be 255.255.255.0.



As an alternative, you can let the PCs assign their own addresses. All the PCs will assign themselves addresses in the 169.254.0.0 network, with the subnet 255.255.0.0. You don't have to do anything for this to happen. This method has a slight disadvantage in that you have to look at each PC to see their address.



For a small network like this, DHCP is an unnecessary complication.







share|improve this answer












share|improve this answer



share|improve this answer










answered Dec 7 '18 at 17:14









Ron TrunkRon Trunk

35.4k33372




35.4k33372













  • Thank you for confirming my thoughts. The reason why I asked about DHCP is to ease things a bit for us on the day (not having to change IP configuration on control laptops, which we'll use occasionally in preparation to the event).

    – ZorleQ
    Dec 7 '18 at 18:05



















  • Thank you for confirming my thoughts. The reason why I asked about DHCP is to ease things a bit for us on the day (not having to change IP configuration on control laptops, which we'll use occasionally in preparation to the event).

    – ZorleQ
    Dec 7 '18 at 18:05

















Thank you for confirming my thoughts. The reason why I asked about DHCP is to ease things a bit for us on the day (not having to change IP configuration on control laptops, which we'll use occasionally in preparation to the event).

– ZorleQ
Dec 7 '18 at 18:05





Thank you for confirming my thoughts. The reason why I asked about DHCP is to ease things a bit for us on the day (not having to change IP configuration on control laptops, which we'll use occasionally in preparation to the event).

– ZorleQ
Dec 7 '18 at 18:05











0














Honestly, small business level routers are so cheap nowadays, I'd just pick up one of those for fifty bucks, pick up an unmanaged switch, and do the DHCP that way. It's a LOT easier. This way, if your situation changes, and you do need internet access, you can plug in the upstream. If your situation does not change, you can leave it alone. You can leave the router's defaults in place and have your clients use DHCP.






share|improve this answer


























  • Consumer-grade devices are explicitly off-topic here.

    – Ron Maupin
    Dec 7 '18 at 20:54











  • Why? Where was that stated? I don't know where the original poster is located, but where I'm located, there is a computers and electronics shop where there are also cheap routers that are a step above consumer-grade if that helps.

    – J.D. Walker
    Dec 7 '18 at 20:56











  • It right on the What topics can I ask about here? page under the Off-Topic section: "consumer grade products"

    – Ron Maupin
    Dec 7 '18 at 21:21











  • For a product to be on-topic, the manufacturer must offer optional, paid support: "hardware that has a paid support option from the manufacturer (enterprise/provider class products, some small business class devices)"

    – Ron Maupin
    Dec 7 '18 at 21:22
















0














Honestly, small business level routers are so cheap nowadays, I'd just pick up one of those for fifty bucks, pick up an unmanaged switch, and do the DHCP that way. It's a LOT easier. This way, if your situation changes, and you do need internet access, you can plug in the upstream. If your situation does not change, you can leave it alone. You can leave the router's defaults in place and have your clients use DHCP.






share|improve this answer


























  • Consumer-grade devices are explicitly off-topic here.

    – Ron Maupin
    Dec 7 '18 at 20:54











  • Why? Where was that stated? I don't know where the original poster is located, but where I'm located, there is a computers and electronics shop where there are also cheap routers that are a step above consumer-grade if that helps.

    – J.D. Walker
    Dec 7 '18 at 20:56











  • It right on the What topics can I ask about here? page under the Off-Topic section: "consumer grade products"

    – Ron Maupin
    Dec 7 '18 at 21:21











  • For a product to be on-topic, the manufacturer must offer optional, paid support: "hardware that has a paid support option from the manufacturer (enterprise/provider class products, some small business class devices)"

    – Ron Maupin
    Dec 7 '18 at 21:22














0












0








0







Honestly, small business level routers are so cheap nowadays, I'd just pick up one of those for fifty bucks, pick up an unmanaged switch, and do the DHCP that way. It's a LOT easier. This way, if your situation changes, and you do need internet access, you can plug in the upstream. If your situation does not change, you can leave it alone. You can leave the router's defaults in place and have your clients use DHCP.






share|improve this answer















Honestly, small business level routers are so cheap nowadays, I'd just pick up one of those for fifty bucks, pick up an unmanaged switch, and do the DHCP that way. It's a LOT easier. This way, if your situation changes, and you do need internet access, you can plug in the upstream. If your situation does not change, you can leave it alone. You can leave the router's defaults in place and have your clients use DHCP.







share|improve this answer














share|improve this answer



share|improve this answer








edited Dec 7 '18 at 21:46

























answered Dec 7 '18 at 20:42









J.D. WalkerJ.D. Walker

11




11













  • Consumer-grade devices are explicitly off-topic here.

    – Ron Maupin
    Dec 7 '18 at 20:54











  • Why? Where was that stated? I don't know where the original poster is located, but where I'm located, there is a computers and electronics shop where there are also cheap routers that are a step above consumer-grade if that helps.

    – J.D. Walker
    Dec 7 '18 at 20:56











  • It right on the What topics can I ask about here? page under the Off-Topic section: "consumer grade products"

    – Ron Maupin
    Dec 7 '18 at 21:21











  • For a product to be on-topic, the manufacturer must offer optional, paid support: "hardware that has a paid support option from the manufacturer (enterprise/provider class products, some small business class devices)"

    – Ron Maupin
    Dec 7 '18 at 21:22



















  • Consumer-grade devices are explicitly off-topic here.

    – Ron Maupin
    Dec 7 '18 at 20:54











  • Why? Where was that stated? I don't know where the original poster is located, but where I'm located, there is a computers and electronics shop where there are also cheap routers that are a step above consumer-grade if that helps.

    – J.D. Walker
    Dec 7 '18 at 20:56











  • It right on the What topics can I ask about here? page under the Off-Topic section: "consumer grade products"

    – Ron Maupin
    Dec 7 '18 at 21:21











  • For a product to be on-topic, the manufacturer must offer optional, paid support: "hardware that has a paid support option from the manufacturer (enterprise/provider class products, some small business class devices)"

    – Ron Maupin
    Dec 7 '18 at 21:22

















Consumer-grade devices are explicitly off-topic here.

– Ron Maupin
Dec 7 '18 at 20:54





Consumer-grade devices are explicitly off-topic here.

– Ron Maupin
Dec 7 '18 at 20:54













Why? Where was that stated? I don't know where the original poster is located, but where I'm located, there is a computers and electronics shop where there are also cheap routers that are a step above consumer-grade if that helps.

– J.D. Walker
Dec 7 '18 at 20:56





Why? Where was that stated? I don't know where the original poster is located, but where I'm located, there is a computers and electronics shop where there are also cheap routers that are a step above consumer-grade if that helps.

– J.D. Walker
Dec 7 '18 at 20:56













It right on the What topics can I ask about here? page under the Off-Topic section: "consumer grade products"

– Ron Maupin
Dec 7 '18 at 21:21





It right on the What topics can I ask about here? page under the Off-Topic section: "consumer grade products"

– Ron Maupin
Dec 7 '18 at 21:21













For a product to be on-topic, the manufacturer must offer optional, paid support: "hardware that has a paid support option from the manufacturer (enterprise/provider class products, some small business class devices)"

– Ron Maupin
Dec 7 '18 at 21:22





For a product to be on-topic, the manufacturer must offer optional, paid support: "hardware that has a paid support option from the manufacturer (enterprise/provider class products, some small business class devices)"

– Ron Maupin
Dec 7 '18 at 21:22


















draft saved

draft discarded




















































Thanks for contributing an answer to Network Engineering Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fnetworkengineering.stackexchange.com%2fquestions%2f55277%2fbasic-networking-and-dhcp-theory%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

To store a contact into the json file from server.js file using a class in NodeJS

Redirect URL with Chrome Remote Debugging Android Devices

Dieringhausen