Click here to Skip to main content
15,892,298 members
Articles / Operating Systems / Linux
Tip/Trick

How to Configure Virtual IP Address (VIP) on CentOS

Rate me:
Please Sign up or sign in to vote.
5.00/5 (3 votes)
20 Dec 2018CPOL 39.4K   1  
This tutorial will guide you on how to configure virtual IP address on your server.

Introduction

As its name suggests, Virtual IP address (VIP) is an IP address that doesn't have an actual physical network interface. Incoming packets are sent to the VIP, but all packets travel through the real network interfaces.

Virtual IP address is commonly used for database high availability. Applications use it for database connections instead of the normal host IP address. When the active database fail, the VIP will be shifted to the newly promoted host.

Tutorial

Step 1

Run this command to show the current network configuration and see the configured network interface of the server:

ip addr show

Image 1

From the above output, we can see that the network interface is enp0s3.

Step 2

The configuration file for the enp0s3 network interface can be found in:
/etc/sysconfig/network-scripts.

In order to create a virtual network interface, we need to copy first the master configuration file.

cd /etc/sysconfig/network-scripts/
cp ifcfg-enp0s3 ifcfg-enp0s3:1

Step 3

Edit its content to set an appropriate network interface name and IP address - DEVICE, NAME, IPADDR in the virtual network configuration file.

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

TYPE="Ethernet"
PROXY_METHOD="none"
BROWSER_ONLY="no"
BOOTPROTO="none"
DEFROUTE="yes"
IPV4_FAILURE_FATAL="no"
IPV6INIT="yes"
IPV6_AUTOCONF="yes"
IPV6_DEFROUTE="yes"
IPV6_FAILURE_FATAL="no"
IPV6_ADDR_GEN_MODE="stable-privacy"
NAME="enp0s3"
UUID="b1d44459-6b90-435a-950e-9b6001cfcf1b"
DEVICE="enp0s3"
ONBOOT="yes"
IPADDR="192.168.40.222"
PREFIX="24"
GATEWAY="192.168.40.60"
DNS1="192.168.40.60"
IPV6_PRIVACY="no"
ZONE=public

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

TYPE="Ethernet"
PROXY_METHOD="none"
BROWSER_ONLY="no"
BOOTPROTO="none"
DEFROUTE="yes"
IPV4_FAILURE_FATAL="no"
IPV6INIT="yes"
IPV6_AUTOCONF="yes"
IPV6_DEFROUTE="yes"
IPV6_FAILURE_FATAL="no"
IPV6_ADDR_GEN_MODE="stable-privacy"
NAME="enp0s3"
UUID="b1d44459-6b90-435a-950e-9b6001cfcf1b"
DEVICE="enp0s3:1"
ONBOOT="yes"
IPADDR="192.168.40.224"
PREFIX="24"
GATEWAY="192.168.40.60"
DNS1="192.168.40.60"
IPV6_PRIVACY="no"

Step 4

Once you have edited the virtual network interface file, restart the network service.

systemctl restart network

Step 5

Check your network settings again and you’ll see the configured virtual network interface:

ip addr show

Image 2

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Philippines Philippines
www.renzladroma.com

Comments and Discussions

 
-- There are no messages in this forum --