Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug] 开启 TUN 后 DNS 请求均报 SERVFAIL(可能对所有网络请求都有影响) #1635

Open
9 tasks done
LittleYe233 opened this issue Nov 4, 2024 · 5 comments
Labels
bug Something isn't working

Comments

@LittleYe233
Copy link

LittleYe233 commented Nov 4, 2024

验证步骤

  • 我已经阅读了 文档,了解所有我编写的配置文件项的含义,而不是大量堆砌看似有用的选项或默认值。
  • 我仔细看过 文档 并未解决问题
  • 我已在 Issue Tracker 中寻找过我要提出的问题,并且没有找到
  • 我是中文用户,而非其他语言用户
  • 我已经使用最新的 Alpha 分支版本测试过,问题依旧存在
  • 我提供了可以在本地重现该问题的服务器、客户端配置文件与流程,而不是一个脱敏的复杂客户端配置文件。
  • 我提供了可用于重现我报告的错误的最简配置,而不是依赖远程服务器或者堆砌大量对于复现无用的配置等。
  • 我提供了完整的日志,而不是出于对自身智力的自信而仅提供了部分认为有用的部分。
  • 我直接使用 Mihomo 命令行程序重现了错误,而不是使用其他工具或脚本。

操作系统

Linux

系统版本

Arch Linux(已经过 pacman -Syu)

Mihomo 版本

Mihomo Meta alpha.20241104.3064.a86c5628 linux amd64 with go1.23.2 Mon Nov  4 12:51:19 PM UTC 2024
Use tags: with_gvisor

配置文件

log-level: debug
tun:
  enable: true
  stack: mixed
  auto-route: true
  auto-redirect: true
  auto-detect-interface: true
  strict-route: false

描述

启用 TUN 后,在如下场景下使用超过两个可用网络和多个可用代理节点:

  • 原始配置文件;
  • 包含节点的经过 acl4ssr 处理的配置文件,开启 TUN;
  • 包含节点的配置文件,开启 TUN 和 dns-hijack,且配置 DNS 模块

均可以复现问题:所有的 DNS 请求都报告 SERVFAIL 错误,尚未测试其他请求能否正常代理。

测试 DNS 请求的命令:nslookup google.com 8.8.8.8nslookup -port 1053 google.com 127.0.0.1

包含 DNS 配置的代理文件:

log-level: debug
tun:
  enable: true
  stack: mixed
  dns-hijack:
    - any:53
    - tcp://any:53
  auto-route: true
  auto-redirect: true
  auto-detect-interface: true
  strict-route: false
dns:
  enable: true
  use-hosts: true
  use-system-hosts: true
  listen: 0.0.0.0:1053
  default-nameserver:
    - 1.1.1.1
    - 8.8.8.8
    - 8.8.4.4
  nameserver:
    - https://cloudflare-dns.com/dns-query
  fallback:
    - tls://8.8.4.4
    - tls://1.1.1.1

重现方式

  1. 在某目录下粘贴附上的原始配置到 config.yaml
  2. 在终端中执行 mihomo
  3. 在另一终端执行 nslookup google.com

日志

**原始配置文件**(其中已经执行过一次 nslookup):


