small-package/luci-app-tailscale/README.md

53 lines
2.0 KiB
Markdown
Raw Normal View History

2025-01-09 19:54:09 +08:00
# luci-app-tailscale
Tailscale is a zero config VPN for building secure networks.
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/asvow/luci-app-tailscale?style=flat-square)](https://github.com/asvow/luci-app-tailscale/releases)
[![GitHub stars](https://img.shields.io/github/stars/asvow/luci-app-tailscale?style=flat-square)](https://github.com/asvow/luci-app-tailscale/stargazers)
[![GitHub forks](https://img.shields.io/github/forks/asvow/luci-app-tailscale?style=flat-square)](https://github.com/asvow/luci-app-tailscale/network/members)
[![License](https://img.shields.io/github/license/asvow/luci-app-tailscale?style=flat-square)](LICENSE)
[![GitHub All Releases](https://img.shields.io/github/downloads/asvow/luci-app-tailscale/total?style=flat-square)](https://github.com/asvow/luci-app-tailscale/releases)
## How to build
- Only compatible with luci2 version
- Enter in your openwrt dir
*1. replace the default startup script and configuration of Tailscale.*
```shell
sed -i '/\/etc\/init\.d\/tailscale/d;/\/etc\/config\/tailscale/d;' feeds/packages/net/tailscale/Makefile
```
*2. get luci-app-tailscale source & building*
```shell
git clone https://github.com/asvow/luci-app-tailscale package/luci-app-tailscale
make menuconfig # choose LUCI -> Applications -> luci-app-tailscale
make package/luci-app-tailscale/compile V=s # luci-app-tailscale
```
--------------
## How to install prebuilt packages
2025-04-25 00:28:39 +08:00
- Upload the prebuilt ipk or apk package to the /tmp directory of OpenWrt
2025-01-09 19:54:09 +08:00
- Login OpenWrt terminal (SSH)
2025-04-25 00:28:39 +08:00
### opkg package manager
2025-01-09 19:54:09 +08:00
```shell
opkg update
opkg install --force-overwrite /tmp/luci-*-tailscale*.ipk
```
2025-04-25 00:28:39 +08:00
### apk package manager
```shell
apk update
apk add —allow-untrusted /tmp/luci-*-tailscale*.apk
```
2025-01-09 19:54:09 +08:00
--------------
## Thanks
- [Carseason/openwrt-tailscale](https://github.com/Carseason/openwrt-tailscale)
- [immortalwrt/luci-app-zerotier](https://github.com/immortalwrt/luci/blob/master/applications/luci-app-zerotier)