How do I bind my additional IPs?

These instructions are for CentOS / Fedora specifically.

By default, we only binds your first primary IP address. This is because there are different methods of applying your additional IPs that may require that they not be bound originally.

Here is the simplest way of binding your additional IPs:

1) Find out which interface is your public

[root@LSN-D#### ~]# route | grep -v "10." | grep -m 1 "255.255" | awk '{ print $8 }'
<strong>eth1</strong>

This shows that my public interface (does not have a "10." address) is eth1.

2) Create the route file

Before running the command below, change "eth1" to your public interface from step 1 and set your START and END IP addresses in the range.

Note:Your IPADDR_START should be your second usable IP as your primary is already bound. The IPADDR_END value is your last usable IP.

echo "IPADDR_START=123.123.123.4
IPADDR_END=123.123.123.5
CLONENUM_START=0" >> /etc/sysconfig/network-scripts/ifcfg-<strong>eth1</strong>-range0

3) Restart your network interface

service network restart

  • 1 Users Found This Useful
Was this answer helpful?

Related Articles

How do I run a traceroute?

Both Windows and Linux have the ability of diagnosing the health of a connection between a source...

How do I schedule FSCK to run automatically?

Using cron to schedule an FSCKBy default, a fsck is forced after 30 reboots or 180 days.To avoid...

Why is cPanel/WHM not loading?

There are two main reasons why cPanel/WHM isn't loading that we've seen.Brand New ServerIf you...

How to install cPanel on CentOS

Installation Notes A CentOS or Red Hat server that is going to have cPanel installed needs a...

How do I set the Primary Interface in WHM?

Under Basic cPanel/WHM Configuration, there is an area called Primary Interface. By default, if...