Software Only Multiple IP Support Setup - Redhat Linux
For organizations using Redhat Linux, use the following procedure for each IP address that your organization is using with Multiple IP Support for Web Access Management.
- Check setting of primary network interface (eth0)
cd /etc/sysconfig/network-scripts
cat ifcfg-eth0
- As superuser, create an IP alias.
su
cd /etc/sysconfig/network-scripts
cp ifcfg-eth0 ifcdfg-eth0:1
cp ifcfg-eth0 ifcfg-eth0:2
...
cp ifcfg-eth0 ifcfg-eth0:n - Update the DEVICE and IPADDR lines in each ifcfg-eth0:n file where n is the number of the file.
Set the DEVICE and IPADDR values as follows, where .n is the number of the ifcfg-eth0: file and [IP ADDRESS] is the IP address:
DEVICE=eth0:n
IPADDR=[IP ADDRESS] - Enter IP and alias in /etc/hosts
.
vi /etc/hosts
[IP address 1] alias1
[IP address 2] alias2
...
[IP address n] aliasn - Run the ifconfig [device] command for each device as follows:
/sbin/ifconfig.eth0:1 [IP address 1] netmask [IPADDR value from ifcfg-eth0 file] up
/sbin/ifconfig.eth0:2 [IP address 2] netmask [IPADDR value from ifcfg-eth0 file] up
...
/sbin/ifconfig.eth0:n [IP address n] netmask [IPADDR value from ifcfg-eth0 file] up - Verify the new IPs and alias.
/sbin/ifconfig -a - Test the connection from within the server. For example:
ping [IP address]