{"id":10622,"date":"2026-01-08T10:00:23","date_gmt":"2026-01-08T09:00:23","guid":{"rendered":"https:\/\/www.credativ.de\/?p=10622"},"modified":"2026-01-08T10:00:23","modified_gmt":"2026-01-08T09:00:23","slug":"determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc","status":"publish","type":"post","link":"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/","title":{"rendered":"Determining the Maximum CPU Model for Live Migrations in Proxmox Clusters with ProxCLMC"},"content":{"rendered":"<h2><strong>ProxCLMC \u2013 What is it?<\/strong><\/h2>\n<p>Live migration is one of the most powerful and frequently used functions in a <a href=\"https:\/\/www.credativ.de\/en\/portfolio\/support\/proxmox-virtualization\/\">Proxmox VE Cluster<\/a>. However, it presupposes a requirement that is often underestimated: consistent CPU compatibility across all nodes. In real-world environments, clusters rarely consist of identical hardware where you could simply use the CPU type <a href=\"https:\/\/gyptazy.com\/proxmox-and-windows-vms-why-the-native-cpu-type-might-be-a-bad-idea\/\"><em data-start=\"378\" data-end=\"384\">host<\/em><\/a>. Nodes are added over time, CPU generations differ, and functional scopes continue to evolve. Although Proxmox VE allows a flexible CPU configuration, determining a safe and optimal CPU baseline for the entire cluster has so far been largely a manual and experience-based task.    <\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignleft size-medium wp-image-10601\" src=\"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/12\/proxclmc-300x141.png\" alt=\"\" width=\"300\" height=\"141\" srcset=\"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/12\/proxclmc-300x141.png 300w, https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/12\/proxclmc-768x360.png 768w, https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/12\/proxclmc-600x281.png 600w, https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/12\/proxclmc-180x84.png 180w, https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/12\/proxclmc.png 800w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/p>\n<p><a href=\"https:\/\/gyptazy.com\/proxclmc-identifying-the-maximum-safe-cpu-model-for-live-migration-in-proxmox-clusters\/\" target=\"_blank\" rel=\"noopener\">ProxCLMC<\/a> (Prox CPU Live Migration Checker) was developed by our colleague Florian Paul Azim Hoberg (also known as <a href=\"https:\/\/gyptazy.com\/\" target=\"_blank\" rel=\"noopener\">gyptazy<\/a>) in Rust as an open-source solution under the GPLv3 license <a href=\"https:\/\/gyptazy.com\/proxclmc-identifying-the-maximum-safe-cpu-model-for-live-migration-in-proxmox-clusters\/\" target=\"_blank\" rel=\"noopener\">to close this gap<\/a> in a simple, automated, and reproducible way. The tool examines all nodes of a Proxmox VE cluster, subsequently analyzes their CPU capabilities, and calculates the highest possible CPU compatibility level supported by each node. Instead of relying on assumptions, spreadsheets, or trial and error, administrators receive a clear and deterministic result that can be used directly when selecting VM CPU models.  <\/p>\n<p>Comparable mechanisms already exist in other virtualization ecosystems. Enterprise platforms often offer integrated tools or automatic assistance to detect compatible CPU baselines and prevent invalid live migration configurations. <a href=\"https:\/\/www.credativ.de\/en\/portfolio\/proxmox-solutions\/\">Proxmox VE<\/a> currently does not have such an automated detection mechanism, so administrators must manually compare CPU flags or rely on operational experience. <strong>ProxCLMC<\/strong> closes this gap by providing a cluster-wide CPU compatibility analysis specifically tailored to Proxmox environments. <\/p>\n<h2>How does ProxCLMC work?<\/h2>\n<p><a href=\"https:\/\/github.com\/gyptazy\/ProxCLMC\" target=\"_blank\" rel=\"noopener\">ProxCLMC<\/a> is designed to integrate seamlessly into existing Proxmox VE clusters without requiring additional services, agents, or configuration changes. It is written entirely in Rust (fully open source under GPLv3), compiled as a static binary, and provided as a Debian package via the gyptazy repository to facilitate easy installation. The workflow follows a clear and transparent process that reflects how administrators think about CPU compatibility but automates it reliably and reproducibly.  <\/p>\n<p>After starting, the tool parses the local <code>corosync.conf<\/code> on the node on which it is running. This allows ProxCLMC to automatically detect all members of the cluster without relying on external inventories or manual input. The determined node list thus always corresponds to the actual state of the cluster.  <\/p>\n<p>Once all cluster nodes are identified, ProxCLMC establishes an SSH connection to each node. Via this connection, it remotely reads the content of <code>\/proc\/cpuinfo<\/code>. This file provides a detailed and authoritative view of the CPU capabilities provided by the host kernel, including the complete set of supported CPU flags.  <\/p>\n<p>From the collected data, ProxCLMC extracts the relevant CPU flags and evaluates them based on clearly defined x86-64 CPU baseline definitions. These baselines are directly based on the CPU models supported by Proxmox VE and QEMU, including: <\/p>\n<ul>\n<li>x86-64-v1<\/li>\n<li>x86-64-v2-AES<\/li>\n<li>x86-64-v3<\/li>\n<li>x86-64-v4<\/li>\n<\/ul>\n<p>By mapping the CPU flags of each node to these standardized baselines, ProxCLMC can determine which CPU levels are supported per node. The tool then calculates the lowest common CPU type shared by all nodes in the cluster. This resulting baseline represents the maximum CPU compatibility level that can be safely used for virtual machines while still allowing unrestricted live migrations between all nodes. To get a general idea of the output:   <\/p>\n<p><code class=\"whitespace-pre!\"><br \/>\ntest-pmx01 | 10.10.10.21 | x86-64-v3<br \/>\ntest-pmx02 | 10.10.10.22 | x86-64-v3<br \/>\ntest-pmx03 | 10.10.10.23 | x86-64-v4<br \/>\nCluster CPU type: x86-64-v3<\/code><\/p>\n<p>With this approach, ProxCLMC brings automated CPU compatibility checking to Proxmox VE-based clusters. Comparable concepts are already known from other virtualization platforms, such as VMware EVC, where CPU compatibility is enforced cluster-wide to ensure secure migrations. ProxCLMC transfers this basic idea to Proxmox environments but implements it in a lightweight, transparent, and completely open manner, thus integrating seamlessly into existing operating procedures and workflows.  <\/p>\n<h2>Installation of ProxCLMC<\/h2>\n<p>ProxCLMC was developed with the goal of enabling easy deployment and integrating cleanly into existing Proxmox VE environments. It can be used directly from the source code or installed as a packaged Debian binary, making it suitable for both development and production environments. <\/p>\n<p>The complete source code is publicly available on GitHub and can be accessed at the following address:<br \/>\n<a class=\"decorated-link\" href=\"https:\/\/github.com\/gyptazy\/ProxCLMC\" target=\"_new\" rel=\"noopener\" data-start=\"478\" data-end=\"513\">https:\/\/github.com\/gyptazy\/ProxCLMC<\/a><\/p>\n<p>This enables complete transparency, auditability, and the ability to adapt or build the tool to individual requirements.<\/p>\n<h2>Prerequisites and Dependencies<\/h2>\n<p>Before installing ProxCLMC, the following prerequisites must be met:<\/p>\n<ul>\n<li>A Proxmox VE cluster<\/li>\n<li>SSH authentication between all Proxmox VE nodes<\/li>\n<li>Network connection between all cluster members<\/li>\n<\/ul>\n<p>ProxCLMC uses SSH to remotely examine each node and read CPU information. Passwordless SSH authentication is therefore recommended to ensure smooth and automated execution. <\/p>\n<h2>Installation via the Debian Repository<\/h2>\n<p>The recommended way to install ProxCLMC on Debian-based systems, including Proxmox VE, is via the Debian repository provided by <a href=\"https:\/\/gyptazy.com\/\">gyptazy<\/a>. This repository is also used to distribute the <a href=\"https:\/\/github.com\/gyptazy\/ProxLB\">ProxLB project<\/a> and integrates seamlessly into the usual package management workflows. <\/p>\n<p>To add the repository and install ProxCLMC, execute the following commands:<\/p>\n<div class=\"contain-inline-size rounded-2xl corner-superellipse\/1.1 relative bg-token-sidebar-surface-primary\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre!\">echo \"deb https:\/\/repo.gyptazy.com\/stable \/\" &gt; \/etc\/apt\/sources.list.d\/proxlb.list<br \/>\nwget -O \/etc\/apt\/<span class=\"hljs-keyword\">trusted<\/span>.gpg.d\/proxlb.<span class=\"hljs-keyword\">asc<\/span> https:\/\/repo.gyptazy.com\/repository.gpg<br \/>\napt-<span class=\"hljs-keyword\">get<\/span> <span class=\"hljs-keyword\">update<\/span> &amp;&amp; apt-<span class=\"hljs-keyword\">get<\/span> -y install proxclmc<br \/>\n<\/code><\/div>\n<\/div>\n<p>Using the repository ensures that ProxCLMC can be easily installed, updated, and managed together with other system packages.<\/p>\n<h2>Installation via a Debian Package<\/h2>\n<p>Alternatively, ProxCLMC can also be installed manually via a pre-built Debian package. This is particularly useful for environments without direct repository access or for offline installations. <\/p>\n<p>The package can be downloaded directly from the gyptazy CDN and installed with <code>dpkg<\/code>:<\/p>\n<div class=\"contain-inline-size rounded-2xl corner-superellipse\/1.1 relative bg-token-sidebar-surface-primary\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre!\">wget <span class=\"hljs-symbol\">https:<\/span>\/<span class=\"hljs-regexp\">\/cdn.gyptazy.com\/debian<\/span><span class=\"hljs-regexp\">\/proxclmc\/proxclmc<\/span>_1.<span class=\"hljs-number\">0<\/span>.0_amd64.deb<br \/>\ndpkg -i proxclmc_1.<span class=\"hljs-number\">0<\/span>.0_amd64.deb<br \/>\n<\/code><\/div>\n<\/div>\n<p>This method offers the same functionality as installation via the repository, but without automatic updates.<\/p>\n<h2>Conclusion<\/h2>\n<p>ProxCLMC exemplifies how quickly gaps in the open-source virtualization ecosystem can be closed when real operational requirements are directly addressed. Similar to the <a href=\"https:\/\/proxlb.de\/\" target=\"_blank\" rel=\"noopener\">ProxLB project<\/a> (<a href=\"https:\/\/github.com\/gyptazy\/ProxLB\" target=\"_blank\" rel=\"noopener\">GitHub<\/a>), which provides advanced scheduling and balancing functions for Proxmox VE-based clusters, ProxCLMC focuses on a very specific but critical area that was previously largely left to manual processes and experience. <\/p>\n<p>By introducing automated CPU compatibility detection, ProxCLMC brings a functionality to Proxmox VE clusters that is commonly expected in enterprise virtualization platforms but has not yet been available in automated form. It shows that open-source solutions are not limited by missing functions but rather offer the freedom to extend and adapt platforms exactly where it is most important. <\/p>\n<p>With ProxCLMC, operators can now automatically determine the most suitable CPU type for virtual machines in a Proxmox VE cluster, ensuring secure live migrations and consistent behavior across all nodes. Together with projects like ProxLB, this underscores the strength of the open-source model: missing enterprise functions can be transparently added, adapted to real requirements, and shared with the community to continuously improve the <a href=\"https:\/\/www.credativ.de\/en\/portfolio\/proxmox-solutions\/\">Proxmox ecosystem<\/a>. Should you also require further adjustments or developments around or for Proxmox VE, we would be happy to support you in the realization! Do not hesitate to contact us &#8211; we would be happy to advise you on your project!   <\/p>\n","protected":false},"excerpt":{"rendered":"<p>ProxCLMC \u2013 What is it? Live migration is one of the most powerful and frequently used functions in a Proxmox VE Cluster. However, it presupposes a requirement that is often underestimated: consistent CPU compatibility across all nodes. In real-world environments, clusters rarely consist of identical hardware where you could simply use the CPU type host. [&hellip;]<\/p>\n","protected":false},"author":27,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_improvement_type_select":"improve_an_existing","_thumb_yes_seoaic":false,"_frame_yes_seoaic":false,"seoaic_generate_description":"","seoaic_improve_instructions_prompt":"","seoaic_rollback_content_improvement":"","seoaic_idea_thumbnail_generator":"","thumbnail_generated":false,"thumbnail_generate_prompt":"","seoaic_article_description":"","seoaic_article_subtitles":[],"footnotes":""},"categories":[1885,2052,2042],"tags":[1923,2174,1920,1994],"class_list":["post-10622","post","type-post","status-publish","format-standard","hentry","category-howtos-en","category-proxmox-en","category-virtualisation","tag-howto","tag-proxclmc","tag-proxmox","tag-proxmox-ve"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Determining the Maximum CPU Model for Live Migrations in Proxmox Clusters with ProxCLMC - credativ\u00ae<\/title>\n<meta name=\"description\" content=\"Optimal CPU compatibility is crucial for Proxmox. Learn how the Proxmox CPU type can improve your migration.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Determining the Maximum CPU Model for Live Migrations in Proxmox Clusters with ProxCLMC\" \/>\n<meta property=\"og:description\" content=\"Optimal CPU compatibility is crucial for Proxmox. Learn how the Proxmox CPU type can improve your migration.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/\" \/>\n<meta property=\"og:site_name\" content=\"credativ\u00ae\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/credativDE\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-08T09:00:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/12\/proxclmc.png\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"375\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"gyptazy\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@gyptazy\" \/>\n<meta name=\"twitter:site\" content=\"@credativde\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"gyptazy\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos-en\\\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos-en\\\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\\\/\"},\"author\":{\"name\":\"gyptazy\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#\\\/schema\\\/person\\\/f5b181b4f6821e3cdea2f36d92df1944\"},\"headline\":\"Determining the Maximum CPU Model for Live Migrations in Proxmox Clusters with ProxCLMC\",\"datePublished\":\"2026-01-08T09:00:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos-en\\\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\\\/\"},\"wordCount\":1119,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos-en\\\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.credativ.de\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/proxclmc-300x141.png\",\"keywords\":[\"howto\",\"ProxCLMC\",\"proxmox\",\"Proxmox VE\"],\"articleSection\":[\"HowTos\",\"Proxmox\",\"Virtualization\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos-en\\\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\\\/#respond\"]}],\"copyrightYear\":\"2026\",\"copyrightHolder\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos-en\\\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\\\/\",\"url\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos-en\\\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\\\/\",\"name\":\"Determining the Maximum CPU Model for Live Migrations in Proxmox Clusters with ProxCLMC - credativ\u00ae\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos-en\\\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos-en\\\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.credativ.de\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/proxclmc-300x141.png\",\"datePublished\":\"2026-01-08T09:00:23+00:00\",\"description\":\"Optimal CPU compatibility is crucial for Proxmox. Learn how the Proxmox CPU type can improve your migration.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos-en\\\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos-en\\\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos-en\\\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.credativ.de\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/proxclmc-300x141.png\",\"contentUrl\":\"https:\\\/\\\/www.credativ.de\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/proxclmc-300x141.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos-en\\\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Determining the Maximum CPU Model for Live Migrations in Proxmox Clusters with ProxCLMC\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/\",\"name\":\"credativ GmbH\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Organization\",\"Place\"],\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#organization\",\"name\":\"credativ\u00ae\",\"url\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/\",\"logo\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos-en\\\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\\\/#local-main-organization-logo\"},\"image\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos-en\\\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\\\/#local-main-organization-logo\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/credativDE\\\/\",\"https:\\\/\\\/x.com\\\/credativde\",\"https:\\\/\\\/mastodon.social\\\/@credativde\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/credativ-gmbh\",\"https:\\\/\\\/www.instagram.com\\\/credativ\\\/\"],\"description\":\"Die credativ GmbH ist ein f\u00fchrendes, auf Open Source Software spezialisiertes IT-Dienstleistungs- und Beratungsunternehmen. Wir bieten umfassende und professionelle Services, von Beratung und Infrastruktur-Betrieb \u00fcber 24\\\/7 Support bis hin zu individuellen L\u00f6sungen und Schulungen. Unser Fokus liegt auf dem ganzheitlichen Management von gesch\u00e4ftskritischen Open-Source-Systemen, darunter Betriebssysteme (z.B. Linux), Datenbanken (z.B. PostgreSQL), Konfigurationsmanagement (z.B. Ansible, Puppet) und Virtualisierung. Als engagierter Teil der Open-Source-Community unterst\u00fctzen wir unsere Kunden dabei, die Vorteile freier Software sicher, stabil und effizient in ihrer IT-Umgebung zu nutzen.\",\"legalName\":\"credativ GmbH\",\"foundingDate\":\"2025-03-01\",\"duns\":\"316387060\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"},\"address\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos-en\\\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\\\/#local-main-place-address\"},\"geo\":{\"@type\":\"GeoCoordinates\",\"latitude\":\"51.1732374\",\"longitude\":\"6.392010099999999\"},\"telephone\":[\"+4921619174200\",\"08002733284\"],\"contactPoint\":{\"@type\":\"ContactPoint\",\"telephone\":\"08002733284\",\"email\":\"vertrieb@credativ.de\"},\"openingHoursSpecification\":[{\"@type\":\"OpeningHoursSpecification\",\"dayOfWeek\":[\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\"],\"opens\":\"09:00\",\"closes\":\"17:00\"},{\"@type\":\"OpeningHoursSpecification\",\"dayOfWeek\":[\"Saturday\",\"Sunday\"],\"opens\":\"00:00\",\"closes\":\"00:00\"}],\"email\":\"info@credativ.de\",\"areaServed\":\"D-A-CH\",\"vatID\":\"DE452151696\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#\\\/schema\\\/person\\\/f5b181b4f6821e3cdea2f36d92df1944\",\"name\":\"gyptazy\",\"description\":\"In my tech repertoire, FreeBSD and federated services stand not just as a personal preference but as a symbol of a commitment to the ethos of open-source. I am a fervent believer in the symbiotic relationship between developers including DevOps, SysOps and the open source community. As I continue to lead teams in the ever-evolving landscape of technology, their dedication to open-source contributions and advocacy for decentralized and federated services echoes not only in the code they write but in the ethos they instill within the teams.\",\"sameAs\":[\"https:\\\/\\\/gyptazy.ch\",\"https:\\\/\\\/x.com\\\/gyptazy\"],\"jobTitle\":\"Senior DevOps Consultant\",\"worksFor\":\"credativ GmbH\"},{\"@type\":\"PostalAddress\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos-en\\\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\\\/#local-main-place-address\",\"streetAddress\":\"Hennes-Weisweiler-Allee 23\",\"addressLocality\":\"M\u00f6nchengladbach\",\"postalCode\":\"41179\",\"addressRegion\":\"Deutschland\",\"addressCountry\":\"DE\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos-en\\\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\\\/#local-main-organization-logo\",\"url\":\"https:\\\/\\\/www.credativ.de\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/credativ-logo-right.svg\",\"contentUrl\":\"https:\\\/\\\/www.credativ.de\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/credativ-logo-right.svg\",\"caption\":\"credativ\u00ae\"}]}<\/script>\n<meta name=\"geo.placename\" content=\"M\u00f6nchengladbach\" \/>\n<meta name=\"geo.position\" content=\"51.1732374;6.392010099999999\" \/>\n<meta name=\"geo.region\" content=\"Germany\" \/>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Determining the Maximum CPU Model for Live Migrations in Proxmox Clusters with ProxCLMC - credativ\u00ae","description":"Optimal CPU compatibility is crucial for Proxmox. Learn how the Proxmox CPU type can improve your migration.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/","og_locale":"en_US","og_type":"article","og_title":"Determining the Maximum CPU Model for Live Migrations in Proxmox Clusters with ProxCLMC","og_description":"Optimal CPU compatibility is crucial for Proxmox. Learn how the Proxmox CPU type can improve your migration.","og_url":"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/","og_site_name":"credativ\u00ae","article_publisher":"https:\/\/www.facebook.com\/credativDE\/","article_published_time":"2026-01-08T09:00:23+00:00","og_image":[{"width":800,"height":375,"url":"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/12\/proxclmc.png","type":"image\/png"}],"author":"gyptazy","twitter_card":"summary_large_image","twitter_creator":"@gyptazy","twitter_site":"@credativde","twitter_misc":{"Written by":"gyptazy","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/#article","isPartOf":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/"},"author":{"name":"gyptazy","@id":"https:\/\/www.credativ.de\/en\/#\/schema\/person\/f5b181b4f6821e3cdea2f36d92df1944"},"headline":"Determining the Maximum CPU Model for Live Migrations in Proxmox Clusters with ProxCLMC","datePublished":"2026-01-08T09:00:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/"},"wordCount":1119,"commentCount":0,"publisher":{"@id":"https:\/\/www.credativ.de\/en\/#organization"},"image":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/#primaryimage"},"thumbnailUrl":"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/12\/proxclmc-300x141.png","keywords":["howto","ProxCLMC","proxmox","Proxmox VE"],"articleSection":["HowTos","Proxmox","Virtualization"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/#respond"]}],"copyrightYear":"2026","copyrightHolder":{"@id":"https:\/\/www.credativ.de\/#organization"}},{"@type":"WebPage","@id":"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/","url":"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/","name":"Determining the Maximum CPU Model for Live Migrations in Proxmox Clusters with ProxCLMC - credativ\u00ae","isPartOf":{"@id":"https:\/\/www.credativ.de\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/#primaryimage"},"image":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/#primaryimage"},"thumbnailUrl":"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/12\/proxclmc-300x141.png","datePublished":"2026-01-08T09:00:23+00:00","description":"Optimal CPU compatibility is crucial for Proxmox. Learn how the Proxmox CPU type can improve your migration.","breadcrumb":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/#primaryimage","url":"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/12\/proxclmc-300x141.png","contentUrl":"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/12\/proxclmc-300x141.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.credativ.de\/en\/"},{"@type":"ListItem","position":2,"name":"Determining the Maximum CPU Model for Live Migrations in Proxmox Clusters with ProxCLMC"}]},{"@type":"WebSite","@id":"https:\/\/www.credativ.de\/en\/#website","url":"https:\/\/www.credativ.de\/en\/","name":"credativ GmbH","description":"","publisher":{"@id":"https:\/\/www.credativ.de\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.credativ.de\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Organization","Place"],"@id":"https:\/\/www.credativ.de\/en\/#organization","name":"credativ\u00ae","url":"https:\/\/www.credativ.de\/en\/","logo":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/#local-main-organization-logo"},"image":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/#local-main-organization-logo"},"sameAs":["https:\/\/www.facebook.com\/credativDE\/","https:\/\/x.com\/credativde","https:\/\/mastodon.social\/@credativde","https:\/\/www.linkedin.com\/company\/credativ-gmbh","https:\/\/www.instagram.com\/credativ\/"],"description":"Die credativ GmbH ist ein f\u00fchrendes, auf Open Source Software spezialisiertes IT-Dienstleistungs- und Beratungsunternehmen. Wir bieten umfassende und professionelle Services, von Beratung und Infrastruktur-Betrieb \u00fcber 24\/7 Support bis hin zu individuellen L\u00f6sungen und Schulungen. Unser Fokus liegt auf dem ganzheitlichen Management von gesch\u00e4ftskritischen Open-Source-Systemen, darunter Betriebssysteme (z.B. Linux), Datenbanken (z.B. PostgreSQL), Konfigurationsmanagement (z.B. Ansible, Puppet) und Virtualisierung. Als engagierter Teil der Open-Source-Community unterst\u00fctzen wir unsere Kunden dabei, die Vorteile freier Software sicher, stabil und effizient in ihrer IT-Umgebung zu nutzen.","legalName":"credativ GmbH","foundingDate":"2025-03-01","duns":"316387060","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"},"address":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/#local-main-place-address"},"geo":{"@type":"GeoCoordinates","latitude":"51.1732374","longitude":"6.392010099999999"},"telephone":["+4921619174200","08002733284"],"contactPoint":{"@type":"ContactPoint","telephone":"08002733284","email":"vertrieb@credativ.de"},"openingHoursSpecification":[{"@type":"OpeningHoursSpecification","dayOfWeek":["Monday","Tuesday","Wednesday","Thursday","Friday"],"opens":"09:00","closes":"17:00"},{"@type":"OpeningHoursSpecification","dayOfWeek":["Saturday","Sunday"],"opens":"00:00","closes":"00:00"}],"email":"info@credativ.de","areaServed":"D-A-CH","vatID":"DE452151696"},{"@type":"Person","@id":"https:\/\/www.credativ.de\/en\/#\/schema\/person\/f5b181b4f6821e3cdea2f36d92df1944","name":"gyptazy","description":"In my tech repertoire, FreeBSD and federated services stand not just as a personal preference but as a symbol of a commitment to the ethos of open-source. I am a fervent believer in the symbiotic relationship between developers including DevOps, SysOps and the open source community. As I continue to lead teams in the ever-evolving landscape of technology, their dedication to open-source contributions and advocacy for decentralized and federated services echoes not only in the code they write but in the ethos they instill within the teams.","sameAs":["https:\/\/gyptazy.ch","https:\/\/x.com\/gyptazy"],"jobTitle":"Senior DevOps Consultant","worksFor":"credativ GmbH"},{"@type":"PostalAddress","@id":"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/#local-main-place-address","streetAddress":"Hennes-Weisweiler-Allee 23","addressLocality":"M\u00f6nchengladbach","postalCode":"41179","addressRegion":"Deutschland","addressCountry":"DE"},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.credativ.de\/en\/blog\/howtos-en\/determining-the-maximum-cpu-model-for-live-migrations-in-proxmox-clusters-with-proxclmc\/#local-main-organization-logo","url":"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/04\/credativ-logo-right.svg","contentUrl":"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/04\/credativ-logo-right.svg","caption":"credativ\u00ae"}]},"geo.placename":"M\u00f6nchengladbach","geo.position":{"lat":"51.1732374","long":"6.392010099999999"},"geo.region":"Germany"},"_links":{"self":[{"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/posts\/10622","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/users\/27"}],"replies":[{"embeddable":true,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/comments?post=10622"}],"version-history":[{"count":1,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/posts\/10622\/revisions"}],"predecessor-version":[{"id":10661,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/posts\/10622\/revisions\/10661"}],"wp:attachment":[{"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/media?parent=10622"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/categories?post=10622"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/tags?post=10622"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}