wipe_node
Reset a specific node to its factory state by deleting all user configurations, including startup-config and VLANs. The node rebuilds from the selected image upon next start.
Instructions
Wipe a specific node (reset to factory state).
This tool wipes a node, deleting all user configuration including startup-config, VLANs, and other settings. The next start will rebuild the node from the selected image.
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": "wipe_nodeArguments",
"type": "object"
}