Posted On April 1, 2019

Linux: How to set a static IP address

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Linux: How to set a static IP address
Set Static IP Address
—-
vim /etc/sysconfig/networking/profiles/default/ifcfg-eth0
vim /etc/sysconfig/network-scripts/ifcfg-eth0
—-
DEVICE=eth0
BOOTPROTO=none
HWADDR=00:0C:29:d7:5b:d3
ONBOOT=yes
TYPE=Ethernet
USERCTL=no
IPV6INIT=no
PEERDNS=yes
NETMASK=255.255.255.0
IPADDR=192.168.1.150
GATEWAY=192.168.1.1
 
Change Nameserver (DNS)
—-
vim /etc/resolv.conf
—-
The file format should be like this:
    search your-dns-search-path
    nameserver dns1-ip-address
    nameserver dns2-ip-address
    nameserver dns3-ip-address
 
Sample:
 
# Generated by NetworkManager
nameserver 127.0.0.53
10.10.10.100
8.8.8.8
1.1.1.1

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

WordPress Multi-site with Single Sign On (SSO)

Step 1: Login Access the correct environment using wp_admin login with the DevOps standard password:…

Intermittent Ping Request Time Out Due to An Outdated ARP Table Entry of a Ubuntu Server

Scenario: - Server A and Server B hardware are of the same model and capacity-…

Default Nginx Installation on Centos 7

NGINX as HTTP / HTTPS Proxysudo yum install epel-releasesudo yum install nginxsudo systemctl start nginxsudo…