Преглед на файлове

feat(mode_workflow): 实现知识检索接口的同源反向代理

修改知识检索后端的接入方式,通过同源反向代理规避混合内容和跨域问题
新增`_proxy_knowledge`方法处理`/api/v1/knowledge`相关请求
适配GET和POST两种请求方式,透传原始请求体和响应内容
优化搜索页面加载逻辑,直接返回原始HTML文件
更新相关注释说明反向代理的优势
刘文武 преди 1 ден
родител
ревизия
ae2deecce1

+ 52 - 0
examples/mode_workflow/.server_8772.out

@@ -0,0 +1,52 @@
+----------------------------------------
+Exception occurred during processing of request from ('127.0.0.1', 56682)
+Traceback (most recent call last):
+  File "/Users/max_liu/max_liu/company/Agent/examples/mode_workflow/server.py", line 301, in do_GET
+    self._json(_dashboard())
+    ~~~~~~~~~~^^^^^^^^^^^^^^
+  File "/Users/max_liu/max_liu/company/Agent/examples/mode_workflow/server.py", line 244, in _json
+    self.wfile.write(body)
+    ~~~~~~~~~~~~~~~~^^^^^^
+  File "/usr/local/anaconda3/lib/python3.13/socketserver.py", line 845, in write
+    self._sock.sendall(b)
+    ~~~~~~~~~~~~~~~~~~^^^
+BrokenPipeError: [Errno 32] Broken pipe
+
+During handling of the above exception, another exception occurred:
+
+Traceback (most recent call last):
+  File "/usr/local/anaconda3/lib/python3.13/socketserver.py", line 697, in process_request_thread
+    self.finish_request(request, client_address)
+    ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^
+  File "/usr/local/anaconda3/lib/python3.13/socketserver.py", line 362, in finish_request
+    self.RequestHandlerClass(request, client_address, self)
+    ~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+  File "/usr/local/anaconda3/lib/python3.13/socketserver.py", line 766, in __init__
+    self.handle()
+    ~~~~~~~~~~~^^
+  File "/usr/local/anaconda3/lib/python3.13/http/server.py", line 436, in handle
+    self.handle_one_request()
+    ~~~~~~~~~~~~~~~~~~~~~~~^^
+  File "/usr/local/anaconda3/lib/python3.13/http/server.py", line 424, in handle_one_request
+    method()
+    ~~~~~~^^
+  File "/Users/max_liu/max_liu/company/Agent/examples/mode_workflow/server.py", line 324, in do_GET
+    self._err(f"{type(e).__name__}: {e}", 500)
+    ~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+  File "/Users/max_liu/max_liu/company/Agent/examples/mode_workflow/server.py", line 247, in _err
+    self._json({"error": msg}, code)
+    ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^
+  File "/Users/max_liu/max_liu/company/Agent/examples/mode_workflow/server.py", line 243, in _json
+    self.end_headers()
+    ~~~~~~~~~~~~~~~~^^
+  File "/usr/local/anaconda3/lib/python3.13/http/server.py", line 538, in end_headers
+    self.flush_headers()
+    ~~~~~~~~~~~~~~~~~~^^
+  File "/usr/local/anaconda3/lib/python3.13/http/server.py", line 542, in flush_headers
+    self.wfile.write(b"".join(self._headers_buffer))
+    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+  File "/usr/local/anaconda3/lib/python3.13/socketserver.py", line 845, in write
+    self._sock.sendall(b)
+    ~~~~~~~~~~~~~~~~~~^^^
+BrokenPipeError: [Errno 32] Broken pipe
+----------------------------------------

Файловите разлики са ограничени, защото са твърде много
+ 1902 - 543
examples/mode_workflow/index.html


+ 48 - 11
examples/mode_workflow/server.py

@@ -21,6 +21,8 @@ from datetime import datetime
 from http.server import BaseHTTPRequestHandler, ThreadingHTTPServer
 from pathlib import Path
 from urllib.parse import urlparse, parse_qs
+import urllib.request
+import urllib.error
 
 try:
     sys.stdout.reconfigure(encoding="utf-8")
@@ -35,20 +37,17 @@ PORT = int(sys.argv[1]) if len(sys.argv) > 1 else 8772
 MATRIX_FILE = HERE / "reference" / "judged_matrix.json"
 LOG_DIR = HERE / "runs" / "logs"
 
-# 知识检索 API 域名:从 .env 的 KNOWLEDGE_API_BASE 读取(db.py 已 load_dotenv)。
-# search.html 内写的是相对路径 '/api/v1/knowledge';serve 时把它替换成绝对地址,
-# 这样页面由本服务托管、接口仍打到独立的知识检索后端。
+# 知识检索后端地址:从 .env 的 KNOWLEDGE_API_BASE 读取(db.py 已 load_dotenv)。
+# 注意:不能把它注入到 search.html 让浏览器直连——后端是明文 http://,而页面
+# 经 Cloudflare 隧道是 https://,浏览器会以「混合内容(Mixed Content)」拦截请求。
+# 因此 search.html 保持相对路径 '/api/v1/knowledge',由本服务同源反代到后端,
+# 这样既无混合内容、也无跨域(CORS)问题。
 KNOWLEDGE_API_BASE = os.getenv("KNOWLEDGE_API_BASE", "").rstrip("/")
 
 
 def _render_search_html():
