create_lab_network
Add a new network (bridge, cloud, NAT, etc.) to a lab in EVE-NG, specifying type, position, and optional name for precise topology setup.
Instructions
Create a network in a lab.
This tool creates a new network (cloud, bridge, NAT, etc.) in the lab with the specified type and positioning.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arguments | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"CreateNetworkArgs": {
"description": "Arguments for create_network tool.",
"properties": {
"lab_path": {
"description": "Full path to the lab (e.g., /lab_name.unl)",
"title": "Lab Path",
"type": "string"
},
"left": {
"default": 50,
"description": "Position from left (percentage, 0-100)",
"title": "Left",
"type": "integer"
},
"name": {
"default": "",
"description": "Network name (optional)",
"title": "Name",
"type": "string"
},
"network_type": {
"description": "Network type (bridge, cloud, nat, etc.)",
"title": "Network Type",
"type": "string"
},
"top": {
"default": 50,
"description": "Position from top (percentage, 0-100)",
"title": "Top",
"type": "integer"
}
},
"required": [
"lab_path",
"network_type"
],
"title": "CreateNetworkArgs",
"type": "object"
}
},
"properties": {
"arguments": {
"$ref": "#/$defs/CreateNetworkArgs"
}
},
"required": [
"arguments"
],
"title": "create_lab_networkArguments",
"type": "object"
}