Deploy virtual private servers across 5 regions in seconds. Full root access, SSH, and 15 OS images.
💡 Your root password is shown only once at creation. Save it immediately or add an SSH key.
| Plan | vCPUs | RAM | Disk | Bandwidth | Price |
|---|---|---|---|---|---|
nano | 1 | 512 MB | 10 GB | 0.5 TB | $2/mo |
s-small | 1 | 1 GB | 25 GB | 1 TB | $5/mo |
s-medium | 2 | 2 GB | 50 GB | 2 TB | $10/mo |
s-large | 2 | 4 GB | 80 GB | 3 TB | $20/mo |
s-xl | 4 | 8 GB | 160 GB | 4 TB | $40/mo |
s-2xl | 8 | 16 GB | 320 GB | 5 TB | $80/mo |
| Plan | vCPUs | RAM | Disk | Bandwidth | Price |
|---|---|---|---|---|---|
d-small | 2 | 4 GB | 80 GB | 4 TB | $24/mo |
d-medium | 4 | 8 GB | 160 GB | 5 TB | $48/mo |
d-large | 8 | 32 GB | 320 GB | 8 TB | $48/mo |
d-xl | 16 | 64 GB | 400 GB | 12 TB | $96/mo |
Dedicated plans include a dedicated IP address at no extra cost.
| Image ID | OS |
|---|---|
ubuntu-22.04 | Ubuntu 22.04 LTS |
ubuntu-24.04 | Ubuntu 24.04 LTS |
debian-11 | Debian 11 (Bullseye) |
debian-12 | Debian 12 (Bookworm) |
centos-stream-9 | CentOS Stream 9 |
rocky-9 | Rocky Linux 9 |
alma-9 | AlmaLinux 9 |
fedora-40 | Fedora 40 |
fedora-41 | Fedora 41 |
arch | Arch Linux (rolling) |
alpine-3.19 | Alpine 3.19 |
alpine-3.20 | Alpine 3.20 |
opensuse-15 | openSUSE Leap 15.6 |
amazon-2023 | Amazon Linux 2023 |
oracle-9 | Oracle Linux 9 |
| Region | Location | Nodes |
|---|---|---|
eu-central | 🇪🇺 Europe (Germany/Finland) | 2 |
eu-west | 🇨🇭 Europe (Switzerland) | 1 |
us-east | 🇺🇸 US East | 1 |
us-west | 🇺🇸 US West | 1 |
sa-east | 🌎 South America / Global | 3 |
After creation, connect via SSH:
ssh root@<ip_address> -p <ssh_port>
Example:
ssh root@31.97.109.213 -p 22001
You can add SSH keys at creation or later:
Click Reset Password on any running instance. A new random password is generated and displayed once.
| Action | Description |
|---|---|
| Creating | Instance is being provisioned (~15 seconds) |
| Running | Instance is online and accessible via SSH |
| Stopped | Instance is stopped (no compute charges, storage retained) |
| Restart | Stop + Start in one action |
| Destroy | Permanently delete instance and all data |
All VPS operations are available via the REST API. See the Compute API Reference for details.
curl -X POST https://dcdncloud.com/api/v1/compute/instances \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "my-server",
"plan": "s-small",
"image": "ubuntu-22.04",
"region": "eu-central"
}'
curl https://dcdncloud.com/api/v1/compute/instances \ -H "Authorization: Bearer YOUR_TOKEN"
curl -X DELETE https://dcdncloud.com/api/v1/compute/instances/{id} \
-H "Authorization: Bearer YOUR_TOKEN"
Enable the Redundant option during creation to deploy your instance on two nodes simultaneously. If the primary node fails, the verification node can take over.