VPS Servers
VPS (Virtual Private Server) is a virtual server with full control over the operating system and configuration.
Overview
| Feature | Details |
|---|---|
| Availability | 24/7 |
| SSH Access | Yes |
| Management | Full root access |
| Location | Europe |
Ordering a VPS
Step 1 — Select Service
- Go to coresynth.io
- In the menu select VPS
- Choose a plan based on your needs
Step 2 — Configuration
Select:
- Operating system (Ubuntu, Debian, CentOS, Fedora, Alpine)
- Data center
- Add-ons (backups, monitoring)
Step 3 — Complete Order
Complete the payment and the VPS will be created within a few minutes.
Operating System Installation
Step 1 — VNC Console
After VPS creation, open VNC Console in your dashboard.
Step 2 — Boot Menu
- In the boot menu select CD/DVD
- Mount your custom ISO (e.g. Ubuntu 22.04)
- Reboot the server
Step 3 — OS Installation
Install the operating system following the on-screen instructions.
Note: For most cases we recommend Ubuntu 22.04 LTS.
Network Configuration
Warning: Correct network configuration is CRITICAL. Without it, the server will not be accessible.
Network Parameters
| Parameter | Example | Description |
|---|---|---|
| IP Address | 185.193.66.101/23 | Address with /23 prefix |
| Gateway | 185.193.66.1 | First IP in range |
| DNS | 1.1.1.1, 8.8.8.8 | DNS servers |
Ubuntu Configuration (netplan)
sudo nano /etc/netplan/01-netcfg.yamlnetwork:
version: 2
renderer: networkd
ethernets:
eth0:
addresses:
- 185.193.66.101/23
gateway4: 185.193.66.1
nameservers:
addresses:
- 1.1.1.1
- 8.8.8.8sudo netplan applyFirst SSH Connection
Step 1 — SSH Connection
Step 2 — Verification
After connecting you should see the server terminal.
Initial Configuration
After the first connection, perform basic setup:
System Update
apt update
apt upgrade -yInstall Basic Tools
apt install htop curl wget git nano ufw fail2banSet Timezone
timedatectl set-timezone Europe/PragueNetwork Troubleshooting
Server Not Reachable
Cause: Incorrect network configuration.
Solution:
- Check IP address and gateway via VNC Console
- Verify netplan configuration
- Restart network services:
systemctl restart networking
Cannot Ping External Addresses
Cause: Missing DNS or gateway.
Solution:
# Test DNS
ping -c 4 1.1.1.1
# Verify gateway
ip route showNext Steps
- Linux Basics — Learn basic commands
- VPS Security — Secure your server
- Firewall — Configure firewall
- Backups — Back up your data
Need help? Open a support ticket or ask Alex.
Last updated on