Coder Social home page Coder Social logo

sunbk201 / ua3f Goto Github PK

View Code? Open in Web Editor NEW
127.0 2.0 6.0 130.39 MB

Implementation of the new generation of HTTP User-Agent modification methodology.

Home Page: https://blog.sunbk201.site/posts/ua3f/

License: GNU General Public License v3.0

Shell 33.07% Go 57.54% Lua 9.39%
http proxy socks5 user-agent

ua3f's Introduction

UA3F

UA3F 是新一代 HTTP User-Agent 修改方法,对外作为一个 SOCK5 服务,可以部署在路由器等设备等设备进行透明 UA 修改。

UA3F

部署

Release 页面已经提供常见架构的编译版本,可以根据自己架构下载并解压到路由器等设备上。

安装(升级)脚本:

opkg update
opkg install curl libcurl luci-compat
export url='https://blog.sunbk201.site/cdn' && sh -c "$(curl -kfsSl $url/install.sh)"
service ua3f reload

使用

UA3F 已支持 LuCI Web 页面,可以打开 Services -> UA3F 进行相关配置。

UA3F-LuCI

参数:

  • -p <port>: 端口号,默认 1080
  • -f <UA>: 自定义 UA,默认 FFF
  • -b <bind addr>: 自定义绑定监听地址,默认 127.0.0.1
  • -l <log level>: 日志等级,默认 info,可选:debug,默认日志位置:/var/log/ua3f.log

作为后台服务运行

安装脚本执行成功后可通过以下命令启动 UA3F:

# 启动 UA3F
uci set ua3f.enabled.enabled=1
uci commit ua3f
service ua3f start

关闭或重启 UA3F 命令:

# 关闭 UA3F
service ua3f stop
# 重启 UA3F
service ua3f restart

配置 UA3:

# 自定义 UA
uci set ua3f.main.ua="FFF"
# 监听端口号
uci set ua3f.main.port="1080"
# 绑定地址
uci set ua3f.main.bind="127.0.0.1"
# 日志等级
uci set ua3f.main.log_level="info"

# 应用配置
uci commit ua3f
reload_config

手动启动

sudo -u nobody /usr/bin/ua3f

shellclash/shellcrash 用户建议使用以下命令启动:

sudo -u shellclash /usr/bin/ua3f
# 如果上面命令报错执行下面该命令
sudo -u shellcrash /usr/bin/ua3f

Clash 的配置建议

Clash 与 UA3F 的配置部署教程详见:UA3F 与 Clash 从零开始的部署教程

  • Clash 需要选用 Meta 内核。
  • 请确保 PROCESS-NAME,ua3f,DIRECT 置于规则列表顶部,MATCH,ua3f 置于规则列表底部。
  • 可以在 PROCESS-NAME,ua3f,DIRECTMATCH,ua3f 之间按需加入自定义加密代理规则。如果上述 2 条规则之间加入 DIRECT 规则,请确保匹配该规则的流量属于非 HTTP 协议流量。
proxies:
  - name: "ua3f"
    type: socks5
    server: 127.0.0.1
    port: 1080
    url: http://connectivitycheck.platform.hicloud.com/generate_204
    udp: false

rules:
  - PROCESS-NAME,ua3f,DIRECT
  - NETWORK,udp,DIRECT
  - MATCH,ua3f

请不要将从 Release 下载解压得到的 ua3f 二进制文件修改名称, 如需修改,则需要在 PROCESS-NAME,ua3f,DIRECT 中修改相应的名称。

Clash 参考配置

提供 3 个参考配置:

  1. 国内版,无需进行任何修改,可直接使用 ua3f-cn.yaml (Clash 需要选用 Meta 内核。)
  2. 国际版,针对有特定需求的特殊用户进行适配,ua3f-global.yaml,注意需要在 proxy-providers > Global-ISP > url 中(第 23 行)加入你的代理节点订阅链接。(Clash 需要选用 Meta 内核。)
  3. 国际版(增强),针对流量特征检测 (DPI) 进行规则补充,注意该配置会对 QQ、微信等平台的流量进行分流代理,因此需要根据自己的需求谨慎选择该配置,ua3f-global-enhance.yaml,注意需要在 proxy-providers > Global-ISP > url 中(第 23 行)加入你的代理节点订阅链接。(Clash 需要选用 Meta 内核。)

Roadmap

  • 支持 LuCI
  • 优化部署流程
  • 支持 SOCK5 Auth
  • 支持 UDP
  • 支持 IPv6
  • 性能提升

ua3f's People

Contributors

sunbk201 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

ua3f's Issues

ua3f设置为并成功启动后,应用未生效

使用了介绍里提供的ua3f-cn.yaml,在openclash-meta上仅修改了"追加上游dns",保存并应用后ua显示同原先一样

ua3f的log显示正常,关闭ua3f后无法上网(证明ua3f的socks5是能正常运行的)
clash内核日志也显示了流量走向ua3f,但ua显示无任何变化

v0.2.0 performance issue

想问下更新了ua3f后,出现了开启openclash后很快,网络延迟就变得很高。cpu占用也变得很高。是因为新版本对硬件要求进一步提升了吗?之前使用0.13版本时cpu占用还是很低的。硬件是歌华链路由器,mt7621a。

Originally posted by @sleepbad137 in #1 (comment)

Clash 配置报错

          `欢迎使用ShellClash!            版本:1.8.0

Clash服务没有运行(混合模式),已设置开机启动!
TG频道:https://t.me/ShellClash

1 启动/重启clash服务
2 clash功能设置
3 停止clash服务
4 clash启动设置
5 设置定时任务
6 导入配置文件
7 clash进阶设置
8 其他工具
9 更新/卸载

0 退出脚本
请输入对应数字 > 1

error msg="rules[2] [DOMAIN-SUFFIX,httpbin.org.CN] error: proxy [httpbin.org.CN] not found"
自定义配置文件校验失败!将使用基础配置文件启动!
错误详情请参考 /tmp/ShellClash/error.yaml 文件!
error msg="rules[2] [DOMAIN-SUFFIX,httpbin.org.CN] error: proxy [httpbin.org.CN] not found"
自定义配置文件校验失败!将使用基础配置文件启动!
错误详情请参考 /tmp/ShellClash/error.yaml 文件!
Clash服务启动失败!请查看报错信息!
error msg="rules[2] [DOMAIN-SUFFIX,httpbin.org.CN] error: proxy [httpbin.org.CN] not found"
/etc/clash/start.sh: line 1313: 13773 Killed /etc/init.d/clash start
[root@OpenWrt:09:11 PM ~] # `
clash 报错了怎么办

Originally posted by @BilibiliLH in #4 (comment)

异常的日志输出

image
似乎在有UDP流量通过时会出现,无论日志等级设置为多少都不会对其造成影响。
有时系统日志页一整页都是。
已换固件、重装过。版本 0.3.0,例子:
Mon Mar 18 06:35:01 2024 daemon.info ua3f[8031]: 43182.101.26.207:443182.101.26.207:443106.225.238.121:443117.21.223.120:443106.227.22.165:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443106.227.22.165:443106.227.22.165:443106.227.22.165:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443106.227.22.165:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443106.227.22.165:443106.227.22.165:443106.227.22.165:443106.227.22.165:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:443182.101.26.207:4
Mon Mar 18 06:35:01 2024 daemon.info ua3f[8031]: 8.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219:443218.95.38.219

使用luci或service启动ua3f无法正常工作

RT 使用luci启动时日志显示偶尔有链接 但打不开国内网站
使用了ua3f-global-enhance.yaml配置
使用service启动也是无法打开国内网站 日志差不多

[2024-06-06 15:27:44][INFO]: UA3F v0.4.0
[2024-06-06 15:27:44][INFO]: Port: 1080
[2024-06-06 15:27:44][INFO]: User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36
[2024-06-06 15:27:44][INFO]: Log level: debug
[2024-06-06 15:27:44][INFO]: Listen on 127.0.0.1:1080
[2024-06-06 15:27:44][DEBUG]: Accept 127.0.0.1:54882
[2024-06-06 15:27:44][DEBUG]: Accept 127.0.0.1:54890
[2024-06-06 15:27:44][DEBUG]: Connecting www.bilibili.com:443
[2024-06-06 15:27:44][DEBUG]: Connecting www.bilibili.com:443
[2024-06-06 15:27:44][DEBUG]: Accept 127.0.0.1:54896
[2024-06-06 15:27:44][DEBUG]: Connecting i0.hdslb.com:443
[2024-06-06 15:27:44][DEBUG]: Accept 127.0.0.1:54900
[2024-06-06 15:27:44][DEBUG]: Connecting www.bilibili.com:443
[2024-06-06 15:27:44][DEBUG]: Accept 127.0.0.1:54910
[2024-06-06 15:27:44][DEBUG]: Connecting client.wns.windows.com:443

