A single dedicated server with multiple IP addresses is one of the most versatile infrastructure configurations available. From email deliverability to e-commerce scaling, multiple IPs on a dedicated server unlock capabilities that a single IP cannot provide.

Primary Use Cases for Multiple IPs on Dedicated Servers

1. Email Marketing and SMTP Routing

This is the most common reason. By assigning different IP addresses to different sending domains or campaigns:

  • A spam complaint on one IP does not affect others
  • Different customer sending streams remain isolated
  • IP warming can happen on new IPs while old IPs continue sending
  • Specific ISP throttling on one IP does not stop delivery to others

2. SSL Certificates and Virtual Hosting

While SNI (Server Name Indication) allows multiple SSL domains on one IP, some legacy systems and enterprise clients still require dedicated IPs per SSL certificate. With a /29 subnet (5 usable IPs), you can host 5 domains with dedicated IP SSL without SNI.

3. SEO and Multi-Site Hosting

When hosting multiple client websites on one server, separate IPs prevent cross-site linking footprints. This is particularly important for:

  • PBN (Private Blog Network) operators
  • Hosting agencies managing client sites independently
  • Multi-regional sites targeting different geographies

4. VPN and Proxy Services

Commercial VPN services and proxy providers use IP blocks to offer multiple exit nodes from a single server. Each IP appears as a separate endpoint to the outside world.

5. Application Isolation

In multi-tenant applications, binding different application instances to different IPs allows IP-level rate limiting and access control without port-based separation.

IP Address Types and Pricing

AllocationIPs AvailableTypical Monthly Cost
Single additional IP1$1–$3
/30 subnet2 usable$4–$8
/29 subnet5 usable (8 total)$10–$20
/28 subnet13 usable (16 total)$25–$50
/27 subnet29 usable (32 total)$50–$100

Configuring Multiple IPs on Ubuntu/Debian

# /etc/netplan/01-netcfg.yaml
network:
  version: 2
  ethernets:
    eth0:
      addresses:
        - 103.x.x.1/24
        - 103.x.x.2/24
        - 103.x.x.3/24
        - 103.x.x.4/24
        - 103.x.x.5/24
      gateway4: 103.x.x.254
      nameservers:
        addresses: [8.8.8.8, 1.1.1.1]

netplan apply
IPv4 addresses are a finite, increasingly scarce resource. A /29 subnet purchased today at $15/month may represent significant infrastructure value as IPv4 scarcity continues to increase prices.

WebsNP provides additional IPv4 addresses and subnets on all dedicated server plans. Contact us to discuss IP allocation options.