3 Ways to Set a Static IP Address in RHEL 8

Channel: RedHat Networking Commands Linux
Abstract: # nmcli con mod enp0s3 ipv4.gateway 192.168.20.1Set the IP address for interface enp0s3 on RHEL 8. # nmcli con mod enp0s3 ipv4.addresses 192.168.20.17

Configuring a static IP address for your Linux distribution is a fundamental task and should be completed in few easy steps. With the release of RHEL 8 public beta, you can now configure your network interface in a few different ways using NetworkManager utilities.

In this tutorial we are going to show you few different ways to set a static IP address on RHEL 8 installation. Note that this article presumes, that you already know the network settings that you wish to apply for your system.

1. How to Configure Static IP Using Network Scripts Manually

You can configure a static IP address the old fashioned way by editing:

/etc/sysconfig/network-scripts/ifcfg-(interface-name)

In my case the file is named:

/etc/sysconfig/network-scripts/ifcfg-enp0s3

To find your network interface name, you can use the following nmcli command.

# nmcli con
Find Network Interface Name in RHEL 8

To edit the file simply use your favorite editor and open the file:

# vim /etc/sysconfig/network-scripts/ifcfg-enp0s3
ifcfg-enp0s3 Configuration
TYPE="Ethernet"
BOOTPROTO="none"
NAME="enp0s3"
IPADDR="192.168.20.150"
NETMASK="255.255.255.0"
GATEWAY="192.168.20.1"
DEVICE="enp0s3"
ONBOOT="yes"

Then restart the NetworkManager with:

# systemctl restart NetworkManager

Alternatively, you can reload the network interface by using:

# nmcli con down enp0s3 && nmcli con up enp0s3

Now you can then check the new IP address using ip command as shown.

# ip a show enp0s3
Check IP Address on RHEL 8 2. How to Configure Static IP Using Nmtui Tool

Another way to configure static IP address for your RHEL 8 is by using nmtui tool, is a text user interface (TUI). To use it simply type the following command in your terminal.

# nmtui

This is will launch the program:

Network Manager Interface

Choose to edit a connection, then select the interface:

Select Network Interface

In the next window you will be able to edit the network interface settings by moving the cursor with the arrow keys on your keyboard:

Configure IP Address on RHEL 8

In this example, I have changed my IP address from 192.168.20.150 to 192.168.20.160. To save the changes scroll down to the end of the page and select OK.

Then reload the network interface by choosing 「Activate a connection」:

Active Network Interface

Then choose the connection name and select <Deactivate>:

Deactivate Network Interface

And now select <Activate> to activate the interface with the new settings you have given it.

Activate Network Interface

Then select <Back> to return to the main menu and then select 「Quit」 to exit.

Quit Network Manager

Verify that the new IP address settings have been applied with:

# ip a show enp0s3
Verify IP Address 3. How to Configure Static IP Using Nmcli Tool

Nmcli is a NetworkManager command line interface that can be used for obtaining information or configuring a network interface.

If you want to set a static IP address, you can use the following options:

Set the IP address for interface enp0s3 on RHEL 8.

# nmcli con mod enp0s3 ipv4.addresses 192.168.20.170/24

Set the gateway on RHEL 8:

# nmcli con mod enp0s3 ipv4.gateway 192.168.20.1

Inform the interface that it is using manual configuration (not dhcp etc.).

# nmcli con mod enp0s3 ipv4.method manual

Configure DNS:

# nmcli con mod enp0s3 ipv4.dns "8.8.8.8"

Reload the interface configuration:

# nmcli con up enp0s3 
Nmcli Command Examples

Your changes will be saved in /etc/sysconfig/network-scripts/ifcfg-.

Here is the configuration file that has been generated for me:

# cat /etc/sysconfig/network-scripts/ifcfg-enp0s3
ifcfg-enp0s3 Configuration
TYPE="Ethernet"
BOOTPROTO="none"
NAME="enp0s3"
IPADDR="192.168.20.170"
NETMASK="255.255.255.0"
GATEWAY="192.168.20.1"
DEVICE="enp0s3"
ONBOOT="yes"
PROXY_METHOD="none"
BROWSER_ONLY="no"
PREFIX="24"
DEFROUTE="yes"
IPV4_FAILURE_FATAL="no"
IPV6INIT="no"
UUID="3c36b8c2-334b-57c7-91b6-4401f3489c69"
DNS1="8.8.8.8"
Conclusion

In this tutorial you have seen how to configure a static IP address with network scripts, nmtui and nmcli utilities in RHEL 8. If you have any questions or comments, please do not hesitate to submit them in the comment section below.

Ref From: tecmint
Channels: RHEL 8

Related articles