在切换至ssh链接并手动执行sudo -u nobody /usr/bin/ua3f后 可以正常使用并访问国内网站

root@N1:~# ua3f -l debug -f "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36"
[2024-06-06 15:30:15][INFO]: UA3F v0.4.0
[2024-06-06 15:30:15][INFO]: Port: 1080
[2024-06-06 15:30:15][INFO]: User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36
[2024-06-06 15:30:15][INFO]: Log level: debug
[2024-06-06 15:30:15][INFO]: Listen on 127.0.0.1:1080
[2024-06-06 15:30:15][DEBUG]: Accept 127.0.0.1:37152
[2024-06-06 15:30:15][DEBUG]: Connecting 58.83.177.124:1883
[2024-06-06 15:30:15][DEBUG]: Connected 58.83.177.124:1883
[2024-06-06 15:30:15][DEBUG]: Accept 127.0.0.1:37162
[2024-06-06 15:30:15][DEBUG]: Connecting www.baidu.com:443
[2024-06-06 15:30:15][DEBUG]: Connected www.baidu.com:443
[2024-06-06 15:30:15][DEBUG]: Accept 127.0.0.1:37170
[2024-06-06 15:30:15][DEBUG]: Connecting api2.mina.mi.com:443
[2024-06-06 15:30:15][DEBUG]: Connected api2.mina.mi.com:443
[2024-06-06 15:30:16][DEBUG]: Not HTTP, Hint: [22 3 1 2 0 1 0], Add LRU Relay Cache: www.baidu.com:443, Cache Len: 1
[2024-06-06 15:30:16][DEBUG]: Not HTTP, Hint: [22 3 1 2 0 1 0], Add LRU Relay Cache: api2.mina.mi.com:443, Cache Len: 2
[2024-06-06 15:30:16][DEBUG]: Accept 127.0.0.1:37186
[2024-06-06 15:30:16][DEBUG]: Connecting api2.mina.mi.com:443
[2024-06-06 15:30:16][DEBUG]: Connected api2.mina.mi.com:443
[2024-06-06 15:30:16][DEBUG]: Hit LRU Relay Cache: api2.mina.mi.com:443
[2024-06-06 15:30:18][DEBUG]: Accept 127.0.0.1:57112
[2024-06-06 15:30:18][DEBUG]: Connecting 59.82.122.57:443
[2024-06-06 15:30:18][DEBUG]: Connected 59.82.122.57:443
[2024-06-06 15:30:18][DEBUG]: Accept 127.0.0.1:57116
[2024-06-06 15:30:18][DEBUG]: Connecting 111.206.203.5:443
[2024-06-06 15:30:18][DEBUG]: Connected 111.206.203.5:443
[2024-06-06 15:30:18][DEBUG]: Accept 127.0.0.1:57124
[2024-06-06 15:30:18][DEBUG]: Accept 127.0.0.1:57136
[2024-06-06 15:30:18][DEBUG]: Connecting 119.147.175.28:443
[2024-06-06 15:30:18][DEBUG]: Connected 119.147.175.28:443
[2024-06-06 15:30:18][DEBUG]: Connecting 119.147.175.28:443
[2024-06-06 15:30:18][DEBUG]: Connected 119.147.175.28:443
[2024-06-06 15:30:18][DEBUG]: Accept 127.0.0.1:57138
[2024-06-06 15:30:18][DEBUG]: Connecting api2.mina.mi.com:443
[2024-06-06 15:30:18][DEBUG]: Connected api2.mina.mi.com:443
[2024-06-06 15:30:18][DEBUG]: Hit LRU Relay Cache: api2.mina.mi.com:443
[2024-06-06 15:30:19][DEBUG]: Accept 127.0.0.1:57152
[2024-06-06 15:30:19][DEBUG]: Connecting api-cn.cdo.heytapmobi.com:443
[2024-06-06 15:30:19][DEBUG]: Connected api-cn.cdo.heytapmobi.com:443
[2024-06-06 15:30:19][DEBUG]: Accept 127.0.0.1:57166
[2024-06-06 15:30:19][DEBUG]: Accept 127.0.0.1:57176
[2024-06-06 15:30:19][DEBUG]: Connecting store.heytapimage.com:443
[2024-06-06 15:30:19][DEBUG]: Connecting store.heytapimage.com:443
[2024-06-06 15:30:19][DEBUG]: Connected store.heytapimage.com:443
[2024-06-06 15:30:19][DEBUG]: Connected store.heytapimage.com:443
[2024-06-06 15:30:19][DEBUG]: Accept 127.0.0.1:57186
[2024-06-06 15:30:19][DEBUG]: Connecting api-cn.open.heytapmobi.com:443
[2024-06-06 15:30:19][DEBUG]: Connected api-cn.open.heytapmobi.com:443
[2024-06-06 15:30:19][DEBUG]: Accept 127.0.0.1:57198
[2024-06-06 15:30:19][DEBUG]: Connecting mdp-usertrace-cn.heytapmobi.com:443
[2024-06-06 15:30:19][DEBUG]: Connected mdp-usertrace-cn.heytapmobi.com:443
[2024-06-06 15:30:19][DEBUG]: Accept 127.0.0.1:57206
[2024-06-06 15:30:19][DEBUG]: Connecting interface.music.163.com:443
[2024-06-06 15:30:19][DEBUG]: Connected interface.music.163.com:443
[2024-06-06 15:30:20][DEBUG]: Not HTTP, Hint: [22 3 1 1 96 1 0], Add LRU Relay Cache: interface.music.163.com:443, Cache Len: 3
[2024-06-06 15:30:20][DEBUG]: Accept 127.0.0.1:57218
[2024-06-06 15:30:20][DEBUG]: Connecting interface.music.163.com:443
[2024-06-06 15:30:20][DEBUG]: Connected interface.music.163.com:443
[2024-06-06 15:30:20][DEBUG]: Hit LRU Relay Cache: interface.music.163.com:443
[2024-06-06 15:30:20][DEBUG]: Accept 127.0.0.1:57228
[2024-06-06 15:30:20][DEBUG]: Connecting interface.music.163.com:443
[2024-06-06 15:30:20][DEBUG]: Connected interface.music.163.com:443
[2024-06-06 15:30:20][DEBUG]: Hit LRU Relay Cache: interface.music.163.com:443
[2024-06-06 15:30:20][DEBUG]: Accept 127.0.0.1:57242
[2024-06-06 15:30:20][DEBUG]: Connecting broker.mina.mi.com:443
[2024-06-06 15:30:20][DEBUG]: Connected broker.mina.mi.com:443
[2024-06-06 15:30:20][DEBUG]: Not HTTP, Hint: [22 3 1 2 0 1 0], Add LRU Relay Cache: broker.mina.mi.com:443, Cache Len: 4
[2024-06-06 15:30:20][DEBUG]: Accept 127.0.0.1:57244
[2024-06-06 15:30:20][DEBUG]: Connecting api-cn.cdo.heytapmobi.com:443
[2024-06-06 15:30:20][DEBUG]: Accept 127.0.0.1:57258
[2024-06-06 15:30:20][DEBUG]: Connected api-cn.cdo.heytapmobi.com:443
[2024-06-06 15:30:20][DEBUG]: Connecting api-cn.cdo.heytapmobi.com:443
[2024-06-06 15:30:20][DEBUG]: Connected api-cn.cdo.heytapmobi.com:443
[2024-06-06 15:30:21][DEBUG]: Accept 127.0.0.1:57264
[2024-06-06 15:30:21][DEBUG]: Connecting www.bilibili.com:443
[2024-06-06 15:30:21][DEBUG]: Connected www.bilibili.com:443
[2024-06-06 15:30:21][DEBUG]: Accept 127.0.0.1:57276
[2024-06-06 15:30:21][DEBUG]: Connecting interface.music.163.com:443
[2024-06-06 15:30:21][DEBUG]: Accept 127.0.0.1:57288
[2024-06-06 15:30:21][DEBUG]: Connecting interface.music.163.com:443
[2024-06-06 15:30:21][DEBUG]: Connected interface.music.163.com:443
[2024-06-06 15:30:21][DEBUG]: Hit LRU Relay Cache: interface.music.163.com:443
[2024-06-06 15:30:21][DEBUG]: Connected interface.music.163.com:443
[2024-06-06 15:30:21][DEBUG]: Hit LRU Relay Cache: interface.music.163.com:443
[2024-06-06 15:30:22][DEBUG]: Accept 127.0.0.1:57304
[2024-06-06 15:30:22][DEBUG]: Connecting 59.82.113.219:80
[2024-06-06 15:30:22][DEBUG]: Connected 59.82.113.219:80
[2024-06-06 15:30:22][DEBUG]: [59.82.113.219:80][127.0.0.1:57304] Hit User-Agent: Dalvik/2.1.0 (Linux; U; Android 13; PENM00 Build/TP1A.220905.001)
[2024-06-06 15:30:22][DEBUG]: Accept 127.0.0.1:57306
[2024-06-06 15:30:22][DEBUG]: Connecting i0.hdslb.com:443
[2024-06-06 15:30:22][DEBUG]: Accept 127.0.0.1:57312
[2024-06-06 15:30:22][DEBUG]: Connecting s1.hdslb.com:443
[2024-06-06 15:30:22][DEBUG]: Connected i0.hdslb.com:443
[2024-06-06 15:30:22][DEBUG]: Connected s1.hdslb.com:443
[2024-06-06 15:30:22][DEBUG]: [59.82.113.219:80][127.0.0.1:57304] read closed in next phase: read tcp 127.0.0.1:1080->127.0.0.1:57304: use of closed network connection
[2024-06-06 15:30:22][DEBUG]: Accept 127.0.0.1:57318
[2024-06-06 15:30:22][DEBUG]: Connecting api.bilibili.com:443
[2024-06-06 15:30:22][DEBUG]: Connected api.bilibili.com:443
[2024-06-06 15:30:22][DEBUG]: Accept 127.0.0.1:57320
[2024-06-06 15:30:22][DEBUG]: Accept 127.0.0.1:57332
[2024-06-06 15:30:22][DEBUG]: Connecting api.bilibili.com:443
[2024-06-06 15:30:22][DEBUG]: Connecting s1.hdslb.com:443
[2024-06-06 15:30:22][DEBUG]: Connected api.bilibili.com:443
[2024-06-06 15:30:22][DEBUG]: Connected s1.hdslb.com:443
[2024-06-06 15:30:22][DEBUG]: Accept 127.0.0.1:57346
[2024-06-06 15:30:22][DEBUG]: Connecting passport.bilibili.com:443
[2024-06-06 15:30:22][DEBUG]: Connected passport.bilibili.com:443
[2024-06-06 15:30:22][DEBUG]: Accept 127.0.0.1:57352
[2024-06-06 15:30:22][DEBUG]: Connecting cm.bilibili.com:443
[2024-06-06 15:30:22][DEBUG]: Connected cm.bilibili.com:443
[2024-06-06 15:30:22][DEBUG]: Accept 127.0.0.1:57364
[2024-06-06 15:30:22][DEBUG]: Connecting passport.bilibili.com:443
[2024-06-06 15:30:22][DEBUG]: Connected passport.bilibili.com:443
[2024-06-06 15:30:23][DEBUG]: Accept 127.0.0.1:57372
[2024-06-06 15:30:23][DEBUG]: Connecting cm.bilibili.com:443
[2024-06-06 15:30:23][DEBUG]: Accept 127.0.0.1:57386
[2024-06-06 15:30:23][DEBUG]: Connecting api.vc.bilibili.com:443
[2024-06-06 15:30:23][DEBUG]: Connected cm.bilibili.com:443
[2024-06-06 15:30:23][DEBUG]: Connected api.vc.bilibili.com:443
[2024-06-06 15:30:23][DEBUG]: Accept 127.0.0.1:57398
[2024-06-06 15:30:23][DEBUG]: Connecting api.live.bilibili.com:443
[2024-06-06 15:30:23][DEBUG]: Connected api.live.bilibili.com:443
[2024-06-06 15:30:23][DEBUG]: Accept 127.0.0.1:57404
[2024-06-06 15:30:23][DEBUG]: Connecting i0.hdslb.com:443
[2024-06-06 15:30:23][DEBUG]: Connected i0.hdslb.com:443
[2024-06-06 15:30:25][DEBUG]: Accept 127.0.0.1:57416
[2024-06-06 15:30:25][DEBUG]: Connecting interface.music.163.com:443
[2024-06-06 15:30:25][DEBUG]: Accept 127.0.0.1:57414
[2024-06-06 15:30:25][DEBUG]: Connecting interface.music.163.com:443
[2024-06-06 15:30:25][DEBUG]: Connected interface.music.163.com:443
[2024-06-06 15:30:25][DEBUG]: Connected interface.music.163.com:443
[2024-06-06 15:30:25][DEBUG]: Hit LRU Relay Cache: interface.music.163.com:443
[2024-06-06 15:30:25][DEBUG]: Hit LRU Relay Cache: interface.music.163.com:443
[2024-06-06 15:30:25][DEBUG]: Accept 127.0.0.1:57426
[2024-06-06 15:30:25][DEBUG]: Connecting ac.dun.163.com:443
[2024-06-06 15:30:25][DEBUG]: Connected ac.dun.163.com:443
[2024-06-06 15:30:25][DEBUG]: Accept 127.0.0.1:57436
[2024-06-06 15:30:25][DEBUG]: Connecting interface.music.163.com:443
[2024-06-06 15:30:25][DEBUG]: Connected interface.music.163.com:443
[2024-06-06 15:30:25][DEBUG]: Hit LRU Relay Cache: interface.music.163.com:443
[2024-06-06 15:30:25][DEBUG]: Accept 127.0.0.1:57438
[2024-06-06 15:30:25][DEBUG]: Connecting interface.music.163.com:443
[2024-06-06 15:30:25][DEBUG]: Connected interface.music.163.com:443
[2024-06-06 15:30:25][DEBUG]: Hit LRU Relay Cache: interface.music.163.com:443
[2024-06-06 15:30:25][DEBUG]: Accept 127.0.0.1:57442
[2024-06-06 15:30:25][DEBUG]: Connecting client.wns.windows.com:443
[2024-06-06 15:30:25][DEBUG]: Connected client.wns.windows.com:443
[2024-06-06 15:30:27][DEBUG]: Accept 127.0.0.1:57450
[2024-06-06 15:30:27][DEBUG]: Connecting clientlog.music.163.com:80
[2024-06-06 15:30:27][DEBUG]: Connected clientlog.music.163.com:80
[2024-06-06 15:30:27][DEBUG]: [clientlog.music.163.com:80][127.0.0.1:57450] Hit User-Agent: 
[2024-06-06 15:30:32][DEBUG]: Accept 127.0.0.1:44238
[2024-06-06 15:30:32][DEBUG]: Connecting securepubads.g.doubleclick.net:443
[2024-06-06 15:30:32][DEBUG]: Connected securepubads.g.doubleclick.net:443
[2024-06-06 15:30:46][DEBUG]: Accept 127.0.0.1:49408
[2024-06-06 15:30:46][DEBUG]: Connecting cm.bilibili.com:80
[2024-06-06 15:30:46][DEBUG]: Connected cm.bilibili.com:80
[2024-06-06 15:30:46][DEBUG]: [cm.bilibili.com:80][127.0.0.1:49408] Hit User-Agent: SogouIme
[2024-06-06 15:30:46][DEBUG]: Accept 127.0.0.1:49410
[2024-06-06 15:30:46][DEBUG]: Connecting api.vc.bilibili.com:80
[2024-06-06 15:30:46][DEBUG]: Connected api.vc.bilibili.com:80
[2024-06-06 15:30:46][DEBUG]: [api.vc.bilibili.com:80][127.0.0.1:49410] Hit User-Agent: SogouIMEMiniSetup_imepopup
[2024-06-06 15:30:46][DEBUG]: Accept 127.0.0.1:49426
[2024-06-06 15:30:46][DEBUG]: Connecting api.live.bilibili.com:80
[2024-06-06 15:30:46][DEBUG]: Connected api.live.bilibili.com:80
[2024-06-06 15:30:46][DEBUG]: [api.live.bilibili.com:80][127.0.0.1:49426] H

