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

OpenProject Installation on CentOS 7

Docker Implementation:   # Create database on existing SQL Server (not being used) #CREATE DATABASE…

How to configure CentOS 5.2 to use RPMForge and YUM

rpm -Uhv yum update   Yum install [package name] Yup info [package name] Yum remove…

Baseline Server Image

OS: CentOS 7 Minimal Obtain ISO from https://www.centos.org/download/ Create Bootable USB On a CentOS 6.5, Ubuntu…