前言
今天何先生分享一个自认为的干货,何先生主要使用它的 STUN IPv4 内网穿透功能,Lucky 无需第三方服务器,相比于 zerotier、frp 等内网穿透工具,它不受第三方服务器速度限制,你带宽原本多大下载和上传,就是多大。
它的实现原理这里简单说下,现在大部分宽带都是用运营商 nat 进行上网,我们在我们访问外网的时候运营商会自动创建一个随机端口,Lucky 就是帮你快速找到这个端口,直接使用。
Lucky 主要功能:
可前往 Lucky 官方 Github 进行查看:https://github.com/gdy666/lucky
openwrt 前端:luci-app-lucky 地址:https://github.com/sirpdboy/luci-app-lucky
一键安装
点这里可一键安装到 openwrt:一键安装详看这里
如需自行编译
这里使用 openwrt 官方源码进行演示
你需要准备一个 Ubuntu、Debian 等系统拉取 openwrt 源码(非 root)
git clone https://github.com/coolsnowwolf/lede
然后修改
src-git openwrt_packages https://github.com/759071793/openwrt_packages.git
然后保存。
使用终端
安装编译依赖(注意如果你使用 lede 等第三方分支,依赖会有所不同,请自行前往 Github 查找。)
sudo apt update -y
sudo apt full-upgrade -y
sudo apt install binutils bzip2 diff find flex gawk gcc-6+ getopt grep install libc-dev libz-dev
make4.1+ perl python3.7+ rsync subversion unzip which
openwrt 编译前配置
#cd 到 openwrt 源码根目录
cd /home/yourpcname/openwrt
./scripts/feeds update -a
./scripts/feeds install -a
make menuconfig
下载 dl 库,请准备好科学上网环境(查看教程),编译固件 (-j 后面是线程数,第一次编译推荐用单线程)
make download -j8
make V=s -j1
暂无评论内容