⬆️ Updating add-on Tailscale to 343419d

This commit is contained in:
Community Hass.io Add-ons Bot 2024-09-11 14:40:13 +00:00
parent 17672b0da3
commit 9285ef31ab
6 changed files with 26 additions and 6 deletions

View file

@ -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

View file

@ -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>

View file

@ -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
<hostname-or-ip>`.
When not set, an automatically selected port is used by default.
## Changelog & Releases
This repository keeps a change log using [GitHub's releases][releases]

View file

@ -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
[release-shield]: https://img.shields.io/badge/version-343419d-blue.svg
[release]: https://github.com/hassio-addons/addon-tailscale/tree/343419d

View file

@ -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?

View file

@ -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.