VMmanager Knowledge Base

How to create a VM without IP addresses?

The platform automatically allocates an IP address to all new virtual machines (VMs). You can get VMs without IP addresses in the following ways:

  • create a VM and delete the IP addresses in its card: Virtual machines → select the VM → IP addresses Delete.
  • create the VM through the platform API. For example, in the Swagger interactive shell. To do this, execute the /host POST request without configuring the network interfaces in the body of the request:

    Example request parameters
    {
      "name": "my_vm",
      "cluster": 1,
      "account": 3,
      "domain": "my_vm.example.com",
      "preset": 7,
      "os": 22,
      "password": "secret"
    }