Electrical-Forenics Home ray@RayFranco.com                       601.529.7473
   © Dr. Ray Franco, PhD, PE  -  208 Fairways Dr., Vicksburg, MS 39183

Updated on 2/10/2025

Dynamic Host configuration Protocol (DHCP)

The DHCP protocol is controlled by the Internet Engineering Task Force (IETF) [42]. It is a server-client model that assigns IP addresses to network interfaces [43].

DHCP Servers

On a home network, the Router is DHCP server. However, if you want to use the Raspberry Pi OS as an Access Point, it must have a DHCP server. You can install your own [43], or use the built-in DHCP server, dnsmasq [15].

Raspberry Pi OS's Dynamic Host Configuration Protocol (DHCP) Clients

The Raspberry Pi OS is a Linux distribution based off of the Debian distribution. Linux has several DHCP clients. The Raspberry Pi OS has used three different DHCP clients, as their default for configuring network interfaces (Table 2). In addition, since Sept 2015, there is another DHCP client that is in every image of the Raspberry Pi OS. Each DHCP client places their network interface configuration file in a diffient directory, and the rules and syntaxes are different for each of them.

DHCP ClientsInterface Configuration File(s)RPi Date
NetworkManager/etc/NetworkManger/system-connections/ Oct 2023 to Present
dhcpcd (dhcp client daemon)/etc/hdcpd.conf May 2015 to Oct 2023
dhclient (isc-hpcd-client)/etc/network/interfacesPre-May 2015
Systemd-Networkd/etc/systemd/network/Not a Default
wpa_supplicant*/etc/wpa_supplicant/wpa_supplicant.conf
* The Wi-Fi Protected Access (WPA) supplicant is used with an DHCP client for wireless interfaces.

The original purpose of the Raspberry Pi, and still the RPi Foundation, is to teach coding to children. Many of the people using the Raspberry Pi are learning Linux. This is mass confusion for them! They can search on the Internet for how to set up a static IP address or how to use a Raspberry Pi as an Access Point, and see four different methods for configuring a network interface. On the latest image of the Raspberry Pi OS all four DHCP clients are present.

The purpose of this article to bring some clarity to the confusion of configuring a network interface and to help you decide which method is best for you.

However, before that can be accomplished, there are some basics that need to be covered.

All dhcp clients must sepecify:

In addition to access the Internet, a domain name server needs to be specified.

The Four Raspberry Pi DHCP Clients:

NetworkManager - Sept 2022 to Present

The Raspberry Pi OS added support for the NetworkManger on Sept 7, 2022, and they announced that at some point in time, it would become the default [1].

The NetworkManager was introduced by RedHat (now IBM) in 2004 [2]. It is now updated and maintained by the Gnone organization [39, 40].

It appears that the NetworkManger is becoming the de facto standard for most Linux distributions [1]. It is Debian's default package for managing network interfaces for laptops [4]. Some non-Debian Linux distributions are using it for servers.

NetworkManager will automatically start other services as it requires them (wpa_supplicant for WPA and 802.1x connections, pppd for mobile broadband) [37].

NetworkManager's interface configuration files are in the directory: "/etc/NetworkManager/system-connections/". If you enable the Raspberry Pi Wi-Fi, it will generate /etc/NeworkManager/system-connections/your_network_name.nmconnection.

Its contents are:

[connection]
id=your_wifi_network_name
uuid=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxxx
type=wifi
interface-name=wlan0
permissions=user:your_user_name:;
 
[wifi]
mac-address-blacklist=
mode=infrastructure
ssid=your_wifi_network_name
 
[wifi-security]
auth-alg=open
key-mgmt=wpa-psk
psk=your_password
 
[ipv4]
dns-search=
method=auto
 
[ipv6]
addr-gen-mode=stable-privacy
dns-search=
method=auto
 
[proxy]

NetworkManager's behavior can be modify by its configuration file "/etc/NetworkManager/NetworkManger.conf". The current default NetworkManager.conf file for Debian and the Raspberry Pi OS is:

[main]
plugins=ifupdown,keyfile
 
[ifupdown]
managed=false

ifupdown is specific to Debian and some distributions derived from it. The current defalult NetworkManager.conf file is suppose to not manage any interfacing that are declared in "/etc/network/interfaces" or the directory "/etc/network/interfaces.d".

dhcpcd (DHCP Client Daemon) and wpa_supplicant (May 2015 to October 2023)

To manually set static ip addresses, you make entries in /etc/dhcpcd.conf.

For example:


interface wlan0
static ip_adress=192.168.0.4/24
static ip rounters=191.168.0.1
static ip domain_name_servers=192.168.0.254 1.1.1.1
         

