openwrt-passwall-build
Binary distribution of xiaorouji/openwrt-passwall built with official OpenWRT SDK.
Install via OPKG
- Add new opkg key:
wget https://free.nchc.org.tw/osdn/storage/g/o/op/openwrt-passwall-build/passwall.pub
opkg-key add passwall.pub
- Add opkg repository:
read release arch << EOF
$(. /etc/openwrt_release ; echo ${DISTRIB_RELEASE%.*} $DISTRIB_ARCH)
EOF
for feed in passwall_luci passwall_packages passwall2; do
echo "src/gz $feed https://free.nchc.org.tw/osdn/storage/g/o/op/openwrt-passwall-build/releases/packages-$release/$arch/$feed" >> /etc/opkg/customfeeds.conf
done
OR
read arch << EOF
$(. /etc/openwrt_release ; echo $DISTRIB_ARCH)
EOF
for feed in passwall_luci passwall_packages passwall2; do
echo "src/gz $feed https://free.nchc.org.tw/osdn/storage/g/o/op/openwrt-passwall-build/snapshots/packages/$arch/$feed" >> /etc/opkg/customfeeds.conf
done
in case you use a snapshot build.
NCHC's mirror might not be up-to-date, download from
https://osdn.net/projects/openwrt-passwall-build/storage/
whenever necessary.
- Install package:
opkg update
opkg install luci-app-passwall
Manual Install
-
Download prebuilt ipk file from OSDN.
-
Upload file to your router, install it with ssh command.
opkg install luci-app-passwall*.ipk
Archived Builds
Builds for the following releases are archived and no longer updated due to toolchain compatibility.
OpenWrt 21.02
- luci: https://github.com/xiaorouji/openwrt-passwall/commit/e2443e4f8adb235547193ad12f1dd22f9965e5fe
- packages: https://github.com/xiaorouji/openwrt-passwall/commit/9812ea8cde0f1a64731d306769cace2e9011b187
- passwall2: https://github.com/xiaorouji/openwrt-passwall2/commit/6969493ec406f2332466f8905ba8903c3178e131
Acknowledgement
This project is heavily inspired by kuoruan/openwrt-v2ray.