Files
netbox/docs/features/virtualization.md
Martin Hauser a9ff808d04 feat(virtualization): Add Virtual Machine Type model
Introduce `VirtualMachineType` to classify virtual machines and apply
default platform, vCPU, and memory values when creating a VM.

This adds the new model and its relationship to `VirtualMachine`, and
wires it through forms, filtersets, tables, views, the REST API,
GraphQL, navigation, search, documentation, and tests.

Explicit values set on a virtual machine continue to take precedence,
and changes to a type do not retroactively update existing VMs.
2026-03-26 19:16:44 +01:00

2.5 KiB

Virtualization

Virtual machines, clusters, and standalone hypervisors can be modeled in NetBox alongside physical infrastructure. IP addresses and other resources are assigned to these objects just like physical objects, providing a seamless integration between physical and virtual networks.

flowchart TD
    ClusterGroup & ClusterType --> Cluster
    VirtualMachineType --> VirtualMachine
    Device --> VirtualMachine
    Cluster --> VirtualMachine
    Platform --> VirtualMachine
    VirtualMachine --> VMInterface

    click Cluster "../../models/virtualization/cluster/"
    click ClusterGroup "../../models/virtualization/clustergroup/"
    click ClusterType "../../models/virtualization/clustertype/"
    click VirtualMachineType "../../models/virtualization/virtualmachinetype/"
    click Device "../../models/dcim/device/"
    click Platform "../../models/dcim/platform/"
    click VirtualMachine "../../models/virtualization/virtualmachine/"
    click VMInterface "../../models/virtualization/vminterface/"

Clusters

A cluster is one or more physical host devices on which virtual machines can run.

Each cluster must have a type and operational status, and may be assigned to a group. (Both types and groups are user-defined.) Each cluster may designate one or more devices as hosts, however this is optional.

Virtual Machine Types

A virtual machine type provides reusable classification for virtual machines and can define create-time defaults for platform, vCPUs, and memory. This is useful when multiple virtual machines share a common sizing or profile while still allowing per-instance overrides after creation.

Virtual Machines

A virtual machine is a virtualized compute instance. These behave in NetBox very similarly to device objects, but without any physical attributes.

For example, a VM may have interfaces assigned to it with IP addresses and VLANs, however its interfaces cannot be connected via cables (because they are virtual). Each VM may define its compute, memory, and storage resources as well. A VM can optionally be assigned a virtual machine type to classify it and provide default values for selected attributes at creation time.

A VM can be placed in one of three ways:

  • Assigned to a site alone for logical grouping.
  • Assigned to a cluster and optionally pinned to a specific host device within that cluster.
  • Assigned directly to a standalone device that does not belong to any cluster.