The following warnings occurred:
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 807 - File: showthread.php PHP 7.3.15 (Linux)
File Line Function
/showthread.php 807 errorHandler->error





Post Reply 
 
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Extend IP Pool
2018-07-24, 12:40
Post: #1
Extend IP Pool
Hello all,

Due an issue (runinng out of IP's) I have I would like to extend the IP pool of my Linux Ubuntu iPXE server. Now I have the range of 10.10.1.5 to 10.10.1.254
If possible I would like to add a whole new range in second subnet like: 10.10.2.1 to 10.10.2.254

This is how the bottom part of dhcpd.conf looks at this moment:
Code:
subnet 10.10.1.0 netmask 255.255.255.0 {
option subnet-mask 255.255.255.0;
option broadcast-address 10.10.1.255;
option routers 10.10.1.1;
option domain-name-servers 10.10.1.1;
range 10.10.1.5 10.10.1.254;
if exists user-class and option user-class = "iPXE" {
      filename "boot.ipxe";
  } else {
      filename "undionly.kpxe";
  }
  }

I have been trying almost all possible options, but all will stop DHCP service.

Any kind of help would be great!
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Extend IP Pool - remywiersma - 2018-07-24 12:40
RE: Extend IP Pool - NiKiZe - 2018-07-24, 16:43



User(s) browsing this thread: 1 Guest(s)