For wireless network interfaces, dhcpcd uses the same helper file (wpa_supplicant) as dhclient. Add the following at the end of /etc/wpa_supplicant/wpa_supplicant.conf


network={
  ssid="Happy-5G"
  psk="password"
}          
        

By default, dhcpcd manages every interface it finds. To exclude an interface from being managed by dhcpcd, add the following to /etc/dhcpcd.conf:

denyinterfaces eth0 eth1 wlan1        
        

dhcpcd worked with interface bridges. To include bridge add the following near the end of /etc/dhcpcd.conf:

           interface br0
        

In the last update to Raspbian Whezzy (May 2015), the default DHCP client was switched from the Internet System Consortium's DHCP Client (dhclient) to Roy Marples' DHCP Client Daemon (dhcpcd) [53, 22].

Although dhcpcd is in Debian's repository, it has never used as a default by Debian to configure network interfaces. There is nothing in Debian's guides or documentation about dhcpcd except for a man page. However, dhcpcd is very popular, and it has been used as the default in several Linux distributions based off of Debian.

Network interface parameters are placed in the file "/etc/dhcpcd.conf".

The behavior of dhcpcd can be modified by entries in the same configuration file (dhcpcd.conf) [52, 22]. By default, dhcpcd manages every interface it finds. To exclude both eth0 and wlan0, add the following to dhcpcd.conf:

denyinterfaces eth0 wlan0

If you do not have a denyinterfaces list in dhcpcd.conf and there is another DHCP client on your system, you can end up with more than one IP address for the same interface.

You can avoid conflicting with the previous method, by not having any any network interface entries in /etc/network/interfaces or "/etc/network/interfaces.d". If there are entries in /etc/network/interfaces, you will get a second IP address for these entries.

For wireless network interfaces, dhcpcd uses the helper configuration file: "/etc/wpa_supplicant/wpa_supplicant.conf".

The previous method can optionally use the same "/etc/wpa_supplicant/wpa_supplicant.conf" file.

Do not confuse dhcpcd with dhcpd, which is ISC's DHCP server daemon.

Examples:

References:

  1. The Raspberry Pi dhcpcd
  2. StackExhcange - How to set up a Static IP on Raspberry Pi 5 with Raspbian - dhcpcd.conf missing
  3. Arch Linux - dhcpcd
  4. YouTube - How to set up Wifi Static IP Address for dhcpd.conf on Raspberry Pi
  5. Debian Man Pages - dhcpcd(8) and dshcpcd.conf(5)

dhclient (ISC-DHCP-Client) - (Pre-May 2015)

dhclient does have a configuration file /DHCP/hdclient.conf, but you specify the network interface parameters in /ect/network/interface or creating a file in the directory /etc/network/interfaces.d

For example:


auto eth0
allow-hotplug eth0
iface eth0 inet static
   address 192.168.37.58/24
   gateway 192.168.37.1
   dns 192.168.37.1
   dns-nameservers 1.1.1.1 1.0.0.1
        

or


auto eth0
allow-hotplug eth0
iface eth0 inet static
   address 192.168.37.58
   netmask 255.255.255.0
   gateway 192.168.37.1
   dns 192.168.37.1
   dns-nameservers 1.1.1.1 1.0.0.1
        

For wireless network interfaces, dhclinet uses the same helper file (wpa_supplicant) as dhcpcd. Add the following at the end of /etc/wpa_supplicant/wpa_supplicant.conf


network={
  ssid="Happy-5G"
  psk="password"
}          
        

Raspian Wheeze used the Internet System Consortium (ISC) DHCP client, dhclient. It is in the package isc-dhcp-client. This client first appeared in 1999 [45]. It has a 23-year history. ISC stopped maintaining this client in Q1 2022 [46]. However, it is in every version of the Raspberry Pi OS. It is in Debian 11 (Bullseye), and it is actively being used for servers and simple workstations [7].

Its behavior can be modified by the configuration file: etc/DHCP/hdclent.conf.

Interface configuration parameters are placed in the file: "/etc/network/interfaces" or in files in the directory, "/etc/network/interfaes.d".

Raspberry Pi Buster will not process files in "/etc/network/interaces.d" with a dot in the file name. Hence, do not use filename.conf or other extensions [add reference]. Raspberry Pi Bullseye will process files names with a dot in them. (Recheck this).

Wireless network configuration parameters are usually placed in the helper file "/etc/wpa_supplicant/wpa_supplicant.conf".

