What is a static IP address?
A static IP address is a fixed Internet Protocol (IP) address assigned to a device, which does not change over time. It serves as a unique identifier within a network, enabling it connect & communicate effectively.
It is recommended to assign a static IP address to a device, which is always stationary & connected to the same network. Assigning static IP address on a frequently moving device will result in conflicts and blocks from either connecting to a router or accessing internet.
Example:
- You set up a static IP address on your laptop connected to your home Wi-Fi network (
192.168.1.1
as the router’s gateway).
interface wlan0
static ip_address=192.168.1.100/24
static routers=192.168.1.1
static domain_name_servers=8.8.8.8 8.8.4.4
This static IP address is configured to your router in home, you have a unique IP address and other devices can easily be connect/communicate with your device using this IP address, since it’s never going to be changed.
- You visit a coffee shop and connect to their Wi-Fi, where the router’s gateway is
192.168.0.1
.
- The static configuration on your laptop (
192.168.1.x
) does not match the coffee shop’s network range (192.168.0.x
), causing an IP conflict or failure to connect. - Why is this happening ?
- Your laptop tries to use
192.168.1.100
and expects192.168.1.1
as the gateway. - The coffee shop’s router operates on a different subnet (
192.168.0.x
) and cannot route traffic correctly.
- Your laptop tries to use
What is a Dynamic IP Address?
A dynamic IP address is a temporary address allocated to the device you connect to a network. The temporary address is assigned to a device by DHCP server (Device Host Configuration Protocol) when it connects to a network. Unlike static IP addresses, which remain constant, dynamic IP’s can change over time or when the device reconnects to the network.
It is to use recommended dynamic IP address when a device is frequently moving a lot and connects to different networks. Since the IP allocation is done by the network’s router DHCP, the IP address will change according to the router default gateway.
Note: Dynamic IP address is enabled by default in all other operating systems, it’s only the static IP address allocation done manually.
How to Assign a Static IP Address:
I looked at many “HowTo” videos, but I always ends up facing errors and we’re going to be manually assigning them with minimal
automated steps.
- Gather Network Information:
hostname -I
ip r | grep default
route | grep '^default' | grep -o '[^ ]*$'
Output from my device:
iamyaash@pi-server:~ $ ip r | grep default
default via 192.168.31.1 dev wlan0 src 192.168.31.35 metric 3003
iamyaash@pi-server:~ $ route | grep '^default' | grep -o '[^ ]*$'
wlan0
Copy the gateway address(192.168.31.1
) & interface name (wlan0
).
- Edit the DHCP Configuration File:
Install
dhcpcd
unless there isn’t any file named/etc/dhcpcd.conf
:
sudo dnf install dhcpcd
sudo nano /etc/dhcpcd.conf
Add the following lines into the configuration file:
interface wlan0
static ip_address=<STATIC_IP>/24
static routers=192.168.31.1
static domain_name_servers=8.8.8.8 8.8.4.4
Use any <STATIC_IP>/24
to your liking. (Such as 192.168.31.253
)
Save and exit.
- Reboot the device to reflect the changes all over the system:
sudo reboot
After the restart, ensure that the static IP is assigned in hostname
& the changes are reflected to /etc/resolv.conf
.
hostname -I
cat /etc/resolv.conf
Follow these steps only if the Static IP Address is not Reflected anywhere
- Stop & Disable the
systemd-resolved.service
:
sudo systemctl stop systemd-resolved.service
sudo systemctl disable systemd-resolved.service
This will stop & disable the systemd-resolved.service
, which no longer manages DNS resolution, allowing you to fully control the /etc/resolv.conf
file.
- Remove the Symlink for
/etc/resolv.conf
:
sudo rm /etc/resolv.conf
Typically, the
/etc/resolv.conf
is linked to systemd-resolved`.
- Create a new
/etc/resolv.conf
& Manually Add the DNS Addresses:
sudo nano /etc/resolv.conf
nameserver 208.67.222.222
nameserver 208.67.220.220
nameserver 8.8.8.8
Save and exit.
- Restart the
dhcpcd
service:
sudo systemctl restart dhcpcd
Delete the existing IP, in case the older IPs are retained:
sudo ip addr del 192.168.31.102 dev wlan0
192.168.31.102
- The IP that needs to be removed.dev wlan0
- The interface name of theIP
address.
If nothing works out, let’s change the static IP using nmcli
:
- List the available networks
sudo nmcli connection show
This will show the available networks connected to your device. Output:
NAME UUID TYPE DEVICE
Wired connection 1 82aadf2b-xxxx-xxxx-a3ec-xxxxxxxxxxxx ethernet enp2s0
lo e6b49b80-xxxx-xxxx-b8d7-xxxxxxxxxxxx loopback lo
docker0 bfcf407f-xxxx-xxxx-bbfe-xxxxxxxxxxxx bridge docker0
- Modify the
Wired connection 1
network:
sudo nmcli connection modify "Wired connection 1" ipv4.addresses 192.168.31.xx/24 ipv4.gateway 192.168.31.1 ipv4.dns "8.8.8.8 8.8.4.4" ipv4.method manual
- Restart the Connection After modifying the connection, restart it to apply the changes:
sudo nmcli connection down "Wired connection 1"
sudo nmcli connection up "Wired connection 1"`
- Verify the New IP Address Check if the static IP has been assigned successfully:
ip addr show wlan0 | grep inet
- If you don’t need IPv6, you can disable it for this connection (Optional):
sudo nmcli connection modify preconfigured ipv6.method ignore