connect_network
Enable automated Tailscale network connections, manage subnet routes, DNS settings, and device hostnames using predefined configurations for streamlined network integration.
Instructions
Connect to the Tailscale network
Input Schema
Name | Required | Description | Default |
---|---|---|---|
acceptDNS | Yes | Accept DNS configuration from the network | |
acceptRoutes | Yes | Accept subnet routes from other devices | |
advertiseRoutes | No | CIDR routes to advertise to other devices | |
authKey | No | Authentication key for unattended setup | |
hostname | No | Set a custom hostname for this device | |
loginServer | No | Custom coordination server URL |
Input Schema (JSON Schema)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"acceptDNS": {
"default": false,
"description": "Accept DNS configuration from the network",
"type": "boolean"
},
"acceptRoutes": {
"default": false,
"description": "Accept subnet routes from other devices",
"type": "boolean"
},
"advertiseRoutes": {
"description": "CIDR routes to advertise to other devices",
"items": {
"type": "string"
},
"type": "array"
},
"authKey": {
"description": "Authentication key for unattended setup",
"type": "string"
},
"hostname": {
"description": "Set a custom hostname for this device",
"type": "string"
},
"loginServer": {
"description": "Custom coordination server URL",
"type": "string"
}
},
"required": [
"acceptRoutes",
"acceptDNS"
],
"type": "object"
}