SideroLink offers a secure point-to-point management overlay network for Talos clusters using Wireguard. Each Talos machine configured with SideroLink establishes a secure Wireguard connection to the SideroLink API server. This overlay network utilizes ULA IPv6 addresses, enabling the management of Talos Linux machines even when direct access to their IP addresses is not feasible. SideroLink is a fundamental component of Sidero Omni.
To configure SideroLink, provide the SideroLink API server address either via the kernel command line argument siderolink.api
or as a config document.
The SideroLink API URL format is: https://siderolink.api/?jointoken=token&grpc_tunnel=true
.
grpc://
, the connection will be established without TLS; otherwise, it will use TLS.token
, if specified, will be sent to the SideroLink server.grpc_tunnel
to true
sends a hint to tunnel Wireguard traffic over the same SideroLink API gRPC connection instead of using plain UDP.
This is useful in environments where UDP traffic is restricted but adds significant overhead to SideroLink communication, enable this only if necessary.
Note that the SideroLink API server might ignore this hint, and the connection might use gRPC tunneling regardless of the setting.When SideroLink is configured, the Talos maintenance mode API listens exclusively on the SideroLink network. This allows operations not generally available over the public network, such as retrieving the Talos version and accessing sensitive resources.
Talos Linux always provides the Talos API over SideroLink and automatically permits access over SideroLink even if the Ingress Firewall is enabled. However, Wireguard connections must still be allowed by the Ingress Firewall.
SideroLink only supports point-to-point connections between Talos machines and the SideroLink management server; direct communication between two Talos machines over SideroLink is not possible.