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

Linux Filesystem Hierarchy Standard (FHS)

/bin : binaries to run fundamental Linux functions/boot : boot partition/cdrom : legacy mounting point/dev…

VMware Virtual Disk Manager Does Not Expand Partitions

If you are using the VMware Virtual Disk Manager included in GSX Server, VMware Server,…

FFMPEG Ftuff (old)

Install prerequisites: --- Install DAG --- yum install rpmforge-release yum install gcc gcc-cpp gcc-c++ zlib-devel…