1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-11 18:38:55 +00:00
gns3-server/docs/api/examples/controller_get_gns3vmengines.txt

40 lines
1.3 KiB
Plaintext
Raw Normal View History

2016-08-25 12:43:19 +00:00
curl -i -X GET 'http://localhost:3080/v2/gns3vm/engines'
GET /v2/gns3vm/engines HTTP/1.1
HTTP/1.1 200
2016-09-27 15:15:40 +00:00
Content-Length: 1106
Content-Type: application/json
2016-11-03 17:20:51 +00:00
Date: Thu, 03 Nov 2016 17:20:00 GMT
Server: Python/3.5 GNS3/2.0.0dev4
2016-09-27 15:15:40 +00:00
X-Route: /v2/gns3vm/engines
2016-08-25 12:43:19 +00:00
[
{
2016-11-03 17:20:51 +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.0.0dev4/GNS3.VM.VMware.Workstation.2.0.0dev4.zip\">downloaded here</a>.",
2016-08-25 12:43:19 +00:00
"engine_id": "vmware",
2016-09-14 13:24:27 +00:00
"name": "VMware Fusion",
"support_headless": true,
2016-09-27 15:15:40 +00:00
"support_ram": true,
2016-09-14 13:24:27 +00:00
"support_when_exit": true
2016-08-25 12:43:19 +00:00
},
{
2016-11-03 17:20:51 +00:00
"description": "VirtualBox doesn't support nested virtualization, this means running Qemu based VM could be very slow.<br>The GNS3 VM can be <a href=\"https://github.com/GNS3/gns3-gui/releases/download/v2.0.0dev4/GNS3.VM.VirtualBox.2.0.0dev4.zip\">downloaded here</a>",
2016-08-25 12:43:19 +00:00
"engine_id": "virtualbox",
2016-09-14 13:24:27 +00:00
"name": "VirtualBox",
"support_headless": true,
2016-09-27 15:15:40 +00:00
"support_ram": true,
2016-09-14 13:24:27 +00:00
"support_when_exit": true
},
{
"description": "Use a remote GNS3 server as the GNS3 VM.",
"engine_id": "remote",
"name": "Remote",
"support_headless": false,
2016-09-27 15:15:40 +00:00
"support_ram": false,
2016-09-14 13:24:27 +00:00
"support_when_exit": false
2016-08-25 12:43:19 +00:00
}
]