start_all_nodes
Start all nodes in a specified EVE-NG lab using the configured delay settings to manage network emulation effectively.
Instructions
Start all nodes in a lab.
This tool starts all nodes in the specified lab. Nodes will be started according to their configured delay settings.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arguments | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"BulkNodeControlArgs": {
"description": "Arguments for bulk node operations.",
"properties": {
"lab_path": {
"description": "Full path to the lab (e.g., /lab_name.unl)",
"title": "Lab Path",
"type": "string"
}
},
"required": [
"lab_path"
],
"title": "BulkNodeControlArgs",
"type": "object"
}
},
"properties": {
"arguments": {
"$ref": "#/$defs/BulkNodeControlArgs"
}
},
"required": [
"arguments"
],
"title": "start_all_nodesArguments",
"type": "object"
}