stop_node
Gracefully shut down and preserve the state of a specific node in an EVE-NG lab using this tool. Specify the lab path and node ID to stop the node effectively.
Instructions
Stop a specific node.
This tool stops a running node in the lab. The node will be gracefully shut down and its state will be preserved.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arguments | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"NodeControlArgs": {
"description": "Arguments for node control operations.",
"properties": {
"lab_path": {
"description": "Full path to the lab (e.g., /lab_name.unl)",
"title": "Lab Path",
"type": "string"
},
"node_id": {
"description": "Node ID to control",
"title": "Node Id",
"type": "string"
}
},
"required": [
"lab_path",
"node_id"
],
"title": "NodeControlArgs",
"type": "object"
}
},
"properties": {
"arguments": {
"$ref": "#/$defs/NodeControlArgs"
}
},
"required": [
"arguments"
],
"title": "stop_nodeArguments",
"type": "object"
}