Use arrow keys to navigate through slides. Press Space or Enter to pause autoplay.
How to order and add an IP address to VDS
How to Order Additional IP Addresses
Go to the billing panel, select the "Virtual Servers" section from the left sidebar, then click on your VDS and the "IP Addresses" button.

IP Addresses You will see all available IP addresses for the server. Click the "Order" button to add new ones.

Order New IPs Specify the number of addresses and click the "Restart Server" button.

Restart Server After your order is processed, the new IP addresses, along with the mask and gateway, will appear on the same page.

New IP Addresses The control panel will automatically add the new IP addresses to your virtual server's network configuration. This means no additional settings are required; you can start using the added IPs immediately.
How to Replace the Primary IP with Another
Since the control panel automatically adds new IPs to your VDS network configuration, you can start using them right away. However, there might be a situation where you need to completely change the main (primary) IP of the server and make the old one inaccessible. To do this, follow these steps:
- Order an additional IP as shown in the first section of this guide.
- Connect to your server via SSH or through VNC in the VMmanager panel.
- Follow the further instructions based on the operating system installed on your VDS:
Debian and Ubuntu
Install the text editor
nano, if it is not available, with the command:apt-get install nanoOpen the network configuration file:
nano /etc/network/interfacesInitially, the content of the file will look approximately as shown in the screenshot: here in the eth0 section are the settings for the main IP, and in the eth0:0…eth0:N sections are all the additional ones:

Network Configuration Since we want to change the main IP address of the server and make the old one inaccessible, we need to remove the section where the settings for the new IP that we will use are written, and move it to the eth0 section, in the address line. The finished file should look approximately like this:

Finished File To save the file press
CTRLandO, thenEnter. To close the editor pressCTRL+X.All that is left is to restart the network and reconnect using the new IP address:
service networking restart
CentOS
Install the text editor
nano, if it is not available, with the command:yum install nanoNavigate to the folder where the network configuration files are located:
cd /etc/sysconfig/network-scripts/There are many files here, but we are only interested in those prefixed with
-eth0. In the fileifcfg-eth0the main IP of the server is written, in the filesifcfg-eth0:0…ifcfg-eth0:Nwill be all the additional ones that you order:
Configuration Files Since we want to change the main IP address of the server and make the old one inaccessible, we need to delete the file where the settings for the new IP that we will use are written and move it to the
ifcfg-eth0file, in the IPADDR line. Delete:rm -rf ifcfg-eth0:0. Open and edit:nano ifcfg-eth0
Editing ifcfg-eth0 To save the file press
CTRLandO, thenEnter. To close the editor pressCTRL+X.All that is left is to restart the network and reconnect using the new IP address:
service network restart.






