| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| luci-app-openclash-0.47.088.apk | 2026-04-10 | 6.7 MB | |
| luci-app-openclash_0.47.088_all.ipk | 2026-04-10 | 6.7 MB | |
| README.md | 2026-04-10 | 4.2 kB | |
| v0.47.088 source code.tar.gz | 2026-04-10 | 6.4 MB | |
| v0.47.088 source code.zip | 2026-04-10 | 6.5 MB | |
| Totals: 5 Items | 26.4 MB | 67 | |
发布时间
- 2026-4-10 20:30 GMT+0800
使用手册
安装命令
:::SHELL
# [iptables for ipk]
opkg update
opkg install bash iptables dnsmasq-full curl ca-bundle ipset ip-full iptables-mod-tproxy iptables-mod-extra ruby ruby-yaml kmod-tun kmod-inet-diag unzip luci-compat luci luci-base
curl -L --retry 2 https://api.github.com/repos/vernesong/OpenClash/releases/latest -o /tmp/openclash_version
[ -f "/tmp/openclash_version" ] && download_url=$(cat /tmp/openclash_version | jsonfilter -e '@.assets[*].browser_download_url' | grep '\.ipk$') && curl -L --retry 2 "$download_url" -o /tmp/openclash.ipk || echo "OpenClash last version get failed"
[ -f "/tmp/openclash.ipk" ] && opkg install /tmp/openclash.ipk || echo "OpenClash download failed"
:::SHELL
# [iptables for apk]
apk update
apk add bash iptables dnsmasq-full curl ca-bundle ipset ip-full iptables-mod-tproxy iptables-mod-extra ruby ruby-yaml kmod-tun kmod-inet-diag unzip luci-compat luci luci-base
curl -L --retry 2 https://api.github.com/repos/vernesong/OpenClash/releases/latest -o /tmp/openclash_version
[ -f "/tmp/openclash_version" ] && download_url=$(cat /tmp/openclash_version | jsonfilter -e '@.assets[*].browser_download_url' | grep '\.apk$') && curl -L --retry 2 "$download_url" -o /tmp/openclash.apk || echo "OpenClash last version get failed"
[ -f "/tmp/openclash.apk" ] && apk add -q --force-overwrite --clean-protected --allow-untrusted /tmp/openclash.apk || echo "OpenClash download failed"
:::SHELL
# [nftables for ipk]
opkg update
opkg install bash dnsmasq-full curl ca-bundle ip-full ruby ruby-yaml kmod-tun kmod-inet-diag unzip kmod-nft-tproxy luci-compat luci luci-base
curl -L --retry 2 https://api.github.com/repos/vernesong/OpenClash/releases/latest -o /tmp/openclash_version
[ -f "/tmp/openclash_version" ] && download_url=$(cat /tmp/openclash_version | jsonfilter -e '@.assets[*].browser_download_url' | grep '\.ipk$') && curl -L --retry 2 "$download_url" -o /tmp/openclash.ipk || echo "OpenClash last version get failed"
[ -f "/tmp/openclash.ipk" ] && opkg install /tmp/openclash.ipk || echo "OpenClash download failed"
:::SHELL
# [nftables for apk]
apk update
apk add bash dnsmasq-full curl ca-bundle ip-full ruby ruby-yaml kmod-tun kmod-inet-diag unzip kmod-nft-tproxy luci-compat luci luci-base
curl -L --retry 2 https://api.github.com/repos/vernesong/OpenClash/releases/latest -o /tmp/openclash_version
[ -f "/tmp/openclash_version" ] && download_url=$(cat /tmp/openclash_version | jsonfilter -e '@.assets[*].browser_download_url' | grep '\.apk$') && curl -L --retry 2 "$download_url" -o /tmp/openclash.apk || echo "OpenClash last version get failed"
[ -f "/tmp/openclash.apk" ] && apk add -q --force-overwrite --clean-protected --allow-untrusted /tmp/openclash.apk || echo "OpenClash download failed"
- 启动前请先在插件设置页面的版本更新标签下确认
内核编译版本,您也可以手动下载 Clash内核 后解压到/etc/openclash/core/文件夹,并将二进制文件命名为clash_meta
常见问题
- 路由不建议开启IPV6和相关服务,目前反馈的网络连接问题多数与它有关。
- 浏览器开启安全DNS,会导致分流异常,请关闭!
- 部分软件会修改设备HOSTS,会导致分流异常,请注意检查!
- 控制面板打开空白时请尝试刷新浏览器缓存
- 默认代理路由本机流量,BT、PT下载等请尽量使用redir模式并注意进行流量规避(可在规则中将路由地址设置为直连)
- 备份插件设置后可在配置文件管理页面上传压缩包进行还原
版本变化
- 已知错误和bug的修复
Full Changelog: https://github.com/vernesong/OpenClash/compare/v0.47.086...v0.47.088