OpenWRT 24.10.5 釋出了:  解決了新批次 Cudy routers 使用 ESMT F50L1G41LC flash chip 的問題

https://github.com/openwrt/openwrt/pull/20963

TOP

本帖最後由 张无忌 於 2026-2-22 05:34 編輯

OpenWrt repository servers

有了OpenWrt,如果大陆安装packages就要大陆以外的OpenWrt repository server,比较时间长,在晚上可能有errors。在大陆有repository server代用,但是要改动一下:

Tsinghua University TUNA Association
  1. sed -i 's_https\?://downloads.openwrt.org_https://mirrors.tuna.tsinghua.edu.cn/openwrt_' /etc/opkg/distfeeds.conf
複製代碼
Back to OPKG Configuration settings
  1. sed -i 's_https\?://mirrors.tuna.tsinghua.edu.cn/openwrt_https://downloads.openwrt.org_' /etc/opkg/distfeeds.conf
複製代碼
..

Shanghai Jiao Tong University
  1. sed -i 's_https\?://downloads.openwrt.org_https://mirror.sjtu.edu.cn/openwrt_' /etc/opkg/distfeeds.conf
複製代碼
Back to OPKG Configuration settings
  1. sed -i 's_https\?://mirror.sjtu.edu.cn/openwrt_https://downloads.openwrt.org_' /etc/opkg/distfeeds.conf
複製代碼
..

University of Science and Technology of China
  1. sed -i 's_https\?://downloads.openwrt.org_https://mirrors.ustc.edu.cn/openwrt_' /etc/opkg/distfeeds.conf
複製代碼
Back to OPKG Configuration settings
  1. sed -i 's_https\?://mirrors.ustc.edu.cn/openwrt_https://downloads.openwrt.org_' /etc/opkg/distfeeds.conf
複製代碼
..


目录帖子 OpenWrt

TOP

本帖最後由 张无忌 於 2025-12-20 06:54 編輯

大陆插件需要 dnsmasq-full

很多大陆插件如 PassWall,OpenClash 都需要 dnsmasq-full,你标准的 OpenWrt,只用普通的 dnsmasq,所以要把 dnsmasq 改变到 dnsmasq-full:
  1. opkg update
  2. opkg remove dnsmasq && opkg install dnsmasq-full
複製代碼
..


目录帖子 Cudy TR3000

TOP

本帖最後由 张无忌 於 2026-1-5 05:36 編輯

k9 大陆安装插件

Disable "option check_signature" in /etc/opkg.conf
  1. dest root /
  2. dest ram /tmp
  3. lists_dir ext /var/opkg-lists
  4. option overlay_root /overlay
  5. #option check_signature
複製代碼
..

大陆安装插件,需要 k9 库,就在“System”->“Software”,在Configure opkg里。

/etc/opkg/customfeeds.conf
  1. src/gz openwrt_kiddin9 https://dl.openwrt.ai/latest/packages/aarch64_cortex-a53/kiddin9
複製代碼
..


目录帖子 OpenWrt

TOP

本帖最後由 张无忌 於 2026-1-5 05:37 編輯

测试安装 PassWall

加入
1、OpenWrt repository server
2、大陆插件需要 dnsmasq-full
3、k9 大陆安装插件库

我们测试大陆的 PassWall,没有 error,最后 Configuring luci-app-passwall.
  1. root@OpenWrt:~# opkg install luci-app-passwall
  2. Installing luci-app-passwall (25.12.16-r1) to root...
  3. Downloading https://dl.openwrt.ai/latest/packages/aarch64_cortex-a53/kiddin9/luc        i-app-passwall_25.12.16-r1_all.ipk
  4. .
  5. .
  6. .
  7. Configuring shadowsocks-libev-ss-redir.
  8. Configuring shadowsocksr-libev-ssr-redir.
  9. Configuring tcping.
  10. Configuring geoview.
  11. Configuring shadowsocks-libev-ss-server.
  12. Configuring coreutils-nohup.
  13. Configuring xray-core.
  14. Configuring luci-app-passwall.
  15. root@OpenWrt:~#