INFO[2024-11-04T21:03:17.271855457+08:00] Start initial configuration in progress
INFO[2024-11-04T21:03:17.271982291+08:00] Geodata Loader mode: memconservative
INFO[2024-11-04T21:03:17.271998425+08:00] Geosite Matcher implementation: succinct
INFO[2024-11-04T21:03:17.272389169+08:00] Initial configuration complete, total time: 0ms
INFO[2024-11-04T21:03:17.298639482+08:00] Sniffer is closed
WARN[2024-11-04T21:03:17.299182299+08:00] [TUN] default interface changed by monitor,  => wlp1s0
DEBU[2024-11-04T21:03:17.30430901+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38354
DEBU[2024-11-04T21:03:17.304341401+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41000
DEBU[2024-11-04T21:03:17.304334378+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:39143
DEBU[2024-11-04T21:03:17.304450826+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:39108
DEBU[2024-11-04T21:03:17.30449596+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38974
DEBU[2024-11-04T21:03:17.304590306+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:50295
DEBU[2024-11-04T21:03:17.304650262+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:49660
DEBU[2024-11-04T21:03:17.304669731+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:51728
DEBU[2024-11-04T21:03:17.30466481+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:51539
DEBU[2024-11-04T21:03:17.304746503+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:55839
DEBU[2024-11-04T21:03:17.3046606+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:41116
DEBU[2024-11-04T21:03:17.304839545+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:36310
DEBU[2024-11-04T21:03:17.304930155+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38434
DEBU[2024-11-04T21:03:17.304970309+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42173
DEBU[2024-11-04T21:03:17.305174497+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:37542
DEBU[2024-11-04T21:03:17.304978219+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:40305
DEBU[2024-11-04T21:03:17.304984929+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:49560
DEBU[2024-11-04T21:03:17.305267265+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:35474
DEBU[2024-11-04T21:03:17.305047053+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:32940
DEBU[2024-11-04T21:03:17.305415358+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:53793
DEBU[2024-11-04T21:03:17.311595418+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44145
DEBU[2024-11-04T21:03:17.311627989+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38406
DEBU[2024-11-04T21:03:17.312223664+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:55977
DEBU[2024-11-04T21:03:17.312443881+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44613
DEBU[2024-11-04T21:03:17.312310021+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:59689
DEBU[2024-11-04T21:03:17.312328457+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:33993
DEBU[2024-11-04T21:03:17.312815227+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:58157
DEBU[2024-11-04T21:03:17.312880746+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:49235
INFO[2024-11-04T21:03:17.313293476+08:00] [TUN] Tun adapter listening at: Meta([198.18.0.1/30],[fdfe:dcba:9876::1/126]), mtu: 9000, auto route: true, auto redir: true, ip stack: Mixed
INFO[2024-11-04T21:03:17.314766689+08:00] Start initial Compatible provider default
DEBU[2024-11-04T21:03:17.350145689+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:37353
DEBU[2024-11-04T21:03:17.350223822+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:36290
DEBU[2024-11-04T21:03:17.350471066+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:56913
DEBU[2024-11-04T21:03:17.350508053+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:46935
DEBU[2024-11-04T21:03:18.302892845+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:56487
DEBU[2024-11-04T21:03:18.303545104+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:57811
DEBU[2024-11-04T21:03:18.303742458+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:59587
DEBU[2024-11-04T21:03:18.303874688+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44268
DEBU[2024-11-04T21:03:18.303968054+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44156
DEBU[2024-11-04T21:03:18.304532964+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:59849
DEBU[2024-11-04T21:03:18.304645895+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:46245
DEBU[2024-11-04T21:03:18.304875397+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:36097
DEBU[2024-11-04T21:03:18.305284675+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:35293
DEBU[2024-11-04T21:03:18.305595034+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:33427
DEBU[2024-11-04T21:03:18.305630582+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:52081
DEBU[2024-11-04T21:03:18.305873541+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:43020
DEBU[2024-11-04T21:03:18.715626458+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:33984
DEBU[2024-11-04T21:03:18.715716745+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44247
DEBU[2024-11-04T21:03:18.716418561+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:48516
DEBU[2024-11-04T21:03:18.716659329+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:40763
DEBU[2024-11-04T21:03:18.716674721+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:39253
DEBU[2024-11-04T21:03:18.716722313+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:58998
DEBU[2024-11-04T21:03:18.717281285+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:41260
DEBU[2024-11-04T21:03:18.717496054+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:33197
DEBU[2024-11-04T21:03:18.717891043+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:56736
DEBU[2024-11-04T21:03:18.717991231+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:59453
DEBU[2024-11-04T21:03:18.718241744+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:40997
DEBU[2024-11-04T21:03:18.718461301+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:55438
DEBU[2024-11-04T21:03:18.718151733+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50918
DEBU[2024-11-04T21:03:18.718191292+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41306
DEBU[2024-11-04T21:03:18.719158183+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:46996
DEBU[2024-11-04T21:03:18.719318461+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42199
DEBU[2024-11-04T21:03:18.719404282+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:35178
DEBU[2024-11-04T21:03:18.719502654+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:56688
DEBU[2024-11-04T21:03:18.719677526+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:36370
DEBU[2024-11-04T21:03:18.719801324+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:59962
DEBU[2024-11-04T21:03:18.719807955+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:53676
DEBU[2024-11-04T21:03:18.719980793+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:45573
DEBU[2024-11-04T21:03:18.719823575+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:60293
DEBU[2024-11-04T21:03:18.720610493+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:39464
DEBU[2024-11-04T21:03:18.720691175+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:39564
DEBU[2024-11-04T21:03:18.72076426+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49457
DEBU[2024-11-04T21:03:18.721256506+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:47676
DEBU[2024-11-04T21:03:18.721351191+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:58426
DEBU[2024-11-04T21:03:18.721474951+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:36926
DEBU[2024-11-04T21:03:18.721383695+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:52266
DEBU[2024-11-04T21:03:18.721743404+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:40596
DEBU[2024-11-04T21:03:18.721898663+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:45583
DEBU[2024-11-04T21:03:19.351257453+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54084
DEBU[2024-11-04T21:03:19.35136049+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58203
DEBU[2024-11-04T21:03:19.352286307+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:48339
DEBU[2024-11-04T21:03:19.35243161+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:37299
DEBU[2024-11-04T21:03:22.307569683+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:38670
DEBU[2024-11-04T21:03:22.307727393+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:43689
DEBU[2024-11-04T21:03:22.307826697+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:33853
DEBU[2024-11-04T21:03:22.308596844+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45939
DEBU[2024-11-04T21:03:22.308668716+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45973
DEBU[2024-11-04T21:03:22.308681225+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:35494
DEBU[2024-11-04T21:03:22.309391429+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:39368
DEBU[2024-11-04T21:03:22.309503995+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:53977
DEBU[2024-11-04T21:03:22.309529411+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:60457
DEBU[2024-11-04T21:03:22.613382227+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:39016
DEBU[2024-11-04T21:03:22.614456352+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:54163
DEBU[2024-11-04T21:03:22.619550663+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54835
DEBU[2024-11-04T21:03:22.619781392+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:43173
DEBU[2024-11-04T21:03:22.619851955+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:51691
DEBU[2024-11-04T21:03:22.619989991+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:57455
DEBU[2024-11-04T21:03:22.619911769+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:46981
DEBU[2024-11-04T21:03:22.61995124+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:52654
DEBU[2024-11-04T21:03:22.620723318+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:35589
DEBU[2024-11-04T21:03:22.620920818+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:43874
DEBU[2024-11-04T21:03:22.620991794+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49300
DEBU[2024-11-04T21:03:22.620888199+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:54195
DEBU[2024-11-04T21:03:22.620991976+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:38189
DEBU[2024-11-04T21:03:22.621156098+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:45751
DEBU[2024-11-04T21:03:22.621138464+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54324
DEBU[2024-11-04T21:03:22.621224188+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:33736
DEBU[2024-11-04T21:03:22.621021826+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:32925
DEBU[2024-11-04T21:03:22.621265345+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:57960
DEBU[2024-11-04T21:03:22.621284784+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:46384
DEBU[2024-11-04T21:03:22.621024159+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:53501
DEBU[2024-11-04T21:03:22.621260595+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38239
DEBU[2024-11-04T21:03:22.621374854+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:35766
DEBU[2024-11-04T21:03:22.621414471+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:51608
DEBU[2024-11-04T21:03:22.621442783+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47049
DEBU[2024-11-04T21:03:22.621474538+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38474
DEBU[2024-11-04T21:03:22.621512025+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:39235
DEBU[2024-11-04T21:03:22.621527672+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:51979
DEBU[2024-11-04T21:03:22.621443403+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:50965
DEBU[2024-11-04T21:03:22.621438762+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47488
DEBU[2024-11-04T21:03:22.621636334+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:44129
DEBU[2024-11-04T21:03:22.6216202+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:45935
DEBU[2024-11-04T21:03:22.621680906+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:41239
DEBU[2024-11-04T21:03:22.621523902+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:56957
DEBU[2024-11-04T21:03:22.621736726+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:46632
DEBU[2024-11-04T21:03:23.351164239+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:51427
DEBU[2024-11-04T21:03:23.351292416+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:33422
DEBU[2024-11-04T21:03:23.35233444+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:37560
DEBU[2024-11-04T21:03:23.352453361+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:42528
DEBU[2024-11-04T21:03:23.610597286+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:37824
DEBU[2024-11-04T21:03:23.611557516+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:47155
DEBU[2024-11-04T21:03:23.714845754+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50615
DEBU[2024-11-04T21:03:23.714950029+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41766
DEBU[2024-11-04T21:03:23.715345039+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41384
DEBU[2024-11-04T21:03:23.715895229+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:46782
DEBU[2024-11-04T21:03:23.716183909+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47608
DEBU[2024-11-04T21:03:23.716270366+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:39417
DEBU[2024-11-04T21:03:23.71632056+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:56184
DEBU[2024-11-04T21:03:23.716246626+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:44294
DEBU[2024-11-04T21:03:23.716932834+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:56204
DEBU[2024-11-04T21:03:23.717105253+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:48200
DEBU[2024-11-04T21:03:23.717109462+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47402
DEBU[2024-11-04T21:03:23.717439675+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:43523
DEBU[2024-11-04T21:03:23.717577564+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:56118
DEBU[2024-11-04T21:03:23.717635517+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:56236
DEBU[2024-11-04T21:03:23.717822584+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:57743
DEBU[2024-11-04T21:03:23.71828189+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:53784
DEBU[2024-11-04T21:03:23.718491252+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49360
DEBU[2024-11-04T21:03:23.71891333+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:39383
DEBU[2024-11-04T21:03:23.718996678+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:36398
DEBU[2024-11-04T21:03:23.71863335+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:48936
DEBU[2024-11-04T21:03:23.719125802+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:45922
DEBU[2024-11-04T21:03:23.718624774+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:41129
DEBU[2024-11-04T21:03:23.718610943+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:54070
DEBU[2024-11-04T21:03:23.719011455+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:56782
DEBU[2024-11-04T21:03:23.719292002+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:43942
DEBU[2024-11-04T21:03:23.719295544+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:40897
DEBU[2024-11-04T21:03:23.719452977+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:34703
DEBU[2024-11-04T21:03:23.719507657+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:36268
DEBU[2024-11-04T21:03:23.719558837+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:38846
DEBU[2024-11-04T21:03:23.719618689+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:52375
DEBU[2024-11-04T21:03:23.719685777+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:42073
DEBU[2024-11-04T21:03:24.043365663+08:00] [DNS] hijack udp:8.8.8.8:53 from 198.18.0.1:60090
DEBU[2024-11-04T21:03:24.611316095+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47939
DEBU[2024-11-04T21:03:24.612376985+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:35668
DEBU[2024-11-04T21:03:24.618926086+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54174
DEBU[2024-11-04T21:03:24.619606072+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:40635
DEBU[2024-11-04T21:03:24.619796182+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:36033
DEBU[2024-11-04T21:03:24.619896899+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44685
DEBU[2024-11-04T21:03:24.61990296+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:50430
DEBU[2024-11-04T21:03:24.620346922+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:53863
DEBU[2024-11-04T21:03:24.620421675+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:56653
DEBU[2024-11-04T21:03:24.620615186+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45093
DEBU[2024-11-04T21:03:24.620966921+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:48618
DEBU[2024-11-04T21:03:24.62103137+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50919
DEBU[2024-11-04T21:03:24.621034368+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:60240
DEBU[2024-11-04T21:03:24.621605026+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41783
DEBU[2024-11-04T21:03:24.621668103+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:41667
DEBU[2024-11-04T21:03:24.621501655+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:37335
DEBU[2024-11-04T21:03:24.621513635+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41167
DEBU[2024-11-04T21:03:24.621520275+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:35385
DEBU[2024-11-04T21:03:24.621531307+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:53890
DEBU[2024-11-04T21:03:24.621861196+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:56754
DEBU[2024-11-04T21:03:24.62187917+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42312
DEBU[2024-11-04T21:03:24.621874351+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:33503
DEBU[2024-11-04T21:03:24.621955115+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:39969
DEBU[2024-11-04T21:03:24.621535025+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:35642
DEBU[2024-11-04T21:03:24.621961988+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:54352
DEBU[2024-11-04T21:03:24.622213876+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:34843
DEBU[2024-11-04T21:03:24.622393228+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38630
DEBU[2024-11-04T21:03:24.622307292+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:60973
DEBU[2024-11-04T21:03:24.6224818+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45970
DEBU[2024-11-04T21:03:24.622537801+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:47765
DEBU[2024-11-04T21:03:24.622558093+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:39434
DEBU[2024-11-04T21:03:24.622614772+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41827
DEBU[2024-11-04T21:03:24.622572392+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50168
DEBU[2024-11-04T21:03:24.622549871+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:55270
DEBU[2024-11-04T21:03:24.622485793+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:58125
DEBU[2024-11-04T21:03:24.622795093+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:39167
DEBU[2024-11-04T21:03:24.622687448+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:52295
DEBU[2024-11-04T21:03:24.622494476+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45670
DEBU[2024-11-04T21:03:24.622692353+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:33175
DEBU[2024-11-04T21:03:24.622695613+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:34995
DEBU[2024-11-04T21:03:24.623253769+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47440
DEBU[2024-11-04T21:03:24.623279336+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:43694
DEBU[2024-11-04T21:03:24.62328537+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:36726
DEBU[2024-11-04T21:03:24.62324067+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58198
DEBU[2024-11-04T21:03:24.622916103+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:43134
DEBU[2024-11-04T21:03:24.622698333+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:53807
DEBU[2024-11-04T21:03:24.622919476+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:59682
DEBU[2024-11-04T21:03:24.623501063+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:55494
DEBU[2024-11-04T21:03:24.623524162+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:41233
DEBU[2024-11-04T21:03:24.623467197+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:36470
DEBU[2024-11-04T21:03:24.623329878+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:53948
DEBU[2024-11-04T21:03:24.623643709+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:55588
DEBU[2024-11-04T21:03:24.623669795+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:45728
DEBU[2024-11-04T21:03:24.623473929+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:37338
DEBU[2024-11-04T21:03:24.623660894+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:38551
DEBU[2024-11-04T21:03:24.623747378+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:59083
DEBU[2024-11-04T21:03:24.622917973+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:32792
DEBU[2024-11-04T21:03:24.623881392+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:57300
DEBU[2024-11-04T21:03:24.623481476+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:40722
DEBU[2024-11-04T21:03:24.62379463+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41719
DEBU[2024-11-04T21:03:24.6238362+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:39706
DEBU[2024-11-04T21:03:24.624018954+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45797
DEBU[2024-11-04T21:03:24.624084101+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:50991
DEBU[2024-11-04T21:03:24.62414489+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:38502
DEBU[2024-11-04T21:03:24.624231894+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:46375
DEBU[2024-11-04T21:03:24.624273301+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:35375
DEBU[2024-11-04T21:03:25.609901244+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50279
DEBU[2024-11-04T21:03:25.609984628+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:51327
DEBU[2024-11-04T21:03:25.610288505+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:53763
DEBU[2024-11-04T21:03:25.610318783+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:38017
DEBU[2024-11-04T21:03:25.713609934+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:46417
DEBU[2024-11-04T21:03:25.713758048+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:57951
DEBU[2024-11-04T21:03:25.714055278+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:33051
DEBU[2024-11-04T21:03:25.71413088+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45818
DEBU[2024-11-04T21:03:25.714243058+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:36170
DEBU[2024-11-04T21:03:25.714340816+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:35228
DEBU[2024-11-04T21:03:25.71424561+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:40101
DEBU[2024-11-04T21:03:25.714514989+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:36724
DEBU[2024-11-04T21:03:25.714734921+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:35171
DEBU[2024-11-04T21:03:25.714727055+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:47518
DEBU[2024-11-04T21:03:25.714532357+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:54302
DEBU[2024-11-04T21:03:25.714955441+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:60740
DEBU[2024-11-04T21:03:25.714269689+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:40137
DEBU[2024-11-04T21:03:25.715158853+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:53775
DEBU[2024-11-04T21:03:25.715584045+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:36954
DEBU[2024-11-04T21:03:25.715661797+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:40301
DEBU[2024-11-04T21:03:25.71571798+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:57726
DEBU[2024-11-04T21:03:25.715764605+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:46010
DEBU[2024-11-04T21:03:25.715811789+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:35634
DEBU[2024-11-04T21:03:25.71592005+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:37723
DEBU[2024-11-04T21:03:25.715817195+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44789
DEBU[2024-11-04T21:03:25.71581984+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:54751
DEBU[2024-11-04T21:03:25.716169996+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:54982
DEBU[2024-11-04T21:03:25.716204688+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:37755
DEBU[2024-11-04T21:03:25.716144708+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:34281
DEBU[2024-11-04T21:03:25.715827193+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42610
DEBU[2024-11-04T21:03:25.716482972+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:32912
DEBU[2024-11-04T21:03:25.716664098+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:35720
DEBU[2024-11-04T21:03:25.716699923+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:43407
DEBU[2024-11-04T21:03:25.716844739+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:51223
DEBU[2024-11-04T21:03:25.716938343+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:47601
DEBU[2024-11-04T21:03:25.71722693+08:00] [DNS] hijack udp:114.114.114.114:53 from 198.18.0.1:40569
^CWARN[2024-11-04T21:03:26.658433849+08:00] Mihomo shutting down
@LittleYe233 LittleYe233 added the bug Something isn't working label Nov 4, 2024
@zipfile6652

This comment was marked as off-topic.

@Skyxim
Copy link
Collaborator

Skyxim commented Nov 14, 2024

别用连接性不可靠的国外作为 DNS 测试配置。先换成 223,119 等国内 DNS

@LittleYe233
Copy link
Author

我将 DNS 模块的 default-nameserver 换成了国内的两个 DNS,重新测试原始配置文件+DNS 模块和含代理的配置+TUN+DNS 模块两种情况的结果。两种情况都是触发 SERVFAIL,且即便 flush 的路由表仍然会出现问题(因为 route -n flush 没法使用,我用的是 sudo ip route flush table main)。附上这次测试原始配置文件+DNS 模块的日志:

INFO[2024-11-14T16:30:58.546374483+08:00] Start initial configuration in progress
INFO[2024-11-14T16:30:58.546510827+08:00] Geodata Loader mode: memconservative
INFO[2024-11-14T16:30:58.546518748+08:00] Geosite Matcher implementation: succinct
INFO[2024-11-14T16:30:58.54680507+08:00] Initial configuration complete, total time: 0ms
INFO[2024-11-14T16:30:58.57445455+08:00] Sniffer is closed
INFO[2024-11-14T16:30:58.574601415+08:00] DNS server listening at: [::]:1053
WARN[2024-11-14T16:30:58.575043385+08:00] [TUN] default interface changed by monitor,  => wlp1s0
DEBU[2024-11-14T16:30:58.579369956+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:52660
DEBU[2024-11-14T16:30:58.579605671+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:43559
DEBU[2024-11-14T16:30:58.579696415+08:00] [DNS] resolve www.googleapis.com A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:30:58.579714576+08:00] creating a new http client
DEBU[2024-11-14T16:30:58.579729834+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:30:58.579849173+08:00] [DNS] resolve cloudflare-dns.com A from udp://119.29.29.29:53
DEBU[2024-11-14T16:30:58.579895478+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:40488
DEBU[2024-11-14T16:30:58.579962999+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:57723
DEBU[2024-11-14T16:30:58.580065503+08:00] [DNS] resolve cloudflare-dns.com A from udp://223.5.5.5:53
DEBU[2024-11-14T16:30:58.580180258+08:00] [DNS] resolve cloudflare-dns.com AAAA from udp://223.5.5.5:53
DEBU[2024-11-14T16:30:58.580288214+08:00] [DNS] resolve cloudflare-dns.com AAAA from udp://119.29.29.29:53
DEBU[2024-11-14T16:30:58.580321627+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50460
DEBU[2024-11-14T16:30:58.580376479+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:52672
DEBU[2024-11-14T16:30:58.580377692+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:52535
DEBU[2024-11-14T16:30:58.580385539+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38681
DEBU[2024-11-14T16:30:58.586953531+08:00] [DNS] cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A from udp://119.29.29.29:53
DEBU[2024-11-14T16:30:58.587178988+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42619
DEBU[2024-11-14T16:30:58.587281127+08:00] [DNS] resolve ping.archlinux.org A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:30:58.587368507+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50915
DEBU[2024-11-14T16:30:58.588243241+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58364
DEBU[2024-11-14T16:30:58.588303648+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54999
DEBU[2024-11-14T16:30:58.589406765+08:00] [DNS] cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA from udp://223.5.5.5:53
INFO[2024-11-14T16:30:58.589886817+08:00] [TUN] Tun adapter listening at: Meta([198.18.0.1/30],[fdfe:dcba:9876::1/126]), mtu: 9000, auto route: true, auto redir: true, ip stack: Mixed
INFO[2024-11-14T16:30:58.591381724+08:00] Start initial Compatible provider default
DEBU[2024-11-14T16:30:58.624257171+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41796
DEBU[2024-11-14T16:30:58.62434158+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44957
DEBU[2024-11-14T16:30:59.62527427+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:52606
DEBU[2024-11-14T16:30:59.625345484+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:46665
DEBU[2024-11-14T16:30:59.930451176+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:46193
DEBU[2024-11-14T16:30:59.930675888+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58269
DEBU[2024-11-14T16:30:59.930803464+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:51894
DEBU[2024-11-14T16:30:59.931091885+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58214
DEBU[2024-11-14T16:30:59.932217283+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:43830
DEBU[2024-11-14T16:30:59.932629514+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49188
DEBU[2024-11-14T16:30:59.933199144+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:34359
DEBU[2024-11-14T16:30:59.933541333+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:51186
DEBU[2024-11-14T16:31:01.327433784+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54314
DEBU[2024-11-14T16:31:01.327544556+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41481
DEBU[2024-11-14T16:31:01.327590374+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:60295
DEBU[2024-11-14T16:31:01.327659678+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:36102
DEBU[2024-11-14T16:31:01.32809698+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:55395
DEBU[2024-11-14T16:31:01.328151454+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58057
DEBU[2024-11-14T16:31:01.328227367+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:56320
DEBU[2024-11-14T16:31:01.328280995+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41862
DEBU[2024-11-14T16:31:01.62550503+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:52016
DEBU[2024-11-14T16:31:01.625930615+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45232
DEBU[2024-11-14T16:31:02.930894633+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45146
DEBU[2024-11-14T16:31:02.931057126+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58703
DEBU[2024-11-14T16:31:02.93123856+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:46680
DEBU[2024-11-14T16:31:02.931723717+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45207
DEBU[2024-11-14T16:31:02.93239363+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:35437
DEBU[2024-11-14T16:31:02.932637395+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47231
DEBU[2024-11-14T16:31:02.933155644+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44349
DEBU[2024-11-14T16:31:02.933264164+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50793
DEBU[2024-11-14T16:31:03.580479703+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:03.580645025+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:03.580646917+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:03.580653405+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:03.581035798+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54795
DEBU[2024-11-14T16:31:03.580657798+08:00] [DNS] resolve www.googleapis.com A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:03.581123264+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:40674
DEBU[2024-11-14T16:31:03.5814163+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47016
DEBU[2024-11-14T16:31:03.581456541+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45888
DEBU[2024-11-14T16:31:03.580661557+08:00] [DNS] resolve www.googleapis.com A from tls://8.8.4.4:853
DEBU[2024-11-14T16:31:03.58179427+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.58202861+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.58203162+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.582039246+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.582040535+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.582044699+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.582884138+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50595
DEBU[2024-11-14T16:31:03.582961713+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:52298
DEBU[2024-11-14T16:31:03.583021303+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47362
DEBU[2024-11-14T16:31:03.582047332+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.58319969+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:39632
DEBU[2024-11-14T16:31:03.582081732+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.582059571+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.582048684+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.582054319+08:00] [DNS] resolve www.googleapis.com A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:03.582067569+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.583648713+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49283
DEBU[2024-11-14T16:31:03.582060691+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.583777146+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:51274
DEBU[2024-11-14T16:31:03.583894065+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:46743
DEBU[2024-11-14T16:31:03.583523488+08:00] creating a new http client
DEBU[2024-11-14T16:31:03.584049587+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:48198
DEBU[2024-11-14T16:31:03.584099727+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:03.582064433+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.582053947+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.582074985+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.582078258+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.584370089+08:00] [DNS] cache hit cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A, expire at 2024-11-14 16:35:58
DEBU[2024-11-14T16:31:03.584649909+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42974
DEBU[2024-11-14T16:31:03.584702618+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54123
DEBU[2024-11-14T16:31:03.584768453+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:37151
DEBU[2024-11-14T16:31:03.584418487+08:00] [DNS] cache hit cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA, expire at 2024-11-14 16:35:07
DEBU[2024-11-14T16:31:03.584950391+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:59922
DEBU[2024-11-14T16:31:03.588102448+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:03.588222613+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:03.588234266+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABHBpbmcJYXJjaGxpbnV4A29yZwAAAQAB": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)
DEBU[2024-11-14T16:31:03.588375194+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:03.58849735+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABHBpbmcJYXJjaGxpbnV4A29yZwAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:03.588526791+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:03.58859352+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:03.588710936+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47776
DEBU[2024-11-14T16:31:03.588714506+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:03.588736398+08:00] [DNS] resolve ping.archlinux.org A from tls://8.8.4.4:853
DEBU[2024-11-14T16:31:03.588770702+08:00] [DNS] resolve ping.archlinux.org A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:03.589219766+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 8.8.4.4:853: i/o timeout
DEBU[2024-11-14T16:31:03.58937462+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 8.8.4.4:853: i/o timeout
DEBU[2024-11-14T16:31:03.589403715+08:00] [DNS] resolve ping.archlinux.org A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:03.589376287+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 8.8.4.4:853: i/o timeout
DEBU[2024-11-14T16:31:03.589383313+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 8.8.4.4:853: i/o timeout
DEBU[2024-11-14T16:31:03.589389557+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 8.8.4.4:853: i/o timeout
DEBU[2024-11-14T16:31:03.589675215+08:00] [DNS] cache hit cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA, expire at 2024-11-14 16:35:07
DEBU[2024-11-14T16:31:03.589649344+08:00] [DNS] cache hit cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A, expire at 2024-11-14 16:35:58
DEBU[2024-11-14T16:31:03.58940055+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 8.8.4.4:853: i/o timeout
DEBU[2024-11-14T16:31:03.589398098+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 8.8.4.4:853: i/o timeout
DEBU[2024-11-14T16:31:05.624354915+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:55625
DEBU[2024-11-14T16:31:05.624429317+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:33632
DEBU[2024-11-14T16:31:07.026011735+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38589
DEBU[2024-11-14T16:31:07.097810319+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58819
DEBU[2024-11-14T16:31:07.097880855+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42249
DEBU[2024-11-14T16:31:07.097897402+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:46909
DEBU[2024-11-14T16:31:07.099768648+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50147
DEBU[2024-11-14T16:31:07.116699046+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44016
DEBU[2024-11-14T16:31:07.116811557+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:37503
DEBU[2024-11-14T16:31:07.116846822+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49673
DEBU[2024-11-14T16:31:07.116857037+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:53346
WARN[2024-11-14T16:31:07.581216519+08:00] [TUN] Auto detect interface by 0.0.0.0 get empty name.
WARN[2024-11-14T16:31:07.581246766+08:00] [TUN] Auto detect interface by :: get empty name.
WARN[2024-11-14T16:31:07.581256981+08:00] [TUN] Auto detect interface by 1.1.1.1 get empty name.
DEBU[2024-11-14T16:31:08.582251581+08:00] [DNS] resolve www.googleapis.com A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:08.582371542+08:00] [DNS] resolve www.googleapis.com A from tls://8.8.4.4:853
DEBU[2024-11-14T16:31:08.582978745+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.583186198+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.583199762+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.583208714+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.583855297+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:59477
DEBU[2024-11-14T16:31:08.583214574+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.584113303+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:60720
DEBU[2024-11-14T16:31:08.583214935+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.58322069+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.583226948+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.584704546+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42635
DEBU[2024-11-14T16:31:08.583238019+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.58324307+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.583232234+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.583251616+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.58326109+08:00] [DNS] resolve www.googleapis.com A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:08.58322607+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.583259987+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.585379641+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45636
DEBU[2024-11-14T16:31:08.583266888+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.583250621+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.589764005+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABHBpbmcJYXJjaGxpbnV4A29yZwAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:08.590097158+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:08.590169556+08:00] [DNS] cache hit cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A, expire at 2024-11-14 16:35:58
DEBU[2024-11-14T16:31:08.59021653+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABHBpbmcJYXJjaGxpbnV4A29yZwAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:08.590231314+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:08.590239129+08:00] [DNS] cache hit cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA, expire at 2024-11-14 16:35:07
DEBU[2024-11-14T16:31:08.590321004+08:00] [DNS] resolve ping.archlinux.org A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:08.590399807+08:00] [DNS] resolve ping.archlinux.org A from tls://8.8.4.4:853
DEBU[2024-11-14T16:31:08.590485064+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.590625781+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.590641207+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.590686989+08:00] [DNS] resolve ping.archlinux.org A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:08.590785149+08:00] [DNS] cache hit cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A, expire at 2024-11-14 16:35:58
DEBU[2024-11-14T16:31:08.590813802+08:00] [DNS] cache hit cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA, expire at 2024-11-14 16:35:07
DEBU[2024-11-14T16:31:10.498404865+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:48619
DEBU[2024-11-14T16:31:10.49873814+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47677
DEBU[2024-11-14T16:31:10.49910478+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:34652
DEBU[2024-11-14T16:31:10.499307243+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38798
DEBU[2024-11-14T16:31:10.498788953+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:35249
DEBU[2024-11-14T16:31:10.499525918+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54524
DEBU[2024-11-14T16:31:10.498868714+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:37839
DEBU[2024-11-14T16:31:10.498960681+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:51258
DEBU[2024-11-14T16:31:10.500828778+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:35834
DEBU[2024-11-14T16:31:10.501048801+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:43073
DEBU[2024-11-14T16:31:10.502139906+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:37018
DEBU[2024-11-14T16:31:10.50224549+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44587
DEBU[2024-11-14T16:31:10.502238258+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:55190
DEBU[2024-11-14T16:31:10.502247182+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:56717
DEBU[2024-11-14T16:31:10.502844083+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:57737
DEBU[2024-11-14T16:31:10.503176689+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:60388
DEBU[2024-11-14T16:31:10.548708668+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:48643
DEBU[2024-11-14T16:31:10.548819647+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:48286
DEBU[2024-11-14T16:31:10.548843878+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49288
DEBU[2024-11-14T16:31:10.548857002+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47921
DEBU[2024-11-14T16:31:10.548832411+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:39152
DEBU[2024-11-14T16:31:10.548825853+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:53668
DEBU[2024-11-14T16:31:10.549120012+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:52349
DEBU[2024-11-14T16:31:10.549509074+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:34224
DEBU[2024-11-14T16:31:10.549857608+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54658
DEBU[2024-11-14T16:31:11.550785774+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:33715
DEBU[2024-11-14T16:31:11.551247552+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50081
DEBU[2024-11-14T16:31:11.928654406+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58792
DEBU[2024-11-14T16:31:11.928700157+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:59551
DEBU[2024-11-14T16:31:11.928725264+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:53004
DEBU[2024-11-14T16:31:11.928761776+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:59909
DEBU[2024-11-14T16:31:11.929197673+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38124
DEBU[2024-11-14T16:31:11.929245806+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49572
DEBU[2024-11-14T16:31:11.929527658+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:60759
DEBU[2024-11-14T16:31:11.929943272+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:43664
DEBU[2024-11-14T16:31:13.550490948+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:59350
DEBU[2024-11-14T16:31:13.550828774+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44700
DEBU[2024-11-14T16:31:13.58415959+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAAA3d3dwpnb29nbGVhcGlzA2NvbQAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:13.584226229+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:13.584237768+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:13.584503973+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:13.584837409+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAAA3d3dwpnb29nbGVhcGlzA2NvbQAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:13.584910722+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:13.585145957+08:00] [DNS] resolve www.googleapis.com A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:13.585225333+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:13.585237615+08:00] [DNS] resolve www.googleapis.com A from tls://8.8.4.4:853
DEBU[2024-11-14T16:31:13.585720194+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:13.585990958+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.585653288+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45547
DEBU[2024-11-14T16:31:13.586289447+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.586404757+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.586536612+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.586676782+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:55391
DEBU[2024-11-14T16:31:13.586293769+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.587043285+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41954
DEBU[2024-11-14T16:31:13.586313845+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50208
DEBU[2024-11-14T16:31:13.587308284+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42847
DEBU[2024-11-14T16:31:13.586305858+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.586372967+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.586389556+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.585959886+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.587929209+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:51837
DEBU[2024-11-14T16:31:13.588021679+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50894
DEBU[2024-11-14T16:31:13.586349722+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.586356381+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.587470765+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:34786
DEBU[2024-11-14T16:31:13.58633513+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.588670738+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58742
DEBU[2024-11-14T16:31:13.587766394+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47560
DEBU[2024-11-14T16:31:13.586381925+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.58636431+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.588841847+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54354
DEBU[2024-11-14T16:31:13.58639736+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.588848422+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:35443
DEBU[2024-11-14T16:31:13.588858174+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50597
DEBU[2024-11-14T16:31:13.588852916+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49915
DEBU[2024-11-14T16:31:13.588863529+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:39812
DEBU[2024-11-14T16:31:13.588868216+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:34911
DEBU[2024-11-14T16:31:13.5890069+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47322
DEBU[2024-11-14T16:31:13.58941581+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54607
DEBU[2024-11-14T16:31:13.589311411+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54788
DEBU[2024-11-14T16:31:13.589276689+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49206
DEBU[2024-11-14T16:31:13.589327287+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:40143
DEBU[2024-11-14T16:31:13.586326505+08:00] [DNS] resolve www.googleapis.com A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:13.58954815+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:37273
DEBU[2024-11-14T16:31:13.586343008+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.589682922+08:00] [DNS] cache hit cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A, expire at 2024-11-14 16:35:58
DEBU[2024-11-14T16:31:13.589705437+08:00] [DNS] cache hit cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA, expire at 2024-11-14 16:35:07
DEBU[2024-11-14T16:31:13.589836702+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41232
DEBU[2024-11-14T16:31:13.590003551+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41224
DEBU[2024-11-14T16:31:13.591129195+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABHBpbmcJYXJjaGxpbnV4A29yZwAAAQAB": context deadline exceeded (Client.Timeout exceeded while awaiting headers)
DEBU[2024-11-14T16:31:13.59115476+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:13.591207555+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABHBpbmcJYXJjaGxpbnV4A29yZwAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:13.591219657+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:13.591276656+08:00] [DNS] resolve ping.archlinux.org A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:13.591317776+08:00] [DNS] resolve ping.archlinux.org A from tls://8.8.4.4:853
DEBU[2024-11-14T16:31:13.591390902+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.591464331+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.591476121+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.591475218+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.591473652+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.591479818+08:00] [DNS] resolve ping.archlinux.org A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:13.59149501+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.591765161+08:00] [DNS] cache hit cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A, expire at 2024-11-14 16:35:58
DEBU[2024-11-14T16:31:13.591792558+08:00] [DNS] cache hit cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA, expire at 2024-11-14 16:35:07
DEBU[2024-11-14T16:31:13.623707383+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:40851
DEBU[2024-11-14T16:31:13.624337359+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49330
DEBU[2024-11-14T16:31:17.248211693+08:00] [DNS] resolve google.com A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:17.550865853+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:43147
DEBU[2024-11-14T16:31:17.550977967+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:34548
DEBU[2024-11-14T16:31:18.587498603+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.587833405+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.587830278+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAAA3d3dwpnb29nbGVhcGlzA2NvbQAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:18.587897316+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.588450833+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:48665
DEBU[2024-11-14T16:31:18.588677705+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.588247288+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:18.588917533+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:52240
DEBU[2024-11-14T16:31:18.589094626+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.589419815+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.589663305+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.589760906+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.589979596+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.589840935+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAAA3d3dwpnb29nbGVhcGlzA2NvbQAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:18.588319576+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.588994658+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.589865411+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.590141123+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:18.590141922+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.589866068+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.592188646+08:00] [DNS] resolve www.googleapis.com A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:18.590149726+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.592281996+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABHBpbmcJYXJjaGxpbnV4A29yZwAAAQAB": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)
DEBU[2024-11-14T16:31:18.592302737+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:18.590157396+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.590160249+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.592527345+08:00] [DNS] resolve www.googleapis.com A from tls://8.8.4.4:853
DEBU[2024-11-14T16:31:18.593389094+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:39631
DEBU[2024-11-14T16:31:18.592540091+08:00] [DNS] cache hit cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA, expire at 2024-11-14 16:35:07
DEBU[2024-11-14T16:31:18.590165392+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42760
DEBU[2024-11-14T16:31:18.590156415+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.590165268+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.592570145+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50148
DEBU[2024-11-14T16:31:18.592572885+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:34486
DEBU[2024-11-14T16:31:18.593650743+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:18.592953306+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:34684
DEBU[2024-11-14T16:31:18.592600984+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44118
DEBU[2024-11-14T16:31:18.593963973+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:57634
DEBU[2024-11-14T16:31:18.59259478+08:00] [DNS] cache hit cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A, expire at 2024-11-14 16:35:58
DEBU[2024-11-14T16:31:18.593589083+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:18.590163684+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.592580968+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:40224
DEBU[2024-11-14T16:31:18.594218671+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:46638
DEBU[2024-11-14T16:31:18.592575448+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:51355
DEBU[2024-11-14T16:31:18.594402253+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58188
DEBU[2024-11-14T16:31:18.594821962+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38759
DEBU[2024-11-14T16:31:18.592583155+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58019
DEBU[2024-11-14T16:31:18.594887249+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:40523
DEBU[2024-11-14T16:31:18.592717178+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABHBpbmcJYXJjaGxpbnV4A29yZwAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:18.594882812+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:36512
DEBU[2024-11-14T16:31:18.593582961+08:00] [DNS] resolve www.googleapis.com A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:18.592599905+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41856
DEBU[2024-11-14T16:31:18.594108948+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45494
DEBU[2024-11-14T16:31:18.59416155+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:36498
DEBU[2024-11-14T16:31:18.594961889+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:18.592567188+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:35889
DEBU[2024-11-14T16:31:18.592581825+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:37799
DEBU[2024-11-14T16:31:18.595275925+08:00] [DNS] resolve ping.archlinux.org A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:18.595357784+08:00] [DNS] cache hit cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A, expire at 2024-11-14 16:35:58
DEBU[2024-11-14T16:31:18.594885437+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:39206
DEBU[2024-11-14T16:31:18.59257532+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42770
DEBU[2024-11-14T16:31:18.59528072+08:00] [DNS] resolve ping.archlinux.org A from tls://8.8.4.4:853
DEBU[2024-11-14T16:31:18.592578286+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42907
DEBU[2024-11-14T16:31:18.595402091+08:00] [DNS] cache hit cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA, expire at 2024-11-14 16:35:07
DEBU[2024-11-14T16:31:18.595533646+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:18.595574427+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:18.592744428+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38202
DEBU[2024-11-14T16:31:18.595575472+08:00] [DNS] resolve ping.archlinux.org A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:18.594300311+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:40409
DEBU[2024-11-14T16:31:18.595578438+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:18.59557994+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:22.248389863+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABmdvb2dsZQNjb20AAAEAAQ": context deadline exceeded (Client.Timeout exceeded while awaiting headers)
DEBU[2024-11-14T16:31:22.248467172+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:22.248734761+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABmdvb2dsZQNjb20AAAEAAQ": context deadline exceeded
DEBU[2024-11-14T16:31:22.24879749+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:22.249000453+08:00] [DNS] resolve google.com A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:22.249130791+08:00] [DNS] resolve google.com A from tls://8.8.4.4:853
DEBU[2024-11-14T16:31:22.249457172+08:00] [DNS Server] Exchange ;google.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:22.249699742+08:00] [DNS] resolve google.com A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:22.250205438+08:00] [DNS] cache hit cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A, expire at 2024-11-14 16:35:58
DEBU[2024-11-14T16:31:22.250343858+08:00] [DNS] cache hit cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA, expire at 2024-11-14 16:35:07
DEBU[2024-11-14T16:31:23.594877085+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.595077716+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.595143163+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.595294292+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.595225194+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.595622507+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.595294911+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.595869496+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:43404
DEBU[2024-11-14T16:31:23.595239839+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAAA3d3dwpnb29nbGVhcGlzA2NvbQAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:23.596013813+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47484
DEBU[2024-11-14T16:31:23.596079537+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.596211862+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.595257949+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.596122418+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42866
DEBU[2024-11-14T16:31:23.595295316+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.595091733+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.595125675+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.596023801+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:23.596059525+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.597145557+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABHBpbmcJYXJjaGxpbnV4A29yZwAAAQAB": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)
DEBU[2024-11-14T16:31:23.597088041+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49735
DEBU[2024-11-14T16:31:23.596104139+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:33329
DEBU[2024-11-14T16:31:23.596180846+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41024
DEBU[2024-11-14T16:31:23.597237496+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:23.597104208+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:57014
DEBU[2024-11-14T16:31:23.5977833+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAAA3d3dwpnb29nbGVhcGlzA2NvbQAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:23.597856502+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:23.597378007+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38224
DEBU[2024-11-14T16:31:23.597944401+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:35554
DEBU[2024-11-14T16:31:23.598076038+08:00] [DNS] resolve www.googleapis.com A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:23.597990471+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABHBpbmcJYXJjaGxpbnV4A29yZwAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:23.598458226+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:23.598095928+08:00] [DNS] resolve www.googleapis.com A from tls://8.8.4.4:853
DEBU[2024-11-14T16:31:23.597948913+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44204
DEBU[2024-11-14T16:31:23.598744985+08:00] [DNS] resolve ping.archlinux.org A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:23.598833416+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.598922131+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.599068724+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.599123601+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.598850866+08:00] [DNS] resolve www.googleapis.com A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:23.599074432+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.598815195+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.59968558+08:00] [DNS] cache hit cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA, expire at 2024-11-14 16:35:07
DEBU[2024-11-14T16:31:23.599637739+08:00] [DNS] cache hit cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A, expire at 2024-11-14 16:35:58
DEBU[2024-11-14T16:31:23.598883376+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.598894714+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.599083476+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.599090238+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.599120008+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.598779171+08:00] [DNS] resolve ping.archlinux.org A from tls://8.8.4.4:853
^CDEBU[2024-11-14T16:31:24.797700188+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context canceled
WARN[2024-11-14T16:31:24.816922981+08:00] Mihomo shutting down

@zipfile6652
Copy link

zipfile6652 commented Nov 16, 2024

** 我不知道为什么还把我的回复标记折叠了。 **

不过问题现象的确就是我说的一样, 解决方法也很简单, 不要用alpha版本, 只需要换成1.18.10版本就没有问题了。

@Skyxim
Copy link
Collaborator

Skyxim commented Nov 16, 2024

我将 DNS 模块的 default-nameserver 换成了国内的两个 DNS,重新测试原始配置文件+DNS 模块和含代理的配置+TUN+DNS 模块两种情况的结果。两种情况都是触发 SERVFAIL,且即便 flush 的路由表仍然会出现问题(因为 route -n flush 没法使用,我用的是 sudo ip route flush table main)。附上这次测试原始配置文件+DNS 模块的日志:

INFO[2024-11-14T16:30:58.546374483+08:00] Start initial configuration in progress
INFO[2024-11-14T16:30:58.546510827+08:00] Geodata Loader mode: memconservative
INFO[2024-11-14T16:30:58.546518748+08:00] Geosite Matcher implementation: succinct
INFO[2024-11-14T16:30:58.54680507+08:00] Initial configuration complete, total time: 0ms
INFO[2024-11-14T16:30:58.57445455+08:00] Sniffer is closed
INFO[2024-11-14T16:30:58.574601415+08:00] DNS server listening at: [::]:1053
WARN[2024-11-14T16:30:58.575043385+08:00] [TUN] default interface changed by monitor,  => wlp1s0
DEBU[2024-11-14T16:30:58.579369956+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:52660
DEBU[2024-11-14T16:30:58.579605671+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:43559
DEBU[2024-11-14T16:30:58.579696415+08:00] [DNS] resolve www.googleapis.com A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:30:58.579714576+08:00] creating a new http client
DEBU[2024-11-14T16:30:58.579729834+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:30:58.579849173+08:00] [DNS] resolve cloudflare-dns.com A from udp://119.29.29.29:53
DEBU[2024-11-14T16:30:58.579895478+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:40488
DEBU[2024-11-14T16:30:58.579962999+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:57723
DEBU[2024-11-14T16:30:58.580065503+08:00] [DNS] resolve cloudflare-dns.com A from udp://223.5.5.5:53
DEBU[2024-11-14T16:30:58.580180258+08:00] [DNS] resolve cloudflare-dns.com AAAA from udp://223.5.5.5:53
DEBU[2024-11-14T16:30:58.580288214+08:00] [DNS] resolve cloudflare-dns.com AAAA from udp://119.29.29.29:53
DEBU[2024-11-14T16:30:58.580321627+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50460
DEBU[2024-11-14T16:30:58.580376479+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:52672
DEBU[2024-11-14T16:30:58.580377692+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:52535
DEBU[2024-11-14T16:30:58.580385539+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38681
DEBU[2024-11-14T16:30:58.586953531+08:00] [DNS] cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A from udp://119.29.29.29:53
DEBU[2024-11-14T16:30:58.587178988+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42619
DEBU[2024-11-14T16:30:58.587281127+08:00] [DNS] resolve ping.archlinux.org A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:30:58.587368507+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50915
DEBU[2024-11-14T16:30:58.588243241+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58364
DEBU[2024-11-14T16:30:58.588303648+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54999
DEBU[2024-11-14T16:30:58.589406765+08:00] [DNS] cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA from udp://223.5.5.5:53
INFO[2024-11-14T16:30:58.589886817+08:00] [TUN] Tun adapter listening at: Meta([198.18.0.1/30],[fdfe:dcba:9876::1/126]), mtu: 9000, auto route: true, auto redir: true, ip stack: Mixed
INFO[2024-11-14T16:30:58.591381724+08:00] Start initial Compatible provider default
DEBU[2024-11-14T16:30:58.624257171+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41796
DEBU[2024-11-14T16:30:58.62434158+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44957
DEBU[2024-11-14T16:30:59.62527427+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:52606
DEBU[2024-11-14T16:30:59.625345484+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:46665
DEBU[2024-11-14T16:30:59.930451176+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:46193
DEBU[2024-11-14T16:30:59.930675888+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58269
DEBU[2024-11-14T16:30:59.930803464+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:51894
DEBU[2024-11-14T16:30:59.931091885+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58214
DEBU[2024-11-14T16:30:59.932217283+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:43830
DEBU[2024-11-14T16:30:59.932629514+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49188
DEBU[2024-11-14T16:30:59.933199144+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:34359
DEBU[2024-11-14T16:30:59.933541333+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:51186
DEBU[2024-11-14T16:31:01.327433784+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54314
DEBU[2024-11-14T16:31:01.327544556+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41481
DEBU[2024-11-14T16:31:01.327590374+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:60295
DEBU[2024-11-14T16:31:01.327659678+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:36102
DEBU[2024-11-14T16:31:01.32809698+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:55395
DEBU[2024-11-14T16:31:01.328151454+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58057
DEBU[2024-11-14T16:31:01.328227367+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:56320
DEBU[2024-11-14T16:31:01.328280995+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41862
DEBU[2024-11-14T16:31:01.62550503+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:52016
DEBU[2024-11-14T16:31:01.625930615+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45232
DEBU[2024-11-14T16:31:02.930894633+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45146
DEBU[2024-11-14T16:31:02.931057126+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58703
DEBU[2024-11-14T16:31:02.93123856+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:46680
DEBU[2024-11-14T16:31:02.931723717+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45207
DEBU[2024-11-14T16:31:02.93239363+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:35437
DEBU[2024-11-14T16:31:02.932637395+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47231
DEBU[2024-11-14T16:31:02.933155644+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44349
DEBU[2024-11-14T16:31:02.933264164+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50793
DEBU[2024-11-14T16:31:03.580479703+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:03.580645025+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:03.580646917+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:03.580653405+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:03.581035798+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54795
DEBU[2024-11-14T16:31:03.580657798+08:00] [DNS] resolve www.googleapis.com A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:03.581123264+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:40674
DEBU[2024-11-14T16:31:03.5814163+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47016
DEBU[2024-11-14T16:31:03.581456541+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45888
DEBU[2024-11-14T16:31:03.580661557+08:00] [DNS] resolve www.googleapis.com A from tls://8.8.4.4:853
DEBU[2024-11-14T16:31:03.58179427+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.58202861+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.58203162+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.582039246+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.582040535+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.582044699+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.582884138+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50595
DEBU[2024-11-14T16:31:03.582961713+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:52298
DEBU[2024-11-14T16:31:03.583021303+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47362
DEBU[2024-11-14T16:31:03.582047332+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.58319969+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:39632
DEBU[2024-11-14T16:31:03.582081732+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.582059571+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.582048684+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.582054319+08:00] [DNS] resolve www.googleapis.com A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:03.582067569+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.583648713+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49283
DEBU[2024-11-14T16:31:03.582060691+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.583777146+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:51274
DEBU[2024-11-14T16:31:03.583894065+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:46743
DEBU[2024-11-14T16:31:03.583523488+08:00] creating a new http client
DEBU[2024-11-14T16:31:03.584049587+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:48198
DEBU[2024-11-14T16:31:03.584099727+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:03.582064433+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.582053947+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.582074985+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.582078258+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:03.584370089+08:00] [DNS] cache hit cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A, expire at 2024-11-14 16:35:58
DEBU[2024-11-14T16:31:03.584649909+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42974
DEBU[2024-11-14T16:31:03.584702618+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54123
DEBU[2024-11-14T16:31:03.584768453+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:37151
DEBU[2024-11-14T16:31:03.584418487+08:00] [DNS] cache hit cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA, expire at 2024-11-14 16:35:07
DEBU[2024-11-14T16:31:03.584950391+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:59922
DEBU[2024-11-14T16:31:03.588102448+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:03.588222613+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:03.588234266+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABHBpbmcJYXJjaGxpbnV4A29yZwAAAQAB": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)
DEBU[2024-11-14T16:31:03.588375194+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:03.58849735+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABHBpbmcJYXJjaGxpbnV4A29yZwAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:03.588526791+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:03.58859352+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:03.588710936+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47776
DEBU[2024-11-14T16:31:03.588714506+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:03.588736398+08:00] [DNS] resolve ping.archlinux.org A from tls://8.8.4.4:853
DEBU[2024-11-14T16:31:03.588770702+08:00] [DNS] resolve ping.archlinux.org A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:03.589219766+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 8.8.4.4:853: i/o timeout
DEBU[2024-11-14T16:31:03.58937462+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 8.8.4.4:853: i/o timeout
DEBU[2024-11-14T16:31:03.589403715+08:00] [DNS] resolve ping.archlinux.org A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:03.589376287+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 8.8.4.4:853: i/o timeout
DEBU[2024-11-14T16:31:03.589383313+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 8.8.4.4:853: i/o timeout
DEBU[2024-11-14T16:31:03.589389557+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 8.8.4.4:853: i/o timeout
DEBU[2024-11-14T16:31:03.589675215+08:00] [DNS] cache hit cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA, expire at 2024-11-14 16:35:07
DEBU[2024-11-14T16:31:03.589649344+08:00] [DNS] cache hit cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A, expire at 2024-11-14 16:35:58
DEBU[2024-11-14T16:31:03.58940055+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 8.8.4.4:853: i/o timeout
DEBU[2024-11-14T16:31:03.589398098+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 8.8.4.4:853: i/o timeout
DEBU[2024-11-14T16:31:05.624354915+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:55625
DEBU[2024-11-14T16:31:05.624429317+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:33632
DEBU[2024-11-14T16:31:07.026011735+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38589
DEBU[2024-11-14T16:31:07.097810319+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58819
DEBU[2024-11-14T16:31:07.097880855+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42249
DEBU[2024-11-14T16:31:07.097897402+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:46909
DEBU[2024-11-14T16:31:07.099768648+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50147
DEBU[2024-11-14T16:31:07.116699046+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44016
DEBU[2024-11-14T16:31:07.116811557+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:37503
DEBU[2024-11-14T16:31:07.116846822+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49673
DEBU[2024-11-14T16:31:07.116857037+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:53346
WARN[2024-11-14T16:31:07.581216519+08:00] [TUN] Auto detect interface by 0.0.0.0 get empty name.
WARN[2024-11-14T16:31:07.581246766+08:00] [TUN] Auto detect interface by :: get empty name.
WARN[2024-11-14T16:31:07.581256981+08:00] [TUN] Auto detect interface by 1.1.1.1 get empty name.
DEBU[2024-11-14T16:31:08.582251581+08:00] [DNS] resolve www.googleapis.com A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:08.582371542+08:00] [DNS] resolve www.googleapis.com A from tls://8.8.4.4:853
DEBU[2024-11-14T16:31:08.582978745+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.583186198+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.583199762+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.583208714+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.583855297+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:59477
DEBU[2024-11-14T16:31:08.583214574+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.584113303+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:60720
DEBU[2024-11-14T16:31:08.583214935+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.58322069+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.583226948+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.584704546+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42635
DEBU[2024-11-14T16:31:08.583238019+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.58324307+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.583232234+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.583251616+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.58326109+08:00] [DNS] resolve www.googleapis.com A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:08.58322607+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.583259987+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.585379641+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45636
DEBU[2024-11-14T16:31:08.583266888+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.583250621+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.589764005+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABHBpbmcJYXJjaGxpbnV4A29yZwAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:08.590097158+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:08.590169556+08:00] [DNS] cache hit cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A, expire at 2024-11-14 16:35:58
DEBU[2024-11-14T16:31:08.59021653+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABHBpbmcJYXJjaGxpbnV4A29yZwAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:08.590231314+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:08.590239129+08:00] [DNS] cache hit cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA, expire at 2024-11-14 16:35:07
DEBU[2024-11-14T16:31:08.590321004+08:00] [DNS] resolve ping.archlinux.org A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:08.590399807+08:00] [DNS] resolve ping.archlinux.org A from tls://8.8.4.4:853
DEBU[2024-11-14T16:31:08.590485064+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.590625781+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.590641207+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:08.590686989+08:00] [DNS] resolve ping.archlinux.org A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:08.590785149+08:00] [DNS] cache hit cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A, expire at 2024-11-14 16:35:58
DEBU[2024-11-14T16:31:08.590813802+08:00] [DNS] cache hit cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA, expire at 2024-11-14 16:35:07
DEBU[2024-11-14T16:31:10.498404865+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:48619
DEBU[2024-11-14T16:31:10.49873814+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47677
DEBU[2024-11-14T16:31:10.49910478+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:34652
DEBU[2024-11-14T16:31:10.499307243+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38798
DEBU[2024-11-14T16:31:10.498788953+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:35249
DEBU[2024-11-14T16:31:10.499525918+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54524
DEBU[2024-11-14T16:31:10.498868714+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:37839
DEBU[2024-11-14T16:31:10.498960681+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:51258
DEBU[2024-11-14T16:31:10.500828778+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:35834
DEBU[2024-11-14T16:31:10.501048801+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:43073
DEBU[2024-11-14T16:31:10.502139906+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:37018
DEBU[2024-11-14T16:31:10.50224549+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44587
DEBU[2024-11-14T16:31:10.502238258+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:55190
DEBU[2024-11-14T16:31:10.502247182+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:56717
DEBU[2024-11-14T16:31:10.502844083+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:57737
DEBU[2024-11-14T16:31:10.503176689+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:60388
DEBU[2024-11-14T16:31:10.548708668+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:48643
DEBU[2024-11-14T16:31:10.548819647+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:48286
DEBU[2024-11-14T16:31:10.548843878+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49288
DEBU[2024-11-14T16:31:10.548857002+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47921
DEBU[2024-11-14T16:31:10.548832411+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:39152
DEBU[2024-11-14T16:31:10.548825853+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:53668
DEBU[2024-11-14T16:31:10.549120012+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:52349
DEBU[2024-11-14T16:31:10.549509074+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:34224
DEBU[2024-11-14T16:31:10.549857608+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54658
DEBU[2024-11-14T16:31:11.550785774+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:33715
DEBU[2024-11-14T16:31:11.551247552+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50081
DEBU[2024-11-14T16:31:11.928654406+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58792
DEBU[2024-11-14T16:31:11.928700157+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:59551
DEBU[2024-11-14T16:31:11.928725264+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:53004
DEBU[2024-11-14T16:31:11.928761776+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:59909
DEBU[2024-11-14T16:31:11.929197673+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38124
DEBU[2024-11-14T16:31:11.929245806+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49572
DEBU[2024-11-14T16:31:11.929527658+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:60759
DEBU[2024-11-14T16:31:11.929943272+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:43664
DEBU[2024-11-14T16:31:13.550490948+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:59350
DEBU[2024-11-14T16:31:13.550828774+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44700
DEBU[2024-11-14T16:31:13.58415959+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAAA3d3dwpnb29nbGVhcGlzA2NvbQAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:13.584226229+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:13.584237768+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:13.584503973+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:13.584837409+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAAA3d3dwpnb29nbGVhcGlzA2NvbQAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:13.584910722+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:13.585145957+08:00] [DNS] resolve www.googleapis.com A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:13.585225333+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:13.585237615+08:00] [DNS] resolve www.googleapis.com A from tls://8.8.4.4:853
DEBU[2024-11-14T16:31:13.585720194+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:13.585990958+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.585653288+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45547
DEBU[2024-11-14T16:31:13.586289447+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.586404757+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.586536612+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.586676782+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:55391
DEBU[2024-11-14T16:31:13.586293769+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.587043285+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41954
DEBU[2024-11-14T16:31:13.586313845+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50208
DEBU[2024-11-14T16:31:13.587308284+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42847
DEBU[2024-11-14T16:31:13.586305858+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.586372967+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.586389556+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.585959886+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.587929209+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:51837
DEBU[2024-11-14T16:31:13.588021679+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50894
DEBU[2024-11-14T16:31:13.586349722+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.586356381+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.587470765+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:34786
DEBU[2024-11-14T16:31:13.58633513+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.588670738+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58742
DEBU[2024-11-14T16:31:13.587766394+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47560
DEBU[2024-11-14T16:31:13.586381925+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.58636431+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.588841847+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54354
DEBU[2024-11-14T16:31:13.58639736+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.588848422+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:35443
DEBU[2024-11-14T16:31:13.588858174+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50597
DEBU[2024-11-14T16:31:13.588852916+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49915
DEBU[2024-11-14T16:31:13.588863529+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:39812
DEBU[2024-11-14T16:31:13.588868216+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:34911
DEBU[2024-11-14T16:31:13.5890069+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47322
DEBU[2024-11-14T16:31:13.58941581+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54607
DEBU[2024-11-14T16:31:13.589311411+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:54788
DEBU[2024-11-14T16:31:13.589276689+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49206
DEBU[2024-11-14T16:31:13.589327287+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:40143
DEBU[2024-11-14T16:31:13.586326505+08:00] [DNS] resolve www.googleapis.com A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:13.58954815+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:37273
DEBU[2024-11-14T16:31:13.586343008+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.589682922+08:00] [DNS] cache hit cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A, expire at 2024-11-14 16:35:58
DEBU[2024-11-14T16:31:13.589705437+08:00] [DNS] cache hit cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA, expire at 2024-11-14 16:35:07
DEBU[2024-11-14T16:31:13.589836702+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41232
DEBU[2024-11-14T16:31:13.590003551+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41224
DEBU[2024-11-14T16:31:13.591129195+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABHBpbmcJYXJjaGxpbnV4A29yZwAAAQAB": context deadline exceeded (Client.Timeout exceeded while awaiting headers)
DEBU[2024-11-14T16:31:13.59115476+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:13.591207555+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABHBpbmcJYXJjaGxpbnV4A29yZwAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:13.591219657+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:13.591276656+08:00] [DNS] resolve ping.archlinux.org A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:13.591317776+08:00] [DNS] resolve ping.archlinux.org A from tls://8.8.4.4:853
DEBU[2024-11-14T16:31:13.591390902+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.591464331+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.591476121+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.591475218+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.591473652+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.591479818+08:00] [DNS] resolve ping.archlinux.org A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:13.59149501+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:13.591765161+08:00] [DNS] cache hit cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A, expire at 2024-11-14 16:35:58
DEBU[2024-11-14T16:31:13.591792558+08:00] [DNS] cache hit cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA, expire at 2024-11-14 16:35:07
DEBU[2024-11-14T16:31:13.623707383+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:40851
DEBU[2024-11-14T16:31:13.624337359+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49330
DEBU[2024-11-14T16:31:17.248211693+08:00] [DNS] resolve google.com A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:17.550865853+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:43147
DEBU[2024-11-14T16:31:17.550977967+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:34548
DEBU[2024-11-14T16:31:18.587498603+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.587833405+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.587830278+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAAA3d3dwpnb29nbGVhcGlzA2NvbQAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:18.587897316+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.588450833+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:48665
DEBU[2024-11-14T16:31:18.588677705+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.588247288+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:18.588917533+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:52240
DEBU[2024-11-14T16:31:18.589094626+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.589419815+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.589663305+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.589760906+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.589979596+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.589840935+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAAA3d3dwpnb29nbGVhcGlzA2NvbQAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:18.588319576+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.588994658+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.589865411+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.590141123+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:18.590141922+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.589866068+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.592188646+08:00] [DNS] resolve www.googleapis.com A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:18.590149726+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.592281996+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABHBpbmcJYXJjaGxpbnV4A29yZwAAAQAB": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)
DEBU[2024-11-14T16:31:18.592302737+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:18.590157396+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.590160249+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.592527345+08:00] [DNS] resolve www.googleapis.com A from tls://8.8.4.4:853
DEBU[2024-11-14T16:31:18.593389094+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:39631
DEBU[2024-11-14T16:31:18.592540091+08:00] [DNS] cache hit cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA, expire at 2024-11-14 16:35:07
DEBU[2024-11-14T16:31:18.590165392+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42760
DEBU[2024-11-14T16:31:18.590156415+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.590165268+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.592570145+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:50148
DEBU[2024-11-14T16:31:18.592572885+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:34486
DEBU[2024-11-14T16:31:18.593650743+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:18.592953306+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:34684
DEBU[2024-11-14T16:31:18.592600984+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44118
DEBU[2024-11-14T16:31:18.593963973+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:57634
DEBU[2024-11-14T16:31:18.59259478+08:00] [DNS] cache hit cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A, expire at 2024-11-14 16:35:58
DEBU[2024-11-14T16:31:18.593589083+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:18.590163684+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:18.592580968+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:40224
DEBU[2024-11-14T16:31:18.594218671+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:46638
DEBU[2024-11-14T16:31:18.592575448+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:51355
DEBU[2024-11-14T16:31:18.594402253+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58188
DEBU[2024-11-14T16:31:18.594821962+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38759
DEBU[2024-11-14T16:31:18.592583155+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:58019
DEBU[2024-11-14T16:31:18.594887249+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:40523
DEBU[2024-11-14T16:31:18.592717178+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABHBpbmcJYXJjaGxpbnV4A29yZwAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:18.594882812+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:36512
DEBU[2024-11-14T16:31:18.593582961+08:00] [DNS] resolve www.googleapis.com A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:18.592599905+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41856
DEBU[2024-11-14T16:31:18.594108948+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:45494
DEBU[2024-11-14T16:31:18.59416155+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:36498
DEBU[2024-11-14T16:31:18.594961889+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:18.592567188+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:35889
DEBU[2024-11-14T16:31:18.592581825+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:37799
DEBU[2024-11-14T16:31:18.595275925+08:00] [DNS] resolve ping.archlinux.org A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:18.595357784+08:00] [DNS] cache hit cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A, expire at 2024-11-14 16:35:58
DEBU[2024-11-14T16:31:18.594885437+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:39206
DEBU[2024-11-14T16:31:18.59257532+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42770
DEBU[2024-11-14T16:31:18.59528072+08:00] [DNS] resolve ping.archlinux.org A from tls://8.8.4.4:853
DEBU[2024-11-14T16:31:18.592578286+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42907
DEBU[2024-11-14T16:31:18.595402091+08:00] [DNS] cache hit cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA, expire at 2024-11-14 16:35:07
DEBU[2024-11-14T16:31:18.595533646+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:18.595574427+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:18.592744428+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38202
DEBU[2024-11-14T16:31:18.595575472+08:00] [DNS] resolve ping.archlinux.org A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:18.594300311+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:40409
DEBU[2024-11-14T16:31:18.595578438+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:18.59557994+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:22.248389863+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABmdvb2dsZQNjb20AAAEAAQ": context deadline exceeded (Client.Timeout exceeded while awaiting headers)
DEBU[2024-11-14T16:31:22.248467172+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:22.248734761+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABmdvb2dsZQNjb20AAAEAAQ": context deadline exceeded
DEBU[2024-11-14T16:31:22.24879749+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:22.249000453+08:00] [DNS] resolve google.com A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:22.249130791+08:00] [DNS] resolve google.com A from tls://8.8.4.4:853
DEBU[2024-11-14T16:31:22.249457172+08:00] [DNS Server] Exchange ;google.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:22.249699742+08:00] [DNS] resolve google.com A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:22.250205438+08:00] [DNS] cache hit cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A, expire at 2024-11-14 16:35:58
DEBU[2024-11-14T16:31:22.250343858+08:00] [DNS] cache hit cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA, expire at 2024-11-14 16:35:07
DEBU[2024-11-14T16:31:23.594877085+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.595077716+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.595143163+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.595294292+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.595225194+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.595622507+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.595294911+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.595869496+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:43404
DEBU[2024-11-14T16:31:23.595239839+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAAA3d3dwpnb29nbGVhcGlzA2NvbQAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:23.596013813+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:47484
DEBU[2024-11-14T16:31:23.596079537+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.596211862+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.595257949+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.596122418+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:42866
DEBU[2024-11-14T16:31:23.595295316+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.595091733+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.595125675+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.596023801+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:23.596059525+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context deadline exceeded
DEBU[2024-11-14T16:31:23.597145557+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABHBpbmcJYXJjaGxpbnV4A29yZwAAAQAB": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)
DEBU[2024-11-14T16:31:23.597088041+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:49735
DEBU[2024-11-14T16:31:23.596104139+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:33329
DEBU[2024-11-14T16:31:23.596180846+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:41024
DEBU[2024-11-14T16:31:23.597237496+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:23.597104208+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:57014
DEBU[2024-11-14T16:31:23.5977833+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAAA3d3dwpnb29nbGVhcGlzA2NvbQAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:23.597856502+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:23.597378007+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:38224
DEBU[2024-11-14T16:31:23.597944401+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:35554
DEBU[2024-11-14T16:31:23.598076038+08:00] [DNS] resolve www.googleapis.com A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:23.597990471+08:00] re-creating the http client due to requesting https://cloudflare-dns.com:443/dns-query: Get "https://cloudflare-dns.com:443/dns-query?dns=AAABAAABAAAAAAAABHBpbmcJYXJjaGxpbnV4A29yZwAAAQAB": context deadline exceeded
DEBU[2024-11-14T16:31:23.598458226+08:00] [https://cloudflare-dns.com:443/dns-query] using HTTP/2 for this upstream: <nil>
DEBU[2024-11-14T16:31:23.598095928+08:00] [DNS] resolve www.googleapis.com A from tls://8.8.4.4:853
DEBU[2024-11-14T16:31:23.597948913+08:00] [DNS] hijack udp:10.248.98.30:53 from 198.18.0.1:44204
DEBU[2024-11-14T16:31:23.598744985+08:00] [DNS] resolve ping.archlinux.org A from tls://1.1.1.1:853
DEBU[2024-11-14T16:31:23.598833416+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.598922131+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.599068724+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.599123601+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.598850866+08:00] [DNS] resolve www.googleapis.com A from https://cloudflare-dns.com:443/dns-query
DEBU[2024-11-14T16:31:23.599074432+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.598815195+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.59968558+08:00] [DNS] cache hit cloudflare-dns.com --> [2606:4700::6810:f9f9 2606:4700::6810:f8f9] AAAA, expire at 2024-11-14 16:35:07
DEBU[2024-11-14T16:31:23.599637739+08:00] [DNS] cache hit cloudflare-dns.com --> [104.16.248.249 104.16.249.249] A, expire at 2024-11-14 16:35:58
DEBU[2024-11-14T16:31:23.598883376+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.598894714+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.599083476+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.599090238+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.599120008+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 1.1.1.1:853: i/o timeout
DEBU[2024-11-14T16:31:23.598779171+08:00] [DNS] resolve ping.archlinux.org A from tls://8.8.4.4:853
^CDEBU[2024-11-14T16:31:24.797700188+08:00] [DNS Server] Exchange ;www.googleapis.com.	IN	 A failed: context canceled
WARN[2024-11-14T16:31:24.816922981+08:00] Mihomo shutting down

具体是哪个域名出现了,还是说都出现了 SERVFAIL

	 A failed: all DNS requests failed, first error: connect failed: dial tcp 8.8.4.4:853: i/o timeout
DEBU[2024-11-14T16:31:03.589389557+08:00] [DNS Server] Exchange ;ping.archlinux.org.	IN	 A failed: all DNS requests failed, first error: connect failed: dial tcp 8.8.4.4:853: i/o timeout

这里面大量包含了这类错误,说明根本连接不上服务器。我指的不用国外 DNS 是说的所有 DNS 设置,如果你不能保证链接就不应该使用

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants