ndvinh98 / openwrt-passwall-build

Binary distribution of https://github.com/xiaorouji/openwrt-passwall built with official OpenWRT SDK.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

openwrt-passwall-build

Binary distribution of xiaorouji/openwrt-passwall built with official OpenWRT SDK.

Build and Release Scan openwrt-passwall Version

Install via OPKG

  1. Add new opkg key:
wget -O passwall.pub https://master.dl.sourceforge.net/project/openwrt-passwall-build/passwall.pub
opkg-key add passwall.pub
  1. 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://master.dl.sourceforge.net/project/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://master.dl.sourceforge.net/project/openwrt-passwall-build/snapshots/packages/$arch/$feed" >> /etc/opkg/customfeeds.conf
done

in case you use a snapshot build.

  1. Install package:
opkg update
opkg install luci-app-passwall

Manual Install

  • Download prebuilt ipk file from SourceForge.

  • 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

Acknowledgement

This project is heavily inspired by kuoruan/openwrt-v2ray.

About

Binary distribution of https://github.com/xiaorouji/openwrt-passwall built with official OpenWRT SDK.

License:MIT License