newifi3 官方openwrt luci-app-v2ray client TLS + WS
| 本帖最後由 yiucsw 於 2020-2-18 18:14 編輯 
 Already install openwrt 18
 openwrt v2ray client,Direct Download file, openwrt need internet access.
 
 
 複製代碼ssh root@192.168.1.1
wget -O kuoruan-public.key http://openwrt.kuoruan.net/packages/public.key
opkg-key add kuoruan-public.key
echo "src/gz kuoruan_packages http://openwrt.kuoruan.net/packages/releases/$(. /etc/openwrt_release ; echo $DISTRIB_ARCH)" \
  >> /etc/opkg/customfeeds.conf
 * install v2ray is slow, install before remove dnsmasq
 
 複製代碼opkg update
opkg install v2ray-core
opkg remove dnsmasq
opkg install dnsmasq-full
Install luci-app-v2ray
 
 複製代碼wget -O kuoruan-public.key http://openwrt.kuoruan.net/packages/public.key
opkg-key add kuoruan-public.key
echo "src/gz kuoruan_universal http://openwrt.kuoruan.net/packages/releases/all" \
  >> /etc/opkg/customfeeds.conf
opkg install luci-app-v2ray
add sftp server, syslog, curl, GFWlist update
 
 複製代碼opkg install openssh-sftp-server
opkg install rsyslog
opkg install curl
opkg libustream-openssl
 Reference:
 https://github.com/kuoruan/openwrt-v2ray
 |