After installing entware I can confirm tailscale works on a DNS323 with Alt-f!
The only change I did was basically force the tun module to be loaded before running tailscale:
/opt/etc/init.d/S06tailscaled:
```
#!/bin/sh
ENABLED=yes
PROCS=tailscaled
ARGS="--state=/opt/var/tailscaled.state"
PREARGS=""
DESC=$PROCS
PATH=/opt/sbin:/opt/bin:/opt/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
modprobe tun >& /dev/null
. /opt/etc/init.d/rc.func
```
```
#!/bin/sh
DESC="Entware-ng"
TYPE=sys # uncommenting this will make it appears at Services->System
. /etc/init.d/common
case "$1" in
start)
# code to start it, return 0 if OK
/opt/etc/init.d/rc.unslung start ;;
stop)
# code to stop it, return 0 if OK
/opt/etc/init.d/rc.unslung stop ;;
status)
# code to give its status, return 0 if running
/opt/etc/init.d/rc.unslung check ;;
restart)
# code to restart it, return 0 if OK
/opt/etc/init.d/rc.unslung restart ;;
*)
usage $0 "start|stop|status|restart" ;;
esac
```
To be able to access the webui using the tailscale net, I modified the /etc/httpd.conf to add the tailscale net:
```
```
HTH!