All systems operational

Pay with Bitcoin, Monero, USDT & 11 more · email-only sign-up

Networking

Adding extra IPv4 addresses

Order up to 16 additional IPv4 addresses and configure them on the host or for VMs.

4 min readReviewed 25 September 2026

About this guideGuide

Category
Networking
Reading time
4 minutes
Written for
Debian 12 and 13, Ubuntu 24.04 and 26.04RHEL-family differences flagged in the text
Last reviewed
25 September 2026

Ordering

Add IPv4 addresses on the order page, or later from a ticket: $3 per address per month, up to 16 per server. They are routed to your server’s main IPv4 address, so nothing changes on the network side for your existing address.

On the host itself

# netplan: add the extra address as a /32
      addresses:
        - "203.0.113.10/32"
        - "203.0.113.20/32"

For virtual machines (routed setup)

Because the addresses are routed to your server, the host routes each one to its VM. On Proxmox, create a bridge without a physical port, give it the host’s main address, enable forwarding and add a host route per VM address:

$ sysctl -w net.ipv4.ip_forward=1
$ ip route add 203.0.113.20/32 dev vmbr1

Inside the VM, configure 203.0.113.20/32 with the host’s main address as gateway (on-link).