How to Set Up Static IP Address for Raspberry Pi

February 22, 2023

Introduction

Setting up a static IP address on Raspberry Pi facilitates access and management (e.g., over SSH) by ensuring the device's private IP address does not change. Since most networks use DHCP to dynamically assign IP addresses to clients, setting up a static IP on Raspberry Pi is necessary to avoid access issues.

This tutorial shows you how to set up a static IP address on Raspberry Pi.

How to set up static IP address for Raspberry Pi.

Setting Up Static IP for Raspberry Pi

Raspberry Pi runs the Debian-based Raspberry Pi OS, so the network configuration options are similar to those in other Debian-based Linux distributions.

Follow the steps below to collect the necessary information about the network and configure a static IP address on a Raspberry Pi system.

Step 1: Obtain Current IP Address

Using the system's current private IP address as a new static IP is the easiest way to prevent conflicts with other network devices. To find out the current IP address of the Raspberry Pi system, use the hostname command with the -I option.

hostname -I

Write down the IP address displayed in the command output.

Obtaining the private IP address on a Raspberry Pi machine.

Note: Skip this step if you want to use another private IP address.

Step 2: Identify Default Network Interface

Computers can have multiple network interfaces active at the same time. To properly configure a static IP address, you must identify the default interface.

1. Use the ip command to find out the IP address of the default interface.

ip r | grep default

The output displays the router's address.

Obtaining the router IP address on a Raspberry Pi machine.

2. To obtain the name of the network interface, use the following command:

route | grep '^default' | grep -o '[^ ]*$'

The command uses grep regex to extract the interface name from the larger output.

Finding the name of the default network interface.

Step 3: Obtain DNS Address

The last necessary piece of information is the router's Domain Name System (DNS) address. Find it in the resolv.conf file located in the /etc directory.

Open the file in a text editor, such as Nano:

sudo nano /etc/resolv.conf

Look for the line that starts with the word nameserver and write down the DNS IP address.

Obtaining the DNS address on a Raspberry Pi machine.

Step 4: Edit Network Settings

Once you have all the necessary information, set up a static private IP address on your Raspberry Pi by employing one of the two methods described below.

Set up Static IP Address via CLI

The command-line interface method for static IP setup involves editing the DHCP configuration file.

1. Open the dhcpcd.conf file in a text editor.

sudo nano /etc/dhcpcd.conf

2. Scroll to the bottom of the file and add the lines below with the information you obtained in the previous steps of this tutorial.

interface [interface-name]
static ip_address=[ip-address]/[cidr-suffix]
static routers=[router-ip-address]
static domain_name_servers=[dns-address]

The screenshot below shows an example configuration.

Editing the network settings file to set up a static IP address on Raspberry Pi.

Save the file and exit.

3. Reboot Raspberry Pi by typing:

sudo shutdown -r now

Set up Static IP Address via GUI

You can also set the static private IP address for your system through the Raspberry Pi OS GUI. The steps below demonstrate the GUI procedure.

1. Right-click the network adapter icon on the right side of the top panel.

2. Select the Wireless & Wired Network Settings item to open Network Preferences.

Navigating to Wireless and Wired Network Settings on Raspberry Pi.

3. Select the default network interface in the drop-down menu.

4. Type in the desired static IP address in the IPv4 Address field. Follow the address with the CIDR suffix.

5. Enter the router's IP address in the Router field.

6. Type the DNS address in the DNS Servers section.

7. Select Apply.

Editing Network Preferences on Raspberry Pi to set up a static IP address.

8. Reboot the system.

Testing the Static IP

After the system boots up, test the configuration by executing the hostname command.

hostname -I

Check if the IP address in the output is the address you configured as the static IP.

Testing the static IP configuration.

Note: Refer to our article on how to monitor network traffic on Raspberry Pi that features two different methods.

Conclusion

The article provided the command-line and GUI methods for IP configuration on the Raspberry Pi operating system. After you complete the tutorial, your Raspberry Pi system will be configured to use a static IP address for communication with the rest of the network.

Was this article helpful?
YesNo
Marko Aleksic
Marko Aleksić is a Technical Writer at phoenixNAP. His innate curiosity regarding all things IT, combined with over a decade long background in writing, teaching and working in IT-related fields, led him to technical writing, where he has an opportunity to employ his skills and make technology less daunting to everyone.
Next you should read
Set Up FTP Server on Raspberry Pi
April 6, 2021

FTP (File Transfer Protocol) is a network protocol used to transfer files between two machines. In this tutorial, you will learn to set up...
Read more
Set Up Raspberry Pi as DNS Server
March 31, 2021

Setting up a Raspberry Pi as a DNS server improves DNS lookup time and connection speed. This guide explains how to configure...
Read more
How to Update Raspberry Pi
March 17, 2020

A Raspberry Pi update can include improvements to the bundled software, security patches, and other performance-related enhancements.
Read more
Enable SSH on Raspberry Pi
February 12, 2020

Follow the steps in this guide to learn how to enable SSH on Raspberry Pi without a screen, from the GUI, or using the raspi-config file.
Read more