1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-19 14:29:22 +00:00
gns3-server/docs/api/examples/controller_get_gns3vmengines.txt

41 lines
1.4 KiB
Plaintext
Raw Normal View History

2018-01-08 08:26:44 +00:00
curl -i -X GET 'http://localhost:3080/v2/gns3vm/engines'
GET /v2/gns3vm/engines HTTP/1.1
HTTP/1.1 200
Connection: close
2019-03-30 08:56:26 +00:00
Content-Length: 1134
2018-01-08 08:26:44 +00:00
Content-Type: application/json
2020-01-08 02:52:15 +00:00
Date: Wed, 08 Jan 2020 02:27:57 GMT
Server: Python/3.6 GNS3/2.2.4dev1
2018-01-08 08:26:44 +00:00
X-Route: /v2/gns3vm/engines
[
{
2020-01-08 02:52:15 +00:00
"description": "VMware is the recommended choice for best performances.<br>The GNS3 VM can be <a href=\"https://github.com/GNS3/gns3-gui/releases/download/v2.2.4dev1/GNS3.VM.VMware.Workstation.2.2.4dev1.zip\">downloaded here</a>.",
2018-01-08 08:26:44 +00:00
"engine_id": "vmware",
"name": "VMware Workstation / Player (recommended)",
2018-01-08 08:26:44 +00:00
"support_headless": true,
"support_ram": true,
"support_when_exit": true
},
{
2020-01-08 02:52:15 +00:00
"description": "VirtualBox doesn't support nested virtualization, this means Qemu based VMs will run extremely slowly.<br>The GNS3 VM can be <a href=\"https://github.com/GNS3/gns3-gui/releases/download/v2.2.4dev1/GNS3.VM.VirtualBox.2.2.4dev1.zip\">downloaded here</a>",
2018-01-08 08:26:44 +00:00
"engine_id": "virtualbox",
2019-03-30 08:56:26 +00:00
"name": "VirtualBox",
2018-01-08 08:26:44 +00:00
"support_headless": true,
"support_ram": true,
"support_when_exit": true
},
{
"description": "Use a remote GNS3 server as the GNS3 VM.",
"engine_id": "remote",
"name": "Remote",
"support_headless": false,
"support_ram": false,
"support_when_exit": false
}
]