connect_node_to_node
Create a direct point-to-point connection between two nodes in an EVE-NG lab network. Specify lab path, source, and destination node IDs with interfaces to enable direct communication.
Instructions
Connect two nodes together directly.
This tool creates a direct point-to-point connection between two nodes in the lab, enabling direct communication between them.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arguments | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"ConnectNodeToNodeArgs": {
"description": "Arguments for connect_node_to_node tool.",
"properties": {
"dst_interface": {
"description": "Destination node interface name",
"title": "Dst Interface",
"type": "string"
},
"dst_node_id": {
"description": "Destination node ID",
"title": "Dst Node Id",
"type": "string"
},
"lab_path": {
"description": "Full path to the lab (e.g., /lab_name.unl)",
"title": "Lab Path",
"type": "string"
},
"src_interface": {
"description": "Source node interface name",
"title": "Src Interface",
"type": "string"
},
"src_node_id": {
"description": "Source node ID",
"title": "Src Node Id",
"type": "string"
}
},
"required": [
"lab_path",
"src_node_id",
"src_interface",
"dst_node_id",
"dst_interface"
],
"title": "ConnectNodeToNodeArgs",
"type": "object"
}
},
"properties": {
"arguments": {
"$ref": "#/$defs/ConnectNodeToNodeArgs"
}
},
"required": [
"arguments"
],
"title": "connect_node_to_nodeArguments",
"type": "object"
}