Adding an extra IP to your dedicated server

How to order and configure an additional IPv4 address.

An extra IP address on your dedicated server gives you more flexibility:

  • Run multiple sites or services on separate IPs (ideal for SSL certificates, different projects, or IP-based restrictions)
  • Separate traffic for different applications (web, mail, VPN, etc.)
  • Improve email deliverability by dedicating one IP to SMTP
  • Bypass certain provider or service limits that require unique IPs

On Fornex dedicated servers, you can add up to 3 additional IPv4 addresses.

How to Order an Additional IP

  1. Log in to your personal account → go to Dedicated Servers.
  2. Select the server → open the IPv4 tab.
  3. Click Add IP.

Adding IP in the IPv4 section Click "Add IP" in the server settings

  1. Hit Save.

The price is calculated proportionally for the remaining days of your current paid period.
Once paid, the IP appears immediately in your list and is ready for use.

Configuring the Additional IP on the Server

After ordering, you need to manually add the new IP to the operating system via SSH.

Example for Ubuntu/Debian (using netplan or /etc/network/interfaces)

  1. SSH into your server.
  2. Edit the network configuration (depending on your OS version):
    • Ubuntu 18.04+ (netplan): /etc/netplan/01-netcfg.yaml
    • Older Debian/Ubuntu: /etc/network/interfaces

Netplan example (add the new IP to the file):

network:
  version: 2
  renderer: networkd
  ethernets:
    eth0:
      dhcp4: no
      addresses:
        - YOUR_PRIMARY_IP/32
        - YOUR_ADDITIONAL_IP/32   # ← add this line
      gateway4: YOUR_GATEWAY
      nameservers:
        addresses: [8.8.8.8, 8.8.4.4]
  1. Apply changes:
sudo netplan apply
  1. Verify the IP is active:
ip addr show

Example for CentOS/AlmaLinux/Rocky (using /etc/sysconfig/network-scripts/)

  1. Create a file: /etc/sysconfig/network-scripts/ifcfg-eth0:1 (or replace eth0 with your interface).
  2. Add the following content:
DEVICE=eth0:1
BOOTPROTO=static
IPADDR=YOUR_ADDITIONAL_IP
NETMASK=255.255.255.255
ONBOOT=yes
  1. Restart networking:
sudo systemctl restart NetworkManager
# or
sudo service network restart
  1. Check:
ip addr show

Useful notes

  • The new IP is billed proportionally for the remaining days of your current paid period.
  • You can add up to 3 extra IPs per dedicated server.
  • After configuration, update your DNS records (A/AAAA) or services to use the new IP where needed.

Help

If you have any questions or need assistance, please contact us through the ticket system — we're always here to help!

Need help?Our engineers will help you free of charge with any question in minutesContact us