From 9285ef31ab5fe58383c90a716f2330cb08e2eaa1 Mon Sep 17 00:00:00 2001 From: "Community Hass.io Add-ons Bot" Date: Wed, 11 Sep 2024 14:40:13 +0000 Subject: [PATCH] :arrow_up: Updating add-on Tailscale to 343419d --- README.md | 6 +++--- tailscale/CHANGELOG.md | 1 + tailscale/DOCS.md | 13 +++++++++++++ tailscale/README.md | 4 ++-- tailscale/config.yaml | 4 +++- tailscale/translations/en.yaml | 4 ++++ 6 files changed, 26 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 337f906b2..d6dd9c1f8 100644 --- a/README.md +++ b/README.md @@ -1068,10 +1068,10 @@ SOFTWARE. [vscode-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg [vscode-armv7-shield]: https://img.shields.io/badge/armv7-no-red.svg [vscode-i386-shield]: https://img.shields.io/badge/i386-no-red.svg -[addon-tailscale]: https://github.com/hassio-addons/addon-tailscale/tree/28fea60 -[addon-doc-tailscale]: https://github.com/hassio-addons/addon-tailscale/blob/28fea60/README.md +[addon-tailscale]: https://github.com/hassio-addons/addon-tailscale/tree/343419d +[addon-doc-tailscale]: https://github.com/hassio-addons/addon-tailscale/blob/343419d/README.md [tailscale-issue]: https://github.com/hassio-addons/addon-tailscale/issues -[tailscale-version-shield]: https://img.shields.io/badge/version-28fea60-blue.svg +[tailscale-version-shield]: https://img.shields.io/badge/version-343419d-blue.svg [tailscale-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg [tailscale-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [tailscale-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg diff --git a/tailscale/CHANGELOG.md b/tailscale/CHANGELOG.md index b916f869f..630254adf 100644 --- a/tailscale/CHANGELOG.md +++ b/tailscale/CHANGELOG.md @@ -1,4 +1,5 @@ # Changelog since v0.21.0 +- Make UDP port configurable (#390) - ⬆️ Update Add-on base image to v16.3.0 (#401) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> diff --git a/tailscale/DOCS.md b/tailscale/DOCS.md index 7a4b8273c..872782e0f 100644 --- a/tailscale/DOCS.md +++ b/tailscale/DOCS.md @@ -333,6 +333,19 @@ your tailnet. This will prevent your Home Assistant instance from losing network connection. This also means that using the same subnet on multiple nodes for load balancing and failover is impossible with the current add-on behavior. +## Network + +### Port: `41641/udp` + +UDP port to listen on for WireGuard and peer-to-peer traffic. + +Use this option (and router port forwarding) if you experience that Tailscale +can't establish peer-to-peer connections to some of your devices (usually behind +CGNAT networks). You can test connections with `tailscale ping +`. + +When not set, an automatically selected port is used by default. + ## Changelog & Releases This repository keeps a change log using [GitHub's releases][releases] diff --git a/tailscale/README.md b/tailscale/README.md index dcf6e313c..d86a07819 100644 --- a/tailscale/README.md +++ b/tailscale/README.md @@ -48,5 +48,5 @@ If you are more interested in stable releases of our add-ons: [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png [patreon]: https://www.patreon.com/frenck [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg -[release-shield]: https://img.shields.io/badge/version-28fea60-blue.svg -[release]: https://github.com/hassio-addons/addon-tailscale/tree/28fea60 \ No newline at end of file +[release-shield]: https://img.shields.io/badge/version-343419d-blue.svg +[release]: https://github.com/hassio-addons/addon-tailscale/tree/343419d \ No newline at end of file diff --git a/tailscale/config.yaml b/tailscale/config.yaml index dc84e7aab..f8bcca0a9 100644 --- a/tailscale/config.yaml +++ b/tailscale/config.yaml @@ -1,5 +1,5 @@ name: Tailscale -version: 28fea60 +version: 343419d slug: tailscale description: Zero config VPN for building secure networks url: https://github.com/hassio-addons/addon-tailscale @@ -24,6 +24,8 @@ devices: - /dev/net/tun map: - share:rw +ports: + 41641/udp: null schema: accept_dns: bool? accept_routes: bool? diff --git a/tailscale/translations/en.yaml b/tailscale/translations/en.yaml index 7ab78bd49..252ca2191 100644 --- a/tailscale/translations/en.yaml +++ b/tailscale/translations/en.yaml @@ -98,3 +98,7 @@ configuration: Assistant instance, disable userspace networking mode, which will create a `tailscale0` network interface on your host. When not set, this option is enabled by default. +network: + 41641/udp: >- + UDP port to listen on for WireGuard and peer-to-peer traffic. + When not set, an automatically selected port is used by default.