Known Issues

Unable to access server via Tailscale

Add Tailscale as a listening interface to Unraid

Navigate to Settings > Network Settings, and add tailscale0 as a listening interface

Additionally, since listening interfaces are activated prior to starting the Tailscale docker container, we need to results in the inability to connect to Unraid via Tailscale on a server reboot/array restart.

Create a script that reactivates listening interfaces when the server reboots or the array is restarted

  1. cd /boot/config
  2. nano go
  3. Add the following lines of code (before starting the emhttpd daemon)
# reload services after starting docker with 20 seconds grace period to allow starting up containers
event=/usr/local/emhttp/webGui/event/docker_started
mkdir -p $event
cat <<- 'EOF' >$event/reload_services
#!/bin/bash
echo 'sleep 20;/usr/local/emhttp/webGui/scripts/reload_services' | at -M now 2>/dev/null
EOF
chmod +x $event/reload_services

Info

Titanium: Validated and implemented 2023/12/06

Source: Unraid Forums