Skip to content
Summer 2026: 20% off 12-month terms with code ATLAS10 stacked on top
NetworkingUpdated January 30, 2026 ยท 11,208 views

Adding an additional IPv4 address

Order an extra IP and configure it on Windows or Linux.

Order it

Services โ†’ your server โ†’ Addons โ†’ Additional IPv4, $3.00/month each, up to 8 per instance. It is assigned to your instance within a minute; you then configure it inside the OS.

Linux (netplan, Ubuntu 22.04+)

sudo nano /etc/netplan/50-cloud-init.yaml
network:
  version: 2
  ethernets:
    eth0:
      addresses:
        - 198.51.100.24/24
        - 198.51.100.57/24   # the new one
      routes:
        - to: default
          via: 198.51.100.1
sudo netplan apply && ip -4 addr show eth0

Windows

New-NetIPAddress -InterfaceAlias "Ethernet" -IPAddress 198.51.100.57 -PrefixLength 24
Get-NetIPAddress -AddressFamily IPv4 | Format-Table InterfaceAlias, IPAddress

Notes

  • Each additional IP gets its own rDNS control.
  • Annual and biennial terms include one free additional IPv4.
  • We check RBL history before assignment; if you receive a listed IP, tell us and we will swap it free.
  • IPv6 /64 allocations are free on request in all European locations and are rolling out fleet-wide during 2026.

Did this solve your problem?

If not, open a ticket and paste the command output you got. Support is 24/7 with a 12-minute median first reply, and the same engineers maintain these pages.