connect_node_to_network
Establish communication by linking a node interface to a network in an EVE-NG lab using the Connect Node to Network tool. Input lab path, node ID, interface, and network ID to activate the connection.
Instructions
Connect a node to a network.
This tool creates a connection between a node interface and a network in the lab, enabling communication through that network.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arguments | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"ConnectNodeToNetworkArgs": {
"description": "Arguments for connect_node_to_network tool.",
"properties": {
"lab_path": {
"description": "Full path to the lab (e.g., /lab_name.unl)",
"title": "Lab Path",
"type": "string"
},
"network_id": {
"description": "Target network ID",
"title": "Network Id",
"type": "string"
},
"node_id": {
"description": "Source node ID",
"title": "Node Id",
"type": "string"
},
"node_interface": {
"description": "Node interface name (e.g., 'Gi0/0', 'eth0')",
"title": "Node Interface",
"type": "string"
}
},
"required": [
"lab_path",
"node_id",
"node_interface",
"network_id"
],
"title": "ConnectNodeToNetworkArgs",
"type": "object"
}
},
"properties": {
"arguments": {
"$ref": "#/$defs/ConnectNodeToNetworkArgs"
}
},
"required": [
"arguments"
],
"title": "connect_node_to_networkArguments",
"type": "object"
}