複製代碼
..


目录帖子 OpenWrt

TOP

本帖最後由 张无忌 於 2026-1-1 01:39 編輯

Upgrading OpenWrt firmware using CLI

把 "openwrt-24.10.5-mediatek-filogic-cudy_tr3000-256mb-v1-squashfs-sysupgrade.bin" 下载到 Windows,然后用 WinSCP to OpenWrt Linux kernel [1]。

OpenWrt 24.10.4 --> OpenWrt 24.10.5
  1. # Flash firmware
  2. sysupgrade -v openwrt-24.10.5-mediatek-filogic-cudy_tr3000-256mb-v1-squashfs-sysupgrade.bin
複製代碼
..

先加 dnsmasq-full
  1. opkg update
  2. opkg remove dnsmasq && opkg install dnsmasq-full
複製代碼
..

然后加 luci-app-passward
  1. opkg install luci-app-passward
複製代碼
..

图1:


Reference:
[1] https://openwrt.org/docs/guide-user/installation/sysupgrade.cli


目录帖子 OpenWrt
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

TOP

本帖最後由 张无忌 於 2026-1-1 01:40 編輯

Upgrading residential OpenWrt firmware using CLI

大陆家里用 Cudy TR3000 256MB v1,OpenWrt 24.10.4 固件,因为 OpenWrt 24.10.5 已经出,那么以前重新 flash,但是今次用 sysupgrade。

我把 "openwrt-24.10.5-mediatek-filogic-cudy_tr3000-256mb-v1-squashfs-sysupgrade.bin" 下载到 Windows,然后用 WinSCP to OpenWrt Linux kernel,然后开 PuTTY=192.168.55.1。

OpenWrt 24.10.4 --> OpenWrt 24.10.5
  1. # Flash firmware
  2. sysupgrade -v openwrt-24.10.5-mediatek-filogic-cudy_tr3000-256mb-v1-squashfs-sysupgrade.bin
複製代碼
..

Install OpenWrt repository server,大陆需要,香港不需要
  1. sed -i 's_https\?://downloads.openwrt.org_https://mirrors.tuna.tsinghua.edu.cn/openwrt_' /etc/opkg/distfeeds.conf
複製代碼
..

Install dnsmasq-full
  1. opkg update
  2. opkg remove dnsmasq && opkg install dnsmasq-full
複製代碼
..

Install 以前的 packages
  1. opkg install iperf3 adguardhome zerotier luci-app-statistics collectd-mod-thermal htop luci-app-passwall luci-app-ddns tailscale
複製代碼
..

iperf3
adguardhome
zerotier
luci-app-statistics collectd-mod-thermal htop
luci-app-passwall
luci-app-ddns
tailscale

然后启动
  1. reboot
複製代碼
..

进行测试:
iperf3 ok
adguardhome ok
zerotier ok
luci-app-statistics collectd-mod-thermal htop ok
luci-app-passwall ok
luci-app-ddns ok
tailscale ok

以前的 packages 都能用!!!


目录帖子 OpenWrt

TOP

本帖最後由 张无忌 於 2026-5-1 13:54 編輯

Tailscale update

Tailscale update 很简单,先 opkg update,然后 tailscale update,最后 service tailscale restart。

图1:旧的 1.80.3-1


Listing 1:opkg update
  1. opkg update
複製代碼
..

Listing 2:tailscale update
  1. tailscale update
複製代碼
..

Listing 3:service tailscale restart
  1. service tailscale restart
複製代碼
..

图2:新的 1.92.3



目录 Cudy TR3000
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

TOP

GL-TM3000 with OpenWrt 25.12.0-rc1

能安装 PassWall



附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

TOP

X-wrt GL-MT3600BE

已经有 X-wrt,比起 OpenWrt 还有快!!!

附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

TOP