manage_exit_nodes
Control and configure Tailscale exit nodes for routing operations. List, set, clear, advertise, or stop advertising routes like 0.0.0.0/0 or ::/0 using device IDs for precise network management.
Instructions
Manage Tailscale exit nodes and routing
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deviceId | No | Device ID for exit node operations | |
operation | Yes | Exit node operation to perform | |
routes | Yes | Routes to advertise (e.g., ["0.0.0.0/0", "::/0"] for full exit node) |
Input Schema (JSON Schema)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"deviceId": {
"description": "Device ID for exit node operations",
"type": "string"
},
"operation": {
"description": "Exit node operation to perform",
"enum": [
"list",
"set",
"clear",
"advertise",
"stop_advertising"
],
"type": "string"
},
"routes": {
"description": "Routes to advertise (e.g., [\"0.0.0.0/0\", \"::/0\"] for full exit node)",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"operation",
"routes"
],
"type": "object"
}