dns异常

使用国内版clash参考配置后,访问部分网站包括检测ua网站会出现dns错误,改hosts后能正常访问。后来发现只有停用openclash中的dns本地劫持才能正常访问

好像不是很稳呀,我回学校试了下,偶尔会断网被封号,今天下午遇到两次了。

5474243CBF83B2E1FE5CDA61BBAB2D8A

以下是部分日志:
[2024-02-25 11:56:34][ERROR]: Connect failed: dial dst:dial tcp: lookup translate.googleapis.com on [::1]:53: read udp [::1]:51086->[::1]:53: i/o timeout
[2024-02-25 11:56:34][ERROR]: Connect failed: dial dst:dial tcp: lookup monica.im on [::1]:53: read udp [::1]:49486->[::1]:53: i/o timeout
[2024-02-25 11:56:34][ERROR]: Connect failed: dial dst:dial tcp: lookup monica.im on [::1]:53: read udp [::1]:49486->[::1]:53: i/o timeout
[2024-02-25 11:56:35][ERROR]: Connect failed: dial dst:dial tcp: lookup v10.events.data.microsoft.com on [::1]:53: read udp [::1]:58368->[::1]:53: i/o timeout
[2024-02-25 11:56:35][ERROR]: Connect failed: dial dst:dial tcp: lookup api.steampowered.com on [::1]:53: read udp [::1]:41876->[::1]:53: i/o timeout
[2024-02-25 11:56:38][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:53728->[::1]:53: i/o timeout
[2024-02-25 11:56:38][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:53728->[::1]:53: i/o timeout
[2024-02-25 11:56:38][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:53728->[::1]:53: i/o timeout
[2024-02-25 11:56:38][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:53728->[::1]:53: i/o timeout
[2024-02-25 11:56:38][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:53728->[::1]:53: i/o timeout
[2024-02-25 11:56:38][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:53728->[::1]:53: i/o timeout
[2024-02-25 11:56:38][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:53728->[::1]:53: i/o timeout
[2024-02-25 11:56:38][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:53728->[::1]:53: i/o timeout
[2024-02-25 11:56:40][ERROR]: Connect failed: dial dst:dial tcp: lookup www.googleapis.com on [::1]:53: read udp [::1]:38477->[::1]:53: i/o timeout
[2024-02-25 11:56:41][ERROR]: Connect failed: dial dst:dial tcp: lookup beacons.gcp.gvt2.com on [::1]:53: read udp [::1]:43611->[::1]:53: i/o timeout
[2024-02-25 11:56:44][ERROR]: Connect failed: dial dst:dial tcp: lookup inference.location.live.net on [::1]:53: read udp [::1]:47709->[::1]:53: i/o timeout
[2024-02-25 11:56:44][ERROR]: Connect failed: dial dst:dial tcp: lookup api-edge.cognitive.microsofttranslator.com on [::1]:53: read udp [::1]:41363->[::1]:53: i/o timeout
[2024-02-25 11:56:44][ERROR]: Connect failed: dial dst:dial tcp: lookup www.youtube.com on [::1]:53: read udp [::1]:33544->[::1]:53: i/o timeout
[2024-02-25 11:56:45][ERROR]: Connect failed: dial dst:dial tcp: lookup api.codelife.cc on [::1]:53: read udp [::1]:38519->[::1]:53: i/o timeout
[2024-02-25 11:56:45][ERROR]: Connect failed: dial dst:dial tcp: lookup api.codelife.cc on [::1]:53: read udp [::1]:38519->[::1]:53: i/o timeout
[2024-02-25 11:56:45][ERROR]: Connect failed: dial dst:dial tcp: lookup api.codelife.cc on [::1]:53: read udp [::1]:38519->[::1]:53: i/o timeout
[2024-02-25 11:56:46][ERROR]: Connect failed: dial dst:dial tcp: lookup www.baidu.com on [::1]:53: read udp [::1]:48687->[::1]:53: i/o timeout
[2024-02-25 11:56:46][ERROR]: Connect failed: dial dst:dial tcp: lookup www.baidu.com on [::1]:53: read udp [::1]:48687->[::1]:53: i/o timeout
[2024-02-25 11:56:46][ERROR]: Connect failed: dial dst:dial tcp: lookup www.baidu.com on [::1]:53: read udp [::1]:48687->[::1]:53: i/o timeout
[2024-02-25 11:56:46][ERROR]: Connect failed: dial dst:dial tcp: lookup www.baidu.com on [::1]:53: read udp [::1]:48687->[::1]:53: i/o timeout
[2024-02-25 11:56:46][ERROR]: Connect failed: dial dst:dial tcp: lookup www.baidu.com on [::1]:53: read udp [::1]:48687->[::1]:53: i/o timeout
[2024-02-25 11:56:46][ERROR]: Connect failed: dial dst:dial tcp: lookup www.baidu.com on [::1]:53: read udp [::1]:48687->[::1]:53: i/o timeout
[2024-02-25 11:56:46][ERROR]: Connect failed: dial dst:dial tcp: lookup www.baidu.com on [::1]:53: read udp [::1]:48687->[::1]:53: i/o timeout
[2024-02-25 11:56:46][ERROR]: Connect failed: dial dst:dial tcp: lookup www.baidu.com on [::1]:53: read udp [::1]:48687->[::1]:53: i/o timeout
[2024-02-25 11:56:46][ERROR]: Connect failed: dial dst:dial tcp: lookup www.baidu.com on [::1]:53: read udp [::1]:48687->[::1]:53: i/o timeout
[2024-02-25 11:56:47][ERROR]: Connect failed: dial dst:dial tcp: lookup pss.bdstatic.com on [::1]:53: read udp [::1]:53632->[::1]:53: i/o timeout
[2024-02-25 11:56:47][ERROR]: Connect failed: dial dst:dial tcp: lookup dss1.bdstatic.com on [::1]:53: read udp [::1]:60320->[::1]:53: i/o timeout
[2024-02-25 11:56:51][ERROR]: Connect failed: dial dst:dial tcp: lookup h.trace.qq.com on [::1]:53: read udp [::1]:32797->[::1]:53: i/o timeout
[2024-02-25 11:56:51][ERROR]: Connect failed: dial dst:dial tcp: lookup h.trace.qq.com on [::1]:53: read udp [::1]:32797->[::1]:53: i/o timeout
[2024-02-25 11:56:51][ERROR]: Connect failed: dial dst:dial tcp: lookup h.trace.qq.com on [::1]:53: read udp [::1]:32797->[::1]:53: i/o timeout
[2024-02-25 11:56:52][ERROR]: Connect failed: dial dst:dial tcp: lookup settings-win.data.microsoft.com on [::1]:53: read udp [::1]:49834->[::1]:53: i/o timeout
[2024-02-25 11:56:53][ERROR]: Connect failed: dial dst:dial tcp: lookup msfwifi.3g.qq.com on [::1]:53: read udp [::1]:47584->[::1]:53: i/o timeout
[2024-02-25 11:56:53][ERROR]: Connect failed: dial dst:dial tcp: lookup msfwifi.3g.qq.com on [::1]:53: read udp [::1]:47584->[::1]:53: i/o timeout
[2024-02-25 11:56:53][ERROR]: Connect failed: dial dst:dial tcp: lookup msfwifi.3g.qq.com on [::1]:53: read udp [::1]:47584->[::1]:53: i/o timeout
[2024-02-25 11:56:53][ERROR]: Connect failed: dial dst:dial tcp: lookup msfwifi.3g.qq.com on [::1]:53: read udp [::1]:47584->[::1]:53: i/o timeout
[2024-02-25 11:56:53][ERROR]: Connect failed: dial dst:dial tcp: lookup msfwifi.3g.qq.com on [::1]:53: read udp [::1]:47584->[::1]:53: i/o timeout
[2024-02-25 11:56:54][ERROR]: Connect failed: dial dst:dial tcp: lookup test.steampowered.com on [::1]:53: read udp [::1]:53980->[::1]:53: i/o timeout
[2024-02-25 11:56:58][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:40321->[::1]:53: i/o timeout
[2024-02-25 11:56:58][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:40321->[::1]:53: i/o timeout
[2024-02-25 11:56:58][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:40321->[::1]:53: i/o timeout
[2024-02-25 11:56:58][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:40321->[::1]:53: i/o timeout
[2024-02-25 11:56:58][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:40321->[::1]:53: i/o timeout
[2024-02-25 11:56:58][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:40321->[::1]:53: i/o timeout
[2024-02-25 11:56:58][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:40321->[::1]:53: i/o timeout
[2024-02-25 11:56:58][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:40321->[::1]:53: i/o timeout
[2024-02-25 11:56:58][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:40321->[::1]:53: i/o timeout
[2024-02-25 11:56:58][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:40321->[::1]:53: i/o timeout
[2024-02-25 11:57:00][ERROR]: Connect failed: dial dst:dial tcp: lookup www.googleapis.com on [::1]:53: read udp [::1]:38391->[::1]:53: i/o timeout
[2024-02-25 11:57:00][ERROR]: Connect failed: dial dst:dial tcp: lookup www.googleapis.com on [::1]:53: read udp [::1]:38391->[::1]:53: i/o timeout
[2024-02-25 11:57:01][ERROR]: Connect failed: dial dst:dial tcp: lookup configsvr.msf.3g.qq.com on [::1]:53: read udp [::1]:53430->[::1]:53: i/o timeout
[2024-02-25 11:57:01][ERROR]: Connect failed: dial dst:dial tcp: lookup sqimg.qq.com on [::1]:53: read udp [::1]:53427->[::1]:53: i/o timeout
[2024-02-25 11:57:01][ERROR]: Connect failed: dial dst:dial tcp: lookup sqimg.qq.com on [::1]:53: read udp [::1]:53427->[::1]:53: i/o timeout
[2024-02-25 11:57:01][ERROR]: Connect failed: dial dst:dial tcp: lookup sqimg.qq.com on [::1]:53: read udp [::1]:53427->[::1]:53: i/o timeout
[2024-02-25 11:57:01][ERROR]: Connect failed: dial dst:dial tcp: lookup sqimg.qq.com on [::1]:53: read udp [::1]:53427->[::1]:53: i/o timeout
[2024-02-25 11:57:02][ERROR]: Connect failed: dial dst:dial tcp: lookup v10.events.data.microsoft.com on [::1]:53: read udp [::1]:60089->[::1]:53: i/o timeout
[2024-02-25 11:57:04][ERROR]: Connect failed: dial dst:dial tcp: lookup inference.location.live.net on [::1]:53: read udp [::1]:48616->[::1]:53: i/o timeout
[2024-02-25 11:57:04][ERROR]: Connect failed: dial dst:dial tcp: lookup edge.microsoft.com on [::1]:53: read udp [::1]:53172->[::1]:53: i/o timeout
[2024-02-25 11:57:04][ERROR]: Connect failed: dial dst:dial tcp: lookup www.youtube.com on [::1]:53: read udp [::1]:34605->[::1]:53: i/o timeout
[2024-02-25 11:57:05][ERROR]: Connect failed: dial dst:dial tcp: lookup connect.rom.miui.com on [::1]:53: read udp [::1]:48371->[::1]:53: i/o timeout
[2024-02-25 11:57:05][ERROR]: Connect failed: dial dst:dial tcp: lookup connect.rom.miui.com on [::1]:53: read udp [::1]:48371->[::1]:53: i/o timeout
[2024-02-25 11:57:05][ERROR]: Connect failed: dial dst:dial tcp: lookup pd.qq.com on [::1]:53: read udp [::1]:45978->[::1]:53: i/o timeout
[2024-02-25 11:57:06][ERROR]: Connect failed: dial dst:dial tcp: lookup clients4.google.com on [::1]:53: read udp [::1]:37452->[::1]:53: i/o timeout
[2024-02-25 11:57:06][ERROR]: Connect failed: dial dst:dial tcp: lookup clients4.google.com on [::1]:53: read udp [::1]:37452->[::1]:53: i/o timeout
[2024-02-25 11:57:06][ERROR]: Connect failed: dial dst:dial tcp: lookup m.baidu.com on [::1]:53: read udp [::1]:35975->[::1]:53: i/o timeout
[2024-02-25 11:57:06][ERROR]: Connect failed: dial dst:dial tcp: lookup www.baidu.com on [::1]:53: read udp [::1]:45973->[::1]:53: i/o timeout
[2024-02-25 11:57:06][ERROR]: Connect failed: dial dst:dial tcp: lookup www.baidu.com on [::1]:53: read udp [::1]:45973->[::1]:53: i/o timeout
[2024-02-25 11:57:06][ERROR]: Connect failed: dial dst:dial tcp: lookup www.baidu.com on [::1]:53: read udp [::1]:45973->[::1]:53: i/o timeout
[2024-02-25 11:57:06][ERROR]: Connect failed: dial dst:dial tcp: lookup www.baidu.com on [::1]:53: read udp [::1]:45973->[::1]:53: i/o timeout
[2024-02-25 11:57:06][ERROR]: Connect failed: dial dst:dial tcp: lookup www.baidu.com on [::1]:53: read udp [::1]:45973->[::1]:53: i/o timeout
[2024-02-25 11:57:06][ERROR]: Connect failed: dial dst:dial tcp: lookup www.baidu.com on [::1]:53: read udp [::1]:45973->[::1]:53: i/o timeout
[2024-02-25 11:57:06][ERROR]: Connect failed: dial dst:dial tcp: lookup www.baidu.com on [::1]:53: read udp [::1]:45973->[::1]:53: i/o timeout
[2024-02-25 11:57:06][ERROR]: Connect failed: dial dst:dial tcp: lookup www.baidu.com on [::1]:53: read udp [::1]:45973->[::1]:53: i/o timeout
[2024-02-25 11:57:06][ERROR]: Connect failed: dial dst:dial tcp: lookup www.baidu.com on [::1]:53: read udp [::1]:45973->[::1]:53: i/o timeout
[2024-02-25 11:57:07][ERROR]: Connect failed: dial dst:dial tcp: lookup etl-xlmc-ssl.sandai.net on [::1]:53: read udp [::1]:41457->[::1]:53: i/o timeout
[2024-02-25 11:57:07][ERROR]: Connect failed: dial dst:dial tcp: lookup content-autofill.googleapis.com on [::1]:53: read udp [::1]:37258->[::1]:53: i/o timeout
[2024-02-25 11:57:07][ERROR]: Connect failed: dial dst:dial tcp: lookup optimizationguide-pa.googleapis.com on [::1]:53: read udp [::1]:48948->[::1]:53: i/o timeout
[2024-02-25 11:57:07][ERROR]: Connect failed: dial dst:dial tcp: lookup optimizationguide-pa.googleapis.com on [::1]:53: read udp [::1]:48948->[::1]:53: i/o timeout
[2024-02-25 11:57:07][ERROR]: Connect failed: dial dst:dial tcp: lookup pss.bdstatic.com on [::1]:53: read udp [::1]:35248->[::1]:53: i/o timeout
[2024-02-25 11:57:07][ERROR]: Connect failed: dial dst:dial tcp: lookup dss1.bdstatic.com on [::1]:53: read udp [::1]:48531->[::1]:53: i/o timeout
[2024-02-25 11:57:08][ERROR]: Connect failed: dial dst:dial tcp: lookup api.steampowered.com on [::1]:53: read udp [::1]:50146->[::1]:53: i/o timeout
[2024-02-25 11:57:09][ERROR]: Connect failed: dial dst:dial tcp: lookup aps.amap.com on [::1]:53: read udp [::1]:54063->[::1]:53: i/o timeout
[2024-02-25 11:57:12][ERROR]: Connect failed: dial dst:dial tcp: lookup suggestion.baidu.com on [::1]:53: read udp [::1]:58376->[::1]:53: i/o timeout
[2024-02-25 11:57:12][ERROR]: Connect failed: dial dst:dial tcp: lookup suggestion.baidu.com on [::1]:53: read udp [::1]:58376->[::1]:53: i/o timeout
[2024-02-25 11:57:12][ERROR]: Connect failed: dial dst:dial tcp: lookup suggestion.baidu.com on [::1]:53: read udp [::1]:58376->[::1]:53: i/o timeout
[2024-02-25 11:57:12][ERROR]: Connect failed: dial dst:dial tcp: lookup suggestion.baidu.com on [::1]:53: read udp [::1]:58376->[::1]:53: i/o timeout
[2024-02-25 11:57:16][ERROR]: Connect failed: dial dst:dial tcp: lookup test.steampowered.com on [::1]:53: read udp [::1]:39281->[::1]:53: i/o timeout
[2024-02-25 11:57:18][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:42565->[::1]:53: i/o timeout
[2024-02-25 11:57:18][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:42565->[::1]:53: i/o timeout
[2024-02-25 11:57:18][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:42565->[::1]:53: i/o timeout
[2024-02-25 11:57:18][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:42565->[::1]:53: i/o timeout
[2024-02-25 11:57:18][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:42565->[::1]:53: i/o timeout
[2024-02-25 11:57:18][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:42565->[::1]:53: i/o timeout
[2024-02-25 11:57:18][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:42565->[::1]:53: i/o timeout
[2024-02-25 11:57:18][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:42565->[::1]:53: i/o timeout
[2024-02-25 11:57:18][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:42565->[::1]:53: i/o timeout
[2024-02-25 11:57:18][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:42565->[::1]:53: i/o timeout
[2024-02-25 11:57:18][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:42565->[::1]:53: i/o timeout
[2024-02-25 11:57:20][ERROR]: Connect failed: dial dst:dial tcp: lookup bag.itunes.apple.com on [::1]:53: read udp [::1]:47135->[::1]:53: i/o timeout
[2024-02-25 11:57:20][ERROR]: Connect failed: dial dst:dial tcp: lookup bag.itunes.apple.com on [::1]:53: read udp [::1]:47135->[::1]:53: i/o timeout
[2024-02-25 11:57:21][ERROR]: Connect failed: dial dst:dial tcp: lookup configsvr.msf.3g.qq.com on [::1]:53: read udp [::1]:39010->[::1]:53: i/o timeout
[2024-02-25 11:57:22][ERROR]: Connect failed: dial dst:dial tcp: lookup www.googleapis.com on [::1]:53: read udp [::1]:37467->[::1]:53: i/o timeout
[2024-02-25 11:57:22][ERROR]: Connect failed: dial dst:dial tcp: lookup www.googleapis.com on [::1]:53: read udp [::1]:37467->[::1]:53: i/o timeout
[2024-02-25 11:57:24][ERROR]: Connect failed: dial dst:dial tcp: lookup assets.msn.cn on [::1]:53: read udp [::1]:54931->[::1]:53: i/o timeout
[2024-02-25 11:57:24][ERROR]: Connect failed: dial dst:dial tcp: lookup edge.microsoft.com on [::1]:53: read udp [::1]:34877->[::1]:53: i/o timeout
[2024-02-25 11:57:24][ERROR]: Connect failed: dial dst:dial tcp: lookup edge.microsoft.com on [::1]:53: read udp [::1]:34877->[::1]:53: i/o timeout
[2024-02-25 11:57:27][ERROR]: Connect failed: dial dst:dial tcp: lookup www.baidu.com on [::1]:53: read udp [::1]:44192->[::1]:53: i/o timeout
[2024-02-25 11:57:28][ERROR]: Connect failed: dial dst:dial tcp: lookup pss.bdstatic.com on [::1]:53: read udp [::1]:50332->[::1]:53: i/o timeout
[2024-02-25 11:57:28][ERROR]: Connect failed: dial dst:dial tcp: lookup dss1.bdstatic.com on [::1]:53: read udp [::1]:36105->[::1]:53: i/o timeout
[2024-02-25 11:57:29][ERROR]: Connect failed: dial dst:dial tcp: lookup translate.googleapis.com on [::1]:53: server misbehaving
[2024-02-25 11:57:29][ERROR]: Connect failed: dial dst:dial tcp: lookup translate.googleapis.com on [::1]:53: server misbehaving
[2024-02-25 11:57:29][ERROR]: Connect failed: dial dst:dial tcp: lookup translate.googleapis.com on [::1]:53: server misbehaving
[2024-02-25 11:57:29][ERROR]: Connect failed: dial dst:dial tcp: lookup translate.googleapis.com on [::1]:53: server misbehaving
[2024-02-25 11:57:29][ERROR]: Connect failed: dial dst:dial tcp: lookup translate.googleapis.com on [::1]:53: server misbehaving
[2024-02-25 11:57:29][ERROR]: Connect failed: dial dst:dial tcp: lookup translate.googleapis.com on [::1]:53: server misbehaving
[2024-02-25 11:57:30][ERROR]: Connect failed: dial dst:dial tcp: lookup cdn.exp.xiaomi.com on [::1]:53: read udp [::1]:53571->[::1]:53: i/o timeout
[2024-02-25 11:57:31][ERROR]: Connect failed: dial dst:dial tcp: lookup api.codelife.cc on [::1]:53: read udp [::1]:39112->[::1]:53: i/o timeout
[2024-02-25 11:57:31][ERROR]: Connect failed: dial dst:dial tcp: lookup api.codelife.cc on [::1]:53: read udp [::1]:39112->[::1]:53: i/o timeout
[2024-02-25 11:57:31][ERROR]: Connect failed: dial dst:dial tcp: lookup api.codelife.cc on [::1]:53: read udp [::1]:39112->[::1]:53: i/o timeout
[2024-02-25 11:57:32][ERROR]: Connect failed: dial dst:dial tcp: lookup suggestion.baidu.com on [::1]:53: read udp [::1]:54099->[::1]:53: i/o timeout
[2024-02-25 11:57:32][ERROR]: Connect failed: dial dst:dial tcp: lookup suggestion.baidu.com on [::1]:53: read udp [::1]:54099->[::1]:53: i/o timeout
[2024-02-25 11:57:32][ERROR]: Connect failed: dial dst:dial tcp: lookup suggestion.baidu.com on [::1]:53: read udp [::1]:54099->[::1]:53: i/o timeout
[2024-02-25 11:57:32][ERROR]: Connect failed: dial dst:dial tcp: lookup suggestion.baidu.com on [::1]:53: read udp [::1]:54099->[::1]:53: i/o timeout
[2024-02-25 11:57:33][ERROR]: Connect failed: dial dst:dial tcp: lookup sqimg.qq.com on [::1]:53: read udp [::1]:41384->[::1]:53: i/o timeout
[2024-02-25 11:57:33][ERROR]: Connect failed: dial dst:dial tcp: lookup sqimg.qq.com on [::1]:53: read udp [::1]:41384->[::1]:53: i/o timeout
[2024-02-25 11:57:34][ERROR]: Connect failed: dial dst:dial tcp: lookup ext3-sgp1.steamserver.net on [::1]:53: read udp [::1]:37247->[::1]:53: i/o timeout
[2024-02-25 11:57:37][ERROR]: Connect failed: dial dst:dial tcp: lookup monica.im on [::1]:53: read udp [::1]:38138->[::1]:53: i/o timeout
[2024-02-25 11:57:37][ERROR]: Connect failed: dial dst:dial tcp: lookup monica.im on [::1]:53: read udp [::1]:38138->[::1]:53: i/o timeout
[2024-02-25 11:57:38][ERROR]: Connect failed: dial dst:dial tcp: lookup test.steampowered.com on [::1]:53: read udp [::1]:49419->[::1]:53: i/o timeout
[2024-02-25 11:57:38][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:49520->[::1]:53: i/o timeout
[2024-02-25 11:57:38][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:49520->[::1]:53: i/o timeout
[2024-02-25 11:57:38][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:49520->[::1]:53: i/o timeout
[2024-02-25 11:57:38][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:49520->[::1]:53: i/o timeout
[2024-02-25 11:57:38][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:49520->[::1]:53: i/o timeout
[2024-02-25 11:57:38][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:49520->[::1]:53: i/o timeout
[2024-02-25 11:57:38][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:49520->[::1]:53: i/o timeout
[2024-02-25 11:57:38][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:49520->[::1]:53: i/o timeout
[2024-02-25 11:57:40][ERROR]: Connect failed: dial dst:dial tcp: lookup client.wns.windows.com on [::1]:53: read udp [::1]:47134->[::1]:53: i/o timeout
[2024-02-25 11:57:40][ERROR]: Connect failed: dial dst:dial tcp: lookup bag.itunes.apple.com on [::1]:53: read udp [::1]:40128->[::1]:53: i/o timeout
[2024-02-25 11:57:40][ERROR]: Connect failed: dial dst:dial tcp: lookup bag.itunes.apple.com on [::1]:53: read udp [::1]:40128->[::1]:53: i/o timeout
[2024-02-25 11:57:42][ERROR]: Connect failed: dial dst:dial tcp: lookup www.googleapis.com on [::1]:53: read udp [::1]:39098->[::1]:53: i/o timeout
[2024-02-25 11:57:42][ERROR]: Connect failed: dial dst:dial tcp: lookup www.googleapis.com on [::1]:53: read udp [::1]:39098->[::1]:53: i/o timeout
[2024-02-25 11:57:43][ERROR]: Connect failed: dial dst:dial tcp 183.204.14.38:443: connect: connection timed out
[2024-02-25 11:57:43][ERROR]: Connect failed: dial dst:dial tcp 183.204.14.38:443: connect: connection timed out
[2024-02-25 11:57:44][ERROR]: Connect failed: dial dst:dial tcp: lookup assets.msn.cn on [::1]:53: read udp [::1]:37440->[::1]:53: i/o timeout
[2024-02-25 11:57:44][ERROR]: Connect failed: dial dst:dial tcp: lookup edge.microsoft.com on [::1]:53: read udp [::1]:39560->[::1]:53: i/o timeout
[2024-02-25 11:57:44][ERROR]: Connect failed: dial dst:dial tcp: lookup api-edge.cognitive.microsofttranslator.com on [::1]:53: read udp [::1]:56775->[::1]:53: i/o timeout
[2024-02-25 11:57:48][ERROR]: Connect failed: dial dst:dial tcp 120.232.31.239:443: connect: connection timed out
[2024-02-25 11:57:48][ERROR]: Connect failed: dial dst:dial tcp 183.204.14.17:443: connect: connection timed out
[2024-02-25 11:57:48][ERROR]: Connect failed: dial dst:dial tcp 157.148.63.107:443: connect: connection timed out
[2024-02-25 11:57:48][ERROR]: Connect failed: dial dst:dial tcp 220.194.118.230:443: connect: connection timed out
[2024-02-25 11:57:48][ERROR]: Connect failed: dial dst:dial tcp 183.204.14.17:443: connect: connection timed out
[2024-02-25 11:57:50][ERROR]: Connect failed: dial dst:dial tcp: lookup translate.googleapis.com on [::1]:53: read udp [::1]:54124->[::1]:53: i/o timeout
[2024-02-25 11:57:50][ERROR]: Connect failed: dial dst:dial tcp: lookup translate.googleapis.com on [::1]:53: read udp [::1]:54124->[::1]:53: i/o timeout
[2024-02-25 11:57:50][ERROR]: Connect failed: dial dst:dial tcp: lookup translate.googleapis.com on [::1]:53: read udp [::1]:54124->[::1]:53: i/o timeout
[2024-02-25 11:57:50][ERROR]: Connect failed: dial dst:dial tcp: lookup msfwifi.3g.qq.com on [::1]:53: read udp [::1]:35783->[::1]:53: i/o timeout
[2024-02-25 11:57:50][ERROR]: Connect failed: dial dst:dial tcp: lookup msfwifi.3g.qq.com on [::1]:53: read udp [::1]:35783->[::1]:53: i/o timeout
[2024-02-25 11:57:50][ERROR]: Connect failed: dial dst:dial tcp: lookup msfwifi.3g.qq.com on [::1]:53: read udp [::1]:35783->[::1]:53: i/o timeout
[2024-02-25 11:57:50][ERROR]: Connect failed: dial dst:dial tcp: lookup msfwifi.3g.qq.com on [::1]:53: read udp [::1]:35783->[::1]:53: i/o timeout
[2024-02-25 11:57:50][ERROR]: Connect failed: dial dst:dial tcp: lookup msfwifi.3g.qq.com on [::1]:53: read udp [::1]:35783->[::1]:53: i/o timeout
[2024-02-25 11:57:50][ERROR]: Connect failed: dial dst:dial tcp: lookup cdn.exp.xiaomi.com on [::1]:53: read udp [::1]:57261->[::1]:53: i/o timeout
[2024-02-25 11:57:51][ERROR]: Connect failed: dial dst:dial tcp: lookup api.codelife.cc on [::1]:53: read udp [::1]:36249->[::1]:53: i/o timeout
[2024-02-25 11:57:51][ERROR]: Connect failed: dial dst:dial tcp: lookup api.codelife.cc on [::1]:53: read udp [::1]:36249->[::1]:53: i/o timeout
[2024-02-25 11:57:51][ERROR]: Connect failed: dial dst:dial tcp: lookup api.codelife.cc on [::1]:53: read udp [::1]:36249->[::1]:53: i/o timeout
[2024-02-25 11:57:51][ERROR]: Connect failed: dial dst:dial tcp: lookup v10.events.data.microsoft.com on [::1]:53: read udp [::1]:42798->[::1]:53: i/o timeout
[2024-02-25 11:57:52][ERROR]: Connect failed: dial dst:dial tcp: lookup beacons.gcp.gvt2.com on [::1]:53: read udp [::1]:58463->[::1]:53: i/o timeout
[2024-02-25 11:57:52][ERROR]: Connect failed: dial dst:dial tcp: lookup beacons.gcp.gvt2.com on [::1]:53: read udp [::1]:58463->[::1]:53: i/o timeout
[2024-02-25 11:57:52][ERROR]: Connect failed: dial dst:dial tcp: lookup beacons.gcp.gvt2.com on [::1]:53: read udp [::1]:58463->[::1]:53: i/o timeout
[2024-02-25 11:57:52][ERROR]: Connect failed: dial dst:dial tcp: lookup beacons.gcp.gvt2.com on [::1]:53: read udp [::1]:58463->[::1]:53: i/o timeout
[2024-02-25 11:57:52][ERROR]: Connect failed: dial dst:dial tcp: lookup suggestion.baidu.com on [::1]:53: read udp [::1]:37725->[::1]:53: i/o timeout
[2024-02-25 11:57:52][ERROR]: Connect failed: dial dst:dial tcp: lookup suggestion.baidu.com on [::1]:53: read udp [::1]:37725->[::1]:53: i/o timeout
[2024-02-25 11:57:52][ERROR]: Connect failed: dial dst:dial tcp: lookup suggestion.baidu.com on [::1]:53: read udp [::1]:37725->[::1]:53: i/o timeout
[2024-02-25 11:57:53][ERROR]: Connect failed: dial dst:dial tcp 42.81.184.82:443: connect: connection timed out
[2024-02-25 11:57:53][ERROR]: Connect failed: dial dst:dial tcp 183.204.14.38:443: connect: connection timed out
[2024-02-25 11:57:53][ERROR]: Connect failed: dial dst:dial tcp 183.204.14.38:443: connect: connection timed out
[2024-02-25 11:57:53][ERROR]: Connect failed: dial dst:dial tcp 183.47.102.193:443: connect: connection timed out
[2024-02-25 11:57:53][ERROR]: Connect failed: dial dst:dial tcp 183.204.14.38:443: connect: connection timed out
[2024-02-25 11:57:57][ERROR]: Connect failed: dial dst:dial tcp: lookup monica.im on [::1]:53: read udp [::1]:37153->[::1]:53: i/o timeout
[2024-02-25 11:57:57][ERROR]: Connect failed: dial dst:dial tcp: lookup monica.im on [::1]:53: read udp [::1]:37153->[::1]:53: i/o timeout
[2024-02-25 11:57:58][ERROR]: Connect failed: dial dst:dial tcp 183.204.14.17:443: connect: connection timed out
[2024-02-25 11:57:58][ERROR]: Connect failed: dial dst:dial tcp 183.204.14.17:443: connect: connection timed out
[2024-02-25 11:57:58][ERROR]: Connect failed: dial dst:dial tcp 183.204.14.17:443: connect: connection timed out
[2024-02-25 11:57:59][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:56204->[::1]:53: i/o timeout
[2024-02-25 11:57:59][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:56204->[::1]:53: i/o timeout
[2024-02-25 11:57:59][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:56204->[::1]:53: i/o timeout
[2024-02-25 11:57:59][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:56204->[::1]:53: i/o timeout
[2024-02-25 11:57:59][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:56204->[::1]:53: i/o timeout
[2024-02-25 11:57:59][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:56204->[::1]:53: i/o timeout
[2024-02-25 11:57:59][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:56204->[::1]:53: i/o timeout
[2024-02-25 11:57:59][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:56204->[::1]:53: i/o timeout
[2024-02-25 11:57:59][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:56204->[::1]:53: i/o timeout
[2024-02-25 11:57:59][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:56204->[::1]:53: i/o timeout
[2024-02-25 11:57:59][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:56204->[::1]:53: i/o timeout
[2024-02-25 11:58:00][ERROR]: Connect failed: dial dst:dial tcp: lookup client.wns.windows.com on [::1]:53: read udp [::1]:57835->[::1]:53: i/o timeout
[2024-02-25 11:58:03][ERROR]: Connect failed: dial dst:dial tcp: lookup test.steampowered.com on [::1]:53: read udp [::1]:46090->[::1]:53: i/o timeout
[2024-02-25 11:58:03][ERROR]: Connect failed: dial dst:dial tcp 183.204.14.38:443: connect: connection timed out
[2024-02-25 11:58:04][ERROR]: Connect failed: dial dst:dial tcp: lookup api-edge.cognitive.microsofttranslator.com on [::1]:53: read udp [::1]:43701->[::1]:53: i/o timeout
[2024-02-25 11:58:09][ERROR]: Connect failed: dial dst:dial tcp 183.204.14.38:443: connect: connection timed out
[2024-02-25 11:58:09][ERROR]: Connect failed: dial dst:dial tcp 183.204.14.17:443: connect: connection timed out
[2024-02-25 11:58:09][ERROR]: Connect failed: dial dst:dial tcp 183.204.14.38:443: connect: connection timed out
[2024-02-25 11:58:10][ERROR]: Connect failed: dial dst:dial tcp: lookup translate.googleapis.com on [::1]:53: read udp [::1]:35381->[::1]:53: i/o timeout
[2024-02-25 11:58:10][ERROR]: Connect failed: dial dst:dial tcp: lookup translate.googleapis.com on [::1]:53: read udp [::1]:35381->[::1]:53: i/o timeout
[2024-02-25 11:58:11][ERROR]: Connect failed: dial dst:dial tcp: lookup cdn.exp.xiaomi.com on [::1]:53: read udp [::1]:55936->[::1]:53: i/o timeout
[2024-02-25 11:58:12][ERROR]: Connect failed: dial dst:dial tcp: lookup beacons.gcp.gvt2.com on [::1]:53: read udp [::1]:46726->[::1]:53: i/o timeout
[2024-02-25 11:58:12][ERROR]: Connect failed: dial dst:dial tcp: lookup beacons.gcp.gvt2.com on [::1]:53: read udp [::1]:46726->[::1]:53: i/o timeout
[2024-02-25 11:58:12][ERROR]: Connect failed: dial dst:dial tcp: lookup beacons.gcp.gvt2.com on [::1]:53: read udp [::1]:46726->[::1]:53: i/o timeout
[2024-02-25 11:58:12][ERROR]: Connect failed: dial dst:dial tcp: lookup beacons.gcp.gvt2.com on [::1]:53: read udp [::1]:46726->[::1]:53: i/o timeout
[2024-02-25 11:58:12][ERROR]: Connect failed: dial dst:dial tcp: lookup api.steampowered.com on [::1]:53: read udp [::1]:53166->[::1]:53: i/o timeout
[2024-02-25 11:58:14][ERROR]: Connect failed: dial dst:dial tcp 183.204.14.17:443: connect: connection timed out
[2024-02-25 11:58:14][ERROR]: Connect failed: dial dst:dial tcp 183.204.14.17:443: connect: connection timed out
[2024-02-25 11:58:15][ERROR]: Connect failed: dial dst:dial tcp: lookup assets.msn.cn on [::1]:53: read udp [::1]:36627->[::1]:53: i/o timeout
[2024-02-25 11:58:16][ERROR]: Connect failed: dial dst:dial tcp: lookup sqimg.qq.com on [::1]:53: read udp [::1]:57896->[::1]:53: i/o timeout
[2024-02-25 11:58:16][ERROR]: Connect failed: dial dst:dial tcp: lookup sqimg.qq.com on [::1]:53: read udp [::1]:57896->[::1]:53: i/o timeout
[2024-02-25 11:58:16][ERROR]: Connect failed: dial dst:dial tcp: lookup sqimg.qq.com on [::1]:53: read udp [::1]:57896->[::1]:53: i/o timeout
[2024-02-25 11:58:16][ERROR]: Connect failed: dial dst:dial tcp: lookup sqimg.qq.com on [::1]:53: read udp [::1]:57896->[::1]:53: i/o timeout
[2024-02-25 11:58:17][ERROR]: Connect failed: dial dst:dial tcp: lookup szlong.weixin.qq.com on [::1]:53: read udp [::1]:56097->[::1]:53: i/o timeout
[2024-02-25 11:58:17][ERROR]: Connect failed: dial dst:dial tcp: lookup szlong.weixin.qq.com on [::1]:53: read udp [::1]:56097->[::1]:53: i/o timeout
[2024-02-25 11:58:17][ERROR]: Connect failed: dial dst:dial tcp: lookup szlong.weixin.qq.com on [::1]:53: read udp [::1]:56097->[::1]:53: i/o timeout
[2024-02-25 11:58:17][ERROR]: Connect failed: dial dst:dial tcp: lookup szlong.weixin.qq.com on [::1]:53: read udp [::1]:56097->[::1]:53: i/o timeout
[2024-02-25 11:58:17][ERROR]: Connect failed: dial dst:dial tcp: lookup szlong.weixin.qq.com on [::1]:53: read udp [::1]:56097->[::1]:53: i/o timeout
[2024-02-25 11:58:19][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:53135->[::1]:53: i/o timeout
[2024-02-25 11:58:19][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:53135->[::1]:53: i/o timeout
[2024-02-25 11:58:19][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:53135->[::1]:53: i/o timeout
[2024-02-25 11:58:19][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:53135->[::1]:53: i/o timeout
[2024-02-25 11:58:19][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:53135->[::1]:53: i/o timeout
[2024-02-25 11:58:19][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:53135->[::1]:53: i/o timeout
[2024-02-25 11:58:19][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:53135->[::1]:53: i/o timeout
[2024-02-25 11:58:19][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:53135->[::1]:53: i/o timeout
[2024-02-25 11:58:19][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:53135->[::1]:53: i/o timeout
[2024-02-25 11:58:19][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:53135->[::1]:53: i/o timeout
[2024-02-25 11:58:19][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:53135->[::1]:53: i/o timeout
[2024-02-25 11:58:19][ERROR]: Connect failed: dial dst:dial tcp: lookup gateway.icloud.com.cn on [::1]:53: read udp [::1]:53135->[::1]:53: i/o timeout
[2024-02-25 11:58:19][ERROR]: Connect failed: dial dst:dial tcp 183.204.14.38:443: connect: connection timed out
[2024-02-25 11:58:19][ERROR]: Connect failed: dial dst:dial tcp 120.232.31.239:443: connect: connection timed out
[2024-02-25 11:58:19][ERROR]: Connect failed: dial dst:dial tcp 183.204.14.38:443: connect: connection timed out
[2024-02-25 11:58:19][ERROR]: Connect failed: dial dst:dial tcp 157.148.63.107:443: connect: connection timed out
[2024-02-25 11:58:19][ERROR]: Connect failed: dial dst:dial tcp 183.204.14.38:443: connect: connection timed out
[2024-02-25 11:58:20][ERROR]: Connect failed: dial dst:dial tcp: lookup client.wns.windows.com on [::1]:53: read udp [::1]:53119->[::1]:53: i/o timeout
[2024-02-25 11:58:20][ERROR]: Connect failed: dial dst:dial tcp: lookup client.wns.windows.com on [::1]:53: read udp [::1]:53119->[::1]:53: i/o timeout
[2024-02-25 11:58:20][ERROR]: Connect failed: dial dst:dial tcp: lookup client.wns.windows.com on [::1]:53: read udp [::1]:53119->[::1]:53: i/o timeout

UA3F设置成功后,应用不生效

佬,设置完后不生效,这是咋回事哈,下面附上设置图
Log
[2023-12-24 09:43:33][INFO]: UA3F v0.2.0
[2023-12-24 09:43:33][INFO]: Port: 1080
[2023-12-24 09:43:33][INFO]: User-Agent: FFF
[2023-12-24 09:43:33][INFO]: Log level: info
[2023-12-24 09:43:33][INFO]: Listen on 127.0.0.1:1080

screenshot20231224
screenshot20231224 (1)
screenshot20231224 (2)
screenshot20231224 (3)

嘤嘤,ShellClash启动服务时又有奇怪的报错,并且UA3F不能正常运行

嘤嘤,ShellClash启动服务时又有奇怪的报错,并且UA3F不能正常运行
`-----------------------------------------------
欢迎使用ShellCrash! 版本:1.8.7e
Clash服务正在运行(Nft基础),已设置开机启动!
当前内存占用:38908 kB,已运行:00小时04分54秒
TG频道:https://t.me/ShellClash

1 启动/重启服务
2 内核功能设置
3 停止内核服务
4 内核启动设置
5 配置自动任务
6 导入配置文件
7 内核进阶设置
8 其他工具
9 更新/卸载

0 退出脚本
请输入对应数字 > 1

Error: No such file or directory; did you mean chain ‘dns’ in table inet ‘shellcrash’?
add chain inet shellcrash dns { type nat hook prerouting priority -100 ; }
^^^
Error: Could not process rule: No such file or directory
add rule inet shellcrash dns udp dport 53 redirect to 1053
^^^
Error: Could not process rule: No such file or directory
add rule inet shellcrash dns tcp dport 53 redirect to 1053
^^^
Error: No such file or directory; did you mean chain ‘prerouting’ in table inet ‘shellcrash’?
add chain inet shellcrash prerouting { type nat hook prerouting priority -100 ; }
^^^
Error: Could not process rule: No such file or directory
add rule inet shellcrash prerouting ip daddr {0.0.0.0/8, 10.0.0.0/8, 127.0.0.0/8, 100.64.0.0/10, 169.254.0.0/16, 172.16.0.0/12, 192.168.0.0/16, 224.0.0.0/4, 240.0.0.0/4} return
^^^^^^^^^^
Error: Could not process rule: No such file or directory
add rule inet shellcrash prerouting ip saddr != {192.168.124.5/24, 192.168.1.1/24} return
^^^^^^^^^^
Error: Could not process rule: No such file or directory
add rule inet shellcrash prerouting tcp dport != {22, 53, 80, 123, 143, 194, 443, 465, 587, 853, 993, 995, 5222, 8080, 8443} ip daddr != {198.18.0.0/16} return
^^^^^^^^^^
Error: Could not process rule: No such file or directory
add rule inet shellcrash prerouting ip6 daddr {::/128, ::1/128, ::ffff:0:0/96, 64:ff9b::/96, 100::/64, 2001::/32, 2001:20::/28, 2001:db8::/32, 2002::/16, fc00::/7, fe80::/10, ff00::/8, fdc1:c750:bc44::1/60, } return
^^^^^^^^^^
Error: Could not process rule: No such file or directory
add rule inet shellcrash prerouting ip6 saddr != {fdc1:c750:bc44::1/60} return
^^^^^^^^^^
Error: Could not process rule: No such file or directory
add rule inet shellcrash prerouting meta l4proto tcp mark set 7892 redirect to 7892`

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.