I had quite a nasty surprise with my Linux based DHCP server after applying the latest patches to it. My Linux based DHCP service will not start, so I thought I would enable the WinGate DHCP server. All is not well.
I need the equivalent functionality of the following /etc/dhcpd.conf parameter:
range 192.168.1.20 192.168.1.100;
I need to be able to configure the available range of IP Addresses that DHCP is allowed to issue. For example, I never want DHCP to issue DHCP addresses in the range of 192.168.1.1 through to 192.168.1.20, and I do not want any more than 80 guest devices on the network. That range of addresses are statically assigned to servers and network devices.
I also need the equivalent functionality of the following /etc/dhcpd.conf parameter:
host agora {
hardware ethernet 00:1A:92:B1:21:74;
fixed-address 192.168.1.200;
}
This allows specific known devices to be allowed on the network, but are not infrastructure devices, and are not to consume guest IP addresses in a limited range.
Any chance this functionality exists in the current product and I have just missed it, or it is functionality in the next version of WinGate? This isn't a big deal, as I just need to find out why my Linux DHCPD service is failing.