-    html = (HERE / "search.html").read_text(encoding="utf-8")
-    if KNOWLEDGE_API_BASE:
-        html = html.replace(
-            "const API = '/api/v1/knowledge';",
-            f"const API = '{KNOWLEDGE_API_BASE}/api/v1/knowledge';",
-        )
-    return html.encode("utf-8")
+    # 保持相对路径,接口走本服务的 /api/v1/knowledge 反向代理。
+    return (HERE / "search.html").read_bytes()
 
 # ── 任务管理:task_id → {proc, log, status} ──────────────────────────────────
 TASKS = {}
@@ -247,6 +246,35 @@ class Handler(BaseHTTPRequestHandler):
     def _err(self, msg, code=400):
         self._json({"error": msg}, code)
 
+    def _proxy_knowledge(self, body=None):
+        """把 /api/v1/knowledge* 同源反代到 KNOWLEDGE_API_BASE(明文后端)。
+        浏览器只跟本服务(经隧道走 https)通信,规避混合内容 + 跨域。"""
+        if not KNOWLEDGE_API_BASE:
+            return self._err("KNOWLEDGE_API_BASE 未配置", 502)
+        target = KNOWLEDGE_API_BASE + self.path  # self.path 含 query string
+        headers = {}
+        ct = self.headers.get("Content-Type")
+        if ct:
+            headers["Content-Type"] = ct
+        req = urllib.request.Request(target, data=body, headers=headers,
+                                     method=self.command)
+        try:
+            with urllib.request.urlopen(req, timeout=120) as resp:
+                payload = resp.read()
+                code = resp.status
+                rct = resp.headers.get("Content-Type", "application/json; charset=utf-8")
+        except urllib.error.HTTPError as e:
+            payload = e.read()
+            code = e.code
+            rct = e.headers.get("Content-Type", "application/json; charset=utf-8")
+        except Exception as e:
+            return self._err(f"知识检索后端不可达:{type(e).__name__}: {e}", 502)
+        self.send_response(code)
+        self.send_header("Content-Type", rct)
+        self.send_header("Content-Length", str(len(payload)))
+        self.end_headers()
+        self.wfile.write(payload)
+
     def do_GET(self):
         u = urlparse(self.path)
         qs = {k: v[0] for k, v in parse_qs(u.query).items()}
@@ -288,6 +316,8 @@ class Handler(BaseHTTPRequestHandler):
             elif u.path == "/api/task_status":
                 r = _task_status(qs.get("task_id", ""))
                 self._json(r) if r else self._err("未知 task_id", 404)
+            elif u.path.startswith("/api/v1/knowledge"):
+                self._proxy_knowledge()
             else:
                 self._err("not found", 404)
         except Exception as e:
@@ -297,7 +327,14 @@ class Handler(BaseHTTPRequestHandler):
         u = urlparse(self.path)
         try:
             n = int(self.headers.get("Content-Length") or 0)
-            payload = json.loads(self.rfile.read(n) or b"{}")
+            raw = self.rfile.read(n)
+        except Exception:
+            return self._err("读取请求体失败")
+        # 知识检索接口:原样反代到后端,不在本服务做 JSON 解析
+        if u.path.startswith("/api/v1/knowledge"):
+            return self._proxy_knowledge(body=raw)
+        try:
+            payload = json.loads(raw or b"{}")
         except Exception:
             return self._err("body 必须是 JSON")
         try:

+ 105 - 0
examples/process_pipeline/script/search_eval/fixed_query_eval/.cloudflared.log

@@ -4368,3 +4368,108 @@
 2026-06-15T07:47:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
 2026-06-15T07:47:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
 2026-06-15T07:47:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T07:47:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T07:47:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T07:47:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T07:47:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T07:47:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T07:47:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T07:52:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T07:52:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T07:52:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T07:52:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T07:52:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T07:57:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T07:57:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T07:57:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T07:57:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T07:57:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:01:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:01:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:01:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:01:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:02:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:03:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:03:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:03:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:03:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:03:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:04:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:04:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:04:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:04:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:04:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:08:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:08:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:08:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:08:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:08:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:13:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:13:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:13:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:13:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:13:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:16:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:16:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:16:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:16:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:17:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:18:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:18:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:18:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:18:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:19:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:23:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:23:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:23:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:23:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:24:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:27:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:27:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:27:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:27:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:27:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:28:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:28:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:28:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:28:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:29:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:34:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:34:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:34:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:34:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:34:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:38:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:38:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:38:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:38:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:39:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:39:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:39:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:39:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:39:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:40:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:42:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:42:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:42:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:42:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:43:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:45:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:45:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:45:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:45:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:45:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:48:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:48:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:48:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:48:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:48:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:50:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:50:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:50:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:50:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:50:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:50:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:50:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:50:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
+2026-06-15T08:50:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7

+ 240 - 125
examples/process_pipeline/script/search_eval/mode_procedure/.cloudflared.log

@@ -4334,132 +4334,132 @@
 2026-06-15T07:46:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
 2026-06-15T07:46:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
 2026-06-15T07:46:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T07:49:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T07:49:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T07:49:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T07:49:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T07:49:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T07:49:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T07:49:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T07:49:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T07:49:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T07:49:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T07:53:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T07:53:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T07:53:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T07:53:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T07:54:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T07:54:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T07:54:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T07:54:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T07:54:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T07:54:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T07:56:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T07:56:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T07:56:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T07:56:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T07:57:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T07:57:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T07:57:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T07:57:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T07:57:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T07:57:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:01:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:01:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:01:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:01:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:01:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:02:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:02:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:02:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:02:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:02:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:03:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:03:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:03:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:03:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:04:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:07:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:07:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:07:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:07:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:08:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:12:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:12:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:12:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:12:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:12:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:16:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:16:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:16:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:16:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:16:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:16:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:16:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:16:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:16:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:16:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:19:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:19:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:19:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:19:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:20:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:20:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:20:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:20:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:20:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:21:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:25:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:25:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:25:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:25:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:25:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:25:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:25:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:25:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:25:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:26:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:26:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:26:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:26:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:26:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:26:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:29:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:29:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:29:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:29:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:29:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:33:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:33:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:33:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:33:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:33:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:38:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:38:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:38:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:38:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:38:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:40:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:40:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:40:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:40:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:40:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:43:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:43:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:43:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:43:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:43:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:44:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:44:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:44:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:44:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:44:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:46:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:46:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:46:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:46:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
+2026-06-15T08:47:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
  from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T18:45:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T18:45:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:46:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T18:46:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:46:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T18:46:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T18:46:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:48:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T18:48:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:48:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T18:48:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T18:48:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:52:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T18:52:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:52:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T18:52:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T18:52:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:57:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T18:57:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:57:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T18:57:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T18:57:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:57:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T18:57:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:57:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T18:57:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T18:57:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:59:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:00:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:00:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:00:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:00:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:04:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:04:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:04:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:04:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:04:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:06:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:06:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:06:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:06:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:06:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:11:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:11:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:11:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:11:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:11:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:11:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:11:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:11:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:11:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:12:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:16:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:16:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:16:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:16:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:17:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:20:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:20:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:20:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:20:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:20:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:21:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:21:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:21:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:21:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:21:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:26:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:26:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:26:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:26:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:26:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:29:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:29:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:29:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:29:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:29:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:30:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:30:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:30:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:30:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:30:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:34:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:34:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:34:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:34:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:35:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:36:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:36:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:36:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:36:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:37:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:40:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:40:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:40:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:40:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:41:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:45:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:45:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:45:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:45:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:46:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:48:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:48:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:48:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:48:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:49:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:51:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:51:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:51:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:51:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:51:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:56:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:56:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:56:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:56:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T19:56:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:01:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T20:01:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:01:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T20:01:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T20:01:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:03:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T20:03:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:03:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
 2026-06-13T20:03:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
 2026-06-13T20:04:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
 2026-06-13T20:06:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
@@ -5882,3 +5882,118 @@
 2026-06-15T07:46:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
 2026-06-15T07:46:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
 2026-06-15T07:46:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T07:49:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T07:49:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T07:49:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T07:49:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T07:49:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T07:52:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T07:52:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T07:52:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T07:52:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T07:52:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T07:53:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T07:53:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T07:53:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T07:53:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T07:53:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T07:56:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T07:56:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T07:56:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T07:56:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T07:57:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T07:59:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:00:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:00:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:00:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:00:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:04:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:04:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:04:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:04:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:05:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:08:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:08:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:08:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:08:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:08:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:12:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:12:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:12:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:12:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:12:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:13:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:13:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:13:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:13:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:13:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:17:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:17:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:17:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:17:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:18:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:21:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:21:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:21:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:21:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:21:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:22:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:22:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:22:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:22:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:22:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:25:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:25:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:25:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:25:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:25:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:26:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:26:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:26:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:26:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:26:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:29:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:29:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:29:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:29:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:29:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:33:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:33:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:33:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:33:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:33:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:37:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:37:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:37:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:37:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:37:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:38:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:38:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:38:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:38:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:39:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:39:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:39:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:39:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:39:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:39:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:40:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:40:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:40:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:40:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:40:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:41:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:41:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:41:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:41:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:42:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:44:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:44:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:45:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:45:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:45:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
+2026-06-15T08:49:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:49:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
+2026-06-15T08:49:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:49:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
+2026-06-15T08:49:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0

Някои файлове не бяха показани, защото твърде много файлове са промени