Architecture Review

Does Netcup Support Hardware Nested Virtualization? Reality Check & LXC / Docker Alternatives

Many developers purchase Netcup Root Servers intending to run Proxmox VE with nested KVM. Real-world benchmarks confirm: Netcup hypervisors disable AMD-V hardware passthrough. Here is the technical reality and the optimal LXC/Docker architecture.

M
Markus S. (Senior Cloud Infrastructure Engineer)
Verified & Tested: September 2026
⏱️ 10 min read

1. Real-World Findings: Does Netcup Support Nested KVM?

Direct Verdict: Hardware Nested Virtualization is Explicitly Disabled

Although Netcup Root Server (RS G12) instances provide 1:1 dedicated AMD EPYC 9645 cores with zero CPU steal, the host KVM hypervisor does not pass through AMD-V / SVM CPU virtualization extensions. Running hardware-accelerated nested KVM virtual machines is impossible out of the box.

Inspecting CPU flags on a fresh Debian 12 Root Server yields the following authentic outputs:

Root Server Benchmark & CPU Flag Check

# 1. Check for hardware virtualization flags

egrep -c '(vmx|svm)' /proc/cpuinfo

0

# 2. Check for /dev/kvm device

ls -l /dev/kvm

ls: cannot access '/dev/kvm': No such file or directory

# 3. YABS system report

CPU Model : AMD EPYC 9645 96-Core Processor

CPU Cores : 4 @ 2296.548 MHz

AES-NI : ✓ Enabled

VM-x/AMD-V : ✗ Disabled

2. Technical Rationale: Why Host Hypervisors Block AMD-V

Why is there frequent confusion? Root Servers feature dedicated cores, often leading developers to confuse them with physical bare-metal hardware. Netcup intentionally disables nested CPU flags for three primary operational reasons:

🔄 Seamless Live Migration

Nested CPU states complicate live migrations across cluster hosts during hardware maintenance windows.

🛡️ Host Kernel Security Isolation

Mitigates speculative side-channel vulnerabilities across shared virtualization backplanes.

📋 Official Policy (Custom Flags Retired)

Historical custom ticket requests for VMX flags have been entirely retired by Netcup management.

3. Performance Warning: Avoid Pure QEMU Software Emulation

⚠️ Why Pure Software CPU Emulation Fails in Production:

Without /dev/kvm hardware acceleration, hypervisors fallback to QEMU TCG software emulation. CPU instructions are translated purely in user-space software, causing 100% CPU pinning, 15-minute boot sequences, and >90% throughput degradation.

5. Hands-On: Running Proxmox VE with High-Performance LXC Guests

Follow these steps to deploy Proxmox VE with native LXC container clustering on Netcup Root Servers:

Install PVE & Create LXC Bridge

# 1. Install Proxmox VE 8 on Debian 12

echo "deb [arch=amd64] http://download.proxmox.com/debian/pve bookworm pve-no-subscription" > /etc/apt/sources.list.d/pve-install-repo.list

wget https://enterprise.proxmox.com/debian/proxmox-release-bookworm.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg

apt update && apt install -y proxmox-default-kernel proxmox-ve postfix open-iscsi

# 2. Create internal bridge vmbr1 for LXC containers

# Append to /etc/network/interfaces:

auto vmbr1

iface vmbr1 inet static

address 10.10.10.1/24

bridge-ports none

bridge-stp off

bridge-fd 0

post-up echo 1 > /proc/sys/net/ipv4/ip_forward

post-up iptables -t nat -A POSTROUTING -s '10.10.10.0/24' -o eth0 -j MASQUERADE

# 3. Create LXC containers in Web GUI with 10.10.10.x IPs

MS
Article Author & Infrastructure Lead10+ Years European Datacenter & Virtualization Practice

Markus S.

Senior Cloud Infrastructure Architect & Linux Sysadmin

Markus focuses on European cloud hosting economics, server performance optimization, and KVM virtualization. All benchmarks, setup guides, and VAT exemption procedures are verified on self-funded Netcup instances hosted in the Nuremberg datacenter (AMD EPYC hardware).

🛡️100% Independent & Self-Funded (No sponsored influence)
Real Hardware Benchmarks (AMD EPYC 9645 / Genoa clusters)
🔄Daily Automated Verification (All promo codes regularly validated)
Editorial Independence & Integrity Policy: Netcup.Discount maintains complete editorial neutrality. While some links may earn referral credit, our benchmarks, configuration advice, and hosting evaluations remain strictly objective.
⚡ Real-time Synced Pool

💰 Netcup Verified Coupons & Discounts

We maintain an updated collection of verified netcup discount codes, with real-time automatic synchronization. Get up to 30% off or free months on your next order.

Browse All Coupons →