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

How to Move Virtualbox Guest VMs to Different Hosts

Connect to Source Host and copy files to NAS: ssh webadmin@server01 vboxmanage list running vms…

Installing FFMPEG and FFMPEG-PHP

How to install ffmpeg, ffmpeg-PHP, Mplayer, Mencoder, flv2tool, LAME MP3 Encoder, and Libog from source…

HAProxy with Multiple SSL Certs

Method 1: --------- defaults   log 127.0.0.1 local0   option tcplog   frontend ft_test   mode http   bind…