Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kuoruan/openwrt-frp
Frpc & Frps for OpenWrt
https://github.com/kuoruan/openwrt-frp
frp openwrt
Last synced: 6 days ago
JSON representation
Frpc & Frps for OpenWrt
- Host: GitHub
- URL: https://github.com/kuoruan/openwrt-frp
- Owner: kuoruan
- License: mit
- Created: 2019-02-02T05:18:52.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-11-04T02:17:05.000Z (10 days ago)
- Last Synced: 2024-11-04T22:37:29.871Z (9 days ago)
- Topics: frp, openwrt
- Language: Shell
- Homepage:
- Size: 90.8 KB
- Stars: 635
- Watchers: 16
- Forks: 147
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# openwrt-frp
Frpc/Frps for OpenWrt
OpenWrt/LEDE 上可用的 Frp 客户端/服务端
[![Release Version](https://img.shields.io/github/release/kuoruan/openwrt-frp.svg)](https://github.com/kuoruan/openwrt-frp/releases/latest) [![Latest Release Download](https://img.shields.io/github/downloads/kuoruan/openwrt-frp/latest/total.svg)](https://github.com/kuoruan/openwrt-frp/releases/latest) [![Total Download](https://img.shields.io/github/downloads/kuoruan/openwrt-frp/total.svg)](https://github.com/kuoruan/openwrt-frp/releases)
## 安装说明
1. 到 [release](https://github.com/kuoruan/openwrt-frp/releases) 页面下载最新版的`frpc` 或 `frps`(注:请根据你的路由器架构下载对应版本)
2. 将文件上传到你的路由器上,进行安装
```sh
opkg install frpc_*.ipk
opkg install frps_*.ipk
```安装完毕,你可以在 `/usr/bin` 目录下找到对应的二进制文件。
获取 Luci 请访问:[kuoruan/luci-app-frpc](https://github.com/kuoruan/luci-app-frpc)
## 编译说明
请使用最新版的 OpenWrt SDK 或 master 版源代码。
进入 SDK 根目录或源码根目录,执行命令下载 Makefile:
```sh
git clone https://github.com/kuoruan/openwrt-frp.git package/frp
```编译流程:
```sh
./scripts/feeds update -a
./scripts/feeds install -amake menuconfig
Network ---> Web Servers/Proxies ---> <*> frpc
Network ---> Web Servers/Proxies ---> <*> frpsmake package/frp/{clean,compile} V=s
```## 卸载说明
```sh
opkg remove frpc
opkg remove frps
```