You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2025-12-30 17:12:29 [9401]: LZ v4.7.6 start to update the ISP IP data files...
--2025-12-30 17:12:29-- https://ispip.clang.cn/all_cn.txt
Resolving ispip.clang.cn... 114.237.67.188, 223.215.161.212
Connecting to ispip.clang.cn|114.237.67.188|:443... connected.
HTTP request sent, awaiting response... No data received.
Retrying.
admin@RT-BE88U-8708:/jffs/scripts/lz# ./lz_update_ispip_data.sh
2025-12-30 17:12:29 [9401]: LZ v4.7.6 start to update the ISP IP data files...
--2025-12-30 17:12:29-- https://ispip.clang.cn/all_cn.txt
Resolving ispip.clang.cn... 114.237.67.188, 223.215.161.212
Connecting to ispip.clang.cn|114.237.67.188|:443... connected.
HTTP request sent, awaiting response... No data received.
Retrying.
直接curl 时,提示
admin@RT-BE88U-8708:/jffs/scripts/lz# curl -v https://ispip.clang.cn/all_cn.txt
curl: (56) OpenSSL SSL_read: OpenSSL/1.1.1w: error:1408F10B:lib(20):func(143):reason(267), errno 0
admin@RT-BE88U-8708:/jffs/scripts/lz#
日志显示,核心错误是 TLS 协议版本 / 配置不兼容
测试用TLS 1.2访问原地址
curl -k --tlsv1.2 https://ispip.clang.cn/all_cn.txt -o /tmp/all_cn.txt
可以成功下载
排查的原因为 RT-BE88U,固件内置的 curl/OpenSSL 是定制精简版,对部分网站的 TLS 1.3 高级配置兼容性较差。
有什么办法解决?