Maxy.fr

How to configure an IPFailOver on Debian and ISPConfig 3

If you have a Debian server with ISPConfig 3 installed, here is how to configure one or more IP FailOver addresses.

Debian Configuration

First, you need to configure Debian to add your new IP address.

Connect to your server and edit the file /etc/network/interfaces.

If you have a Debian version higher than 6 (which is usually the case), you will need to add the following two lines for each new IP address you want to add:

post-up /sbin/ifconfig eth0:X IPFailOver netmask 255.255.255.255 broadcast IPFailOver
post-down /sbin/ifconfig eth0:X down

Replace the X after eth0: with 0 for the first IP you are adding, 1 for the second, and so on. Replace "IPFailOver" with the IP address you want to add.

You should end up with a file similar to this:

auto eth0
iface eth0 inet static
address *.*.*.*
netmask 255.255.255.0
network *.*.*.*
broadcast *.*.*.*
gateway *.*.*.*
post-up /sbin/ifconfig eth0:0 *.*.*.* netmask 255.255.255.255 broadcast *.*.*.*
post-down /sbin/ifconfig eth0:0 down

...

Save the file and execute the following command to apply the updates:

/etc/init.d/networking restart

To verify that everything is working, ping the IP address in question; you should receive a response (which was not the case before).

ISPConfig 3 Configuration

Now, all you need to do is inform ISPConfig of the new IP address so you can use it from the interface.

Go to the "System" > "Server IP Addresses" tab, then click on "New IP Address".

Enter the client and the IP address, and save.

 

You can now configure the services you want on this new IP address.

Categories : Linux

By Guillaume - 08/02/2016 at 02:41 am

Shar this article :

Similar articles

How to resolve the Possible attack detected message in ISPConfig ?

If you are managing a web server with ISPConfig, you may encounter the warning message "Possible attack detected. This action has been logged." on the web interface, making access impossible. This alert can be triggered for various reasons, but its resolution is simple. Here's how to resolve...

Postfix : Fixing email sending issues to Gmail due to IPv6

If you are unable to send emails to Gmail addresses from your server and you encounter the following error, it is likely a configuration issue if you have both IPv4 and IPv6: Our system has detected that this message does 550-5.7.1 not meet IPv6 sending guidelines regarding PTR records and...

Automatically Start Node.js on Server Boot

If you've ever created programs using Node.js, you've probably encountered this issue: Node.js scripts don't automatically restart when you reboot your server. Therefore, you need to manually reconnect to restart them, which can be quite inconvenient. Here's a small shell script that allows you to...