Installing and Configuring a DHCP Server on Linux
Configuring the DHCP Server on Debian In this article, you will learn how to configure the isc-dhcp-server. Additionally, we will configure an IP reservation and set it up to operate on two different scopes.
Here is my DHCP server’s network configuration:
# Router external network auto ens4 iface ens4 inet dhcp # Internal network 1 auto ens5 iface ens5 inet static address 192.168.10.1 netmask 255.255.255.0 # Internal network 2 auto ens6 iface ens6 inet static address 192.168.20.1 netmask 255.255.255.0 Installing the isc-dhcp-server To install the DHCP server on Debian, run the following command: