Skip to main content

Dedicated IPv4 Setup

Each Virtual Dedicated Server (VDS) can be assigned a dedicated IPv4 address for direct network routing.

Requesting Additional IPv4 Addresses

Standard VDS plans come with shared port ranges. If you require a unique public IP address (such as for web servers running on standard port 80/443 or custom mail servers):

  • Dedicated IPs can be purchased as addons via the Billing Portal.
  • Current Pricing: ₱750.00/mo per PH-1 Dedicated IPv4.

Manual IP configuration on Linux

Once assigned to your server, you can configure your secondary IP address inside your networking configuration file:

Ubuntu 20.04+ (Netplan)

Open your Netplan configuration (usually /etc/netplan/01-netcfg.yaml or similar):

network:
version: 2
renderer: networkd
ethernets:
eth0:
addresses:
- 192.168.1.100/24
- your_new_dedicated_ip/24
gateway4: 192.168.1.1

Apply the changes:

sudo netplan apply