However, it is possible to put all the wireless network parameters in "/etc/network/interfaces" and not use the supplicant [25].

Raspberry Pi OS Buster has only /etc/network/interfaces file. It has only one active line:
 
source /etc/network/interfaces.d

Raspberry Pi OS Bullseye has two files: /etc/network/interfaces and "/etc/network/interfaces.new". The comments in the later file (.new) say that this file is to be used with dhcpcd. What does this mean?

It has only one active line:
source-directory /etc/network/interfaces.d
 
The "source-directory' specification requires that file names in the directory consist of: A-Z, a-z, numbers, underscores, and minus sign. It will not process a file names with a "." such as eth0.conf [man interfaces].

Examples:

Systemd-Networkd

Since Debian 8 (jessie) and Raspbian jessie (9/20/2015), systemd has been the default service manager [32]. Since that time, Systemd-Networkd can be used to manage the network interfaces [9,33,34]. You create configuration files for the interfaces and place them in the directory: "/etc/systemd/network/" ([7] Section 5.3).

Configuration file names should start with a piority number, and their file names must have the prefix ".network".

sudo systemctl disable NetworkManager
sudo systemctl enable systemd-networkd
sudo systemctl enable systemd-resolved sudo rm /etc/resolv.conf sudo ln -s /run/systemd/resolve/resolv.conf /etc/resolv.conf

As of 12 Feb 2025, the Raspberry Pi OS Systemd verion is 252 (252.22-1~deb12u1).

IPMasquerade= since version 219, there has been in the Network section an option for IPMasquerade=.

DHCPServer= since version 215, there has been in the Network section an option for DHCPServer=.

IPv4Forwarding= and IPv6Forwarding= in the upcoming 256 release, there will be new options for IPv4Forwarding= and IPv6Forwarding=.

For example:


[Match]
# You can also use wildcards. Maybe you want enable dhcp
# an all eth* NICs
Name=eth0

[Network]
#DHCP=v4
# static IP
# 192.168.100.2 netmask 255.255.255.0
Address=192.168.100.2/24
Gateway=192.168.100.1
DNS=192.168.100.1
       

 

[Match]
# You can also use wildcards. Maybe you want enable dhcp
# an all eth* NICs
Name=wlan0

[Network]
#DHCP=v4
# static IP
# 192.168.100.2 netmask 255.255.255.0
Address=192.168.4.1/24
DNS=1.1.1.1	

#[Route]
#Gateway=192.168.37.1
#GatewayOnLink=true
       

At the present, setting up wireless networks with Systemd-Networkd is more difficult than the other methods [add reference].

Systemd-Networkd has never been the default method of the Raspberry Pi OS to manage network interfaces. However, it appears to be the current preferred method by Debian for managing modern network interfaces without a GUI (see Section 5.3 in [7]). It is definitely a viable option. You can find articles on the Internet with Systemd-Networkd managing interfaces on the Raspberry Pi [add references].

References:

  1. Systemd: Setup a static IP Address
  2. StackExchange - systemd-networkd won't configure a static IP
  3. Arch Linux - Systemd-Networkd
  4. 100% systemd network configuration with Debian GNU/Linux
  5. Ubuntu man page - systemd-networkd with examples
  6. 2015 Systemd Gains IP Forwarding, IP Masquerading & Basic Firewall Controls
  7. 2015 - Build a network router and firewall with Fedora 22 and systemd-networkd
  8. Stack Exchange - Using-systemd-networkd-for-multi-interface-networking
  9. Stack Exchange - setup wireless router using systemd-networkd *.network files
  10. Raspberry Pi networking the systemd way
  11. systemd.network(5) — Linux manual page

Mixed Mode - NetworkManger and ISC-HDCP-Client (hdclient)

Debian's NetworkManager will not manage any interfaces that are declared in /etc/network/interfaces or in the directory "/etc/network/interfaces.d". Hence, you should be able to manage some interfaces with the NetworkManager and others in /etc/network/interfaces.

However, the Raspberry Pi's implementation is not currently working, as I believe it should:

1. You can use the NetworkManager to configure eth0 and /etc/network/interfaces to configure wlan0, but all of the Wi-Fi configuration has to be in /etc/network/interfaces. The NetworkManger is blocking the wpa_supplicant.conf file.

2. If you try to use the NetworkManger to configure wlan0 and /etc/network/interfaces to configure eth0, without the eth0 cable plugged in, wlan0 will not work.

References:

  1. Stack Exchange - Determine current networking manager being used on Linux

Predictable Network Interface Names

The Raspberry Pi only has one ethernet interface, and one wireless interface. Their default names are eth0 and wlan0.

However, interfaces can be added via the USB ports. If you add another ethernet port, eth1, after you reboot, the second ethernet port may become eth0 and vice versa. To solve this problem, Linux added support for Predictable Network Interface Names [13,14]. This might should have been called consistent interface names since it is not that easy to interpret the names.

In Debian Stretch, new systems by default no longer used old-style interface names such as eth0 and wlan0. Debian Stretch and Buster still retain support for the old-style names, but users are advised to upgrade before Bullseye [4].

Add reference and when this became available for the RPi.

Conclusions:

The Internet Systems Consortium (ISC) DHCP-Server has reached the End of its Life [45]. However, ISC now has a new DHCP server: Kea-DHCP. ISC is no longer maintaining their DHCP client, isc-dhcp-client (dhclient). They have decided not to purse an DHCP client or relay [46].

Due to his ill health, Roy Marples, is no longer maintaining his DHCP client, dhcpcd [51]. Supposely, Ido Rosen, has agreed to maintain his projects [51].

Thus, it is no wonder that the NetworkManager is becoming the de facto standard for most Linux Distributions.

References:

  1. Network Manager vs. systemd-networkd: Which One Should You Use?

References:

  1. The latest update to Raspberry Pi OS - Sept 7, 2022
  2. Wikipedia - NetworkManager
  3. NetworkManager Reference Manual
  4. Debian Wiki - Network Configuration
  5. Debian Wiki - NetworkManger
  6. Debian 11 - Administrator's Handbook - Chapter 8.2. Configuring the Network
  7. Debian References - Chapter 5. Network setup
  8. Connect to Wi-Fi From Terminal on Debian 11/10 with WPA Supplicant (Nov 8, 2022)
  9. Ubuntu man page - systemd-networkd with examples
  10. Debian Systemd-Networkd Overview
  11. Systemd-Networkd - Debian Wiki
  12. Debian Network Configuration Using ifupdown
  13. What is WICD? Ubuntu Help
  14. Raspberry Pi Forums - Enable Predictable names
  15. Assign Fixed Name to The Network Interface on Raspbian
  16. Setting up a Routed Wireless Access Point - Official Raspberry Pi Documentation
  17. Raspberry Pi Access Point, VPN, SNMP, Router, Mobile Internet, Live Dashcam Access, etc
  18.  
  19.  
  20.  
  21.  
  22.  
  23. Static IP address templates for dhcpcd.conf - March 15, 2016 - Raspberry Pi Forums Moderator
  24. Raspberry Pi Raspbian Image Archives 2013-2020
  25. dhcpcd vs interfaces file - Raspberry Pi Forums
  26. Network Configuration for a Wi-Fi Access Point (12/26/2020)
  27. Bullseye – the new version of Raspberry Pi OS - Official Raspberry Pi News - Nov 8, 2021
  28. The Raspberry Pi computer goes on general sale - BBC News Feb 29, 2012
  29. Beta Raspberry Pi PCs Draw Big Bids On eBay - Jan 2, 2012
  30. Raspberry Pi OS - Wikipedia
  31. 8GB Raspberry Pi 4 on sale now at $75 - Official Raspberry Pi News - May 28, 2020
  32. Raspberry Pi OS (64-bit) - Official Raspberry Pi News - Feb 2, 2022
  33. systemd - system and service manager - Debian Wiki
  34. systemd.network - basic network configuration (e.g., DHCP, static, IPv6, MAC, MTU)
  35. systemd.netdev - Virtual Network Device configuration
  36. wpa_supplicant - Wikipedia
  37. Configuring Networking on The Raspberry Pi - Dec 21, 2022
  38. NetworkManager for administrators
  39. All About Debian /etc/network/interfaces File - 2019
  40. NetworkManger Homepage
  41. NetworkManger - Gnome Wiki
  42. RPI4 Network Lesson September 6, 2019 Peter Scargill
  43. Internet Engineering Task Force
  44. Dynamic Host Configuration Protocol - Wikipedia
  45. Comparison of DHCP server software - Wikipedia
  46. ISC DHCP Server has reached EOL
  47. ISC DHCP Client and Relay End of Maintenance
  48. Raspbian's new insanely bad design decision: DHCP Static IPs [obsolete] - Raspberry Pi Forums
  49. How to Set Static IP Address on Debian 11 (Bullseye) - NetworkManager
  50. SystemdNetworkd - wiki
  51. History of dhcpcd by Roy Marples
  52. Roy Marples - Projects Overview
  53. dhcpcd.conf man page - Debian Bullseye
  54. Another Raspbian Desktop User Interface Update