create_lab
Generate and configure new labs in EVE-NG by specifying name, path, description, author, and version. Streamlines network topology setup for testing and emulation.
Instructions
Create a new lab in EVE-NG.
This tool creates a new lab with the specified name and metadata in the given path on the EVE-NG server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
author | No | ||
description | No | ||
name | Yes | ||
path | No | / | |
version | No | 1 |
Input Schema (JSON Schema)
{
"properties": {
"author": {
"default": "",
"title": "Author",
"type": "string"
},
"description": {
"default": "",
"title": "Description",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"path": {
"default": "/",
"title": "Path",
"type": "string"
},
"version": {
"default": "1",
"title": "Version",
"type": "string"
}
},
"required": [
"name"
],
"title": "create_labArguments",
"type": "object"
}