Просмотр исходного кода

feat(前端示例): 添加入页提示组件, 优化布局并清理临时文件

- 移除遗留的 cloudflared 临时PID文件, 更新 .gitignore 以忽略所有示例目录下的 cloudflared 日志和PID文件
- 新增自定义Toast提示组件替代原生alert, 替换所有原有alert调用
- 优化数据集页面的CSS布局, 修复网格布局与滚动区域的显示问题
刘文武 1 день назад
Родитель
Сommit
1a76b71341

+ 4 - 2
.gitignore

@@ -116,5 +116,7 @@ runs_new/
 fixed_query_eval/docs/
 fixed_query_eval/runs_full/
 .env
-fixed_query_eval/.cloudflared.log
-fixed_query_eval/.cloudflared.pid
+**/fixed_query_eval/.cloudflared.log
+**/fixed_query_eval/.cloudflared.pid
+**/mode_procedure/.cloudflared.log
+**/mode_procedure/.cloudflared.pid

+ 135 - 8
examples/mode_workflow/index.html

@@ -164,6 +164,16 @@
       main.on {
         display: block;
       }
+      /* 数据集视图:整体定高占满视口,左侧列表与右侧解构各自独立滚动 */
+      #view-dataset {
+        padding-bottom: 20px;
+      }
+      #view-dataset.on {
+        display: flex;
+        flex-direction: column;
+        height: calc(100vh - 60px);
+        overflow: hidden;
+      }
       /* 聚类库:内嵌知识检索页,占满视口、无内边距 */
       #view-cluster {
         padding: 0;
@@ -465,13 +475,22 @@
         display: grid;
         grid-template-columns: 235px 350px minmax(0, 1fr);
         gap: 16px;
-        align-items: start;
+        align-items: stretch;
+        flex: 1;
+        min-height: 0;
       }
       @media (max-width: 1280px) {
         .ds-grid {
           grid-template-columns: 200px 320px minmax(0, 1fr);
         }
       }
+      /* 每一列卡片纵向铺满网格高度,内部滚动区独立滚动 */
+      .ds-grid > .card {
+        display: flex;
+        flex-direction: column;
+        min-height: 0;
+        overflow: hidden;
+      }
       .col-head {
         display: flex;
         align-items: center;
@@ -489,7 +508,8 @@
       }
 
       .qlist {
-        max-height: 76vh;
+        flex: 1;
+        min-height: 0;
         overflow: auto;
       }
       .qitem {
@@ -591,7 +611,8 @@
       }
 
       .plist {
-        max-height: 70vh;
+        flex: 1;
+        min-height: 0;
         overflow: auto;
       }
       .post {
@@ -759,6 +780,9 @@
       }
       .xp-body {
         padding: 16px;
+        flex: 1;
+        min-height: 0;
+        overflow: auto;
       }
 
       /* 工序卡 */
@@ -1812,9 +1836,96 @@
       [hidden] {
         display: none !important;
       }
+
+      /* ── 页内提示(替代浏览器原生 alert) ── */
+      #toast-wrap {
+        position: fixed;
+        top: 18px;
+        left: 50%;
+        transform: translateX(-50%);
+        z-index: 120;
+        display: flex;
+        flex-direction: column;
+        align-items: center;
+        gap: 10px;
+        pointer-events: none;
+      }
+      .toast {
+        pointer-events: auto;
+        display: flex;
+        align-items: flex-start;
+        gap: 10px;
+        min-width: 240px;
+        max-width: min(440px, calc(100vw - 32px));
+        padding: 12px 14px 12px 13px;
+        background: var(--card);
+        color: var(--ink);
+        border: 1px solid var(--line-dark);
+        border-left: 4px solid var(--navy);
+        border-radius: 10px;
+        box-shadow: var(--shadow-lg);
+        font-size: 13px;
+        line-height: 1.55;
+        animation: toastIn 0.18s ease;
+      }
+      .toast.out {
+        animation: toastOut 0.16s ease forwards;
+      }
+      .toast .ic {
+        flex: none;
+        width: 18px;
+        height: 18px;
+        margin-top: 1px;
+        display: grid;
+        place-items: center;
+        border-radius: 50%;
+        font-size: 12px;
+        font-weight: 900;
+        color: #fff;
+        background: var(--navy);
+      }
+      .toast .msg {
+        flex: 1;
+        word-break: break-word;
+      }
+      .toast.error {
+        border-left-color: var(--seal);
+      }
+      .toast.error .ic {
+        background: var(--seal);
+      }
+      .toast.success {
+        border-left-color: var(--green);
+      }
+      .toast.success .ic {
+        background: var(--green);
+      }
+      .toast.warn {
+        border-left-color: var(--amber);
+      }
+      .toast.warn .ic {
+        background: var(--amber);
+      }
+      @keyframes toastIn {
+        from {
+          opacity: 0;
+          transform: translateY(-10px);
+        }
+        to {
+          opacity: 1;
+          transform: none;
+        }
+      }
+      @keyframes toastOut {
+        to {
+          opacity: 0;
+          transform: translateY(-8px);
+        }
+      }
     </style>
   </head>
   <body>
+    <div id="toast-wrap" aria-live="polite"></div>
     <header>
       <div class="logo">
         <div class="seal">解</div>
@@ -2106,6 +2217,22 @@
     <script>
       /* ════ 基础 ════ */
       const $ = (s) => document.querySelector(s);
+      /* 页内提示,替代浏览器原生 alert();type: info|error|success|warn */
+      function toast(msg, type = "info", ms = 3200) {
+        const wrap = $("#toast-wrap");
+        if (!wrap) return;
+        const ic = { info: "i", error: "!", success: "✓", warn: "!" }[type] || "i";
+        const el = document.createElement("div");
+        el.className = "toast " + type;
+        el.innerHTML = `<span class="ic">${ic}</span><span class="msg">${esc(msg)}</span>`;
+        const dismiss = () => {
+          el.classList.add("out");
+          el.addEventListener("animationend", () => el.remove(), { once: true });
+        };
+        el.addEventListener("click", dismiss);
+        wrap.appendChild(el);
+        setTimeout(dismiss, ms);
+      }
       const api = (p, opt) =>
         fetch(p, opt).then(async (r) => {
           if (!r.ok)
@@ -3098,7 +3225,7 @@
             }
           });
         } catch (e) {
-          alert("任务启动失败:" + (e.body?.error || e.status));
+          toast("任务启动失败:" + (e.body?.error || e.status), "error");
         }
       }
 
@@ -3138,7 +3265,7 @@
         $("#task-panel").hidden = true;
       }
       function showTaskPanel() {
-        if (!hasTask) return alert("本次会话还没有任务日志");
+        if (!hasTask) return toast("本次会话还没有任务日志", "warn");
         $("#task-panel").hidden = false;
         const log = $("#task-log");
         log.scrollTop = log.scrollHeight;
@@ -3193,9 +3320,9 @@
       };
       $("#s-go").onclick = async () => {
         const query = $("#s-query").value.trim();
-        if (!query) return alert("请填写 query");
+        if (!query) return toast("请填写 query", "warn");
         const plats = selectedPlatforms();
-        if (!plats.length) return alert("请至少选择一个检索渠道");
+        if (!plats.length) return toast("请至少选择一个检索渠道", "warn");
         const body = {
           query,
           synonyms: $("#s-syn").value.trim(),
@@ -3218,7 +3345,7 @@
             selectQuery(r.query_id);
           });
         } catch (e) {
-          alert("搜索启动失败:" + (e.body?.error || e.status));
+          toast("搜索启动失败:" + (e.body?.error || e.status), "error");
         }
       };
 

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

@@ -1,4811 +0,0 @@
-2026-06-12T07:15:34Z INF Thank you for trying Cloudflare Tunnel. Doing so, without a Cloudflare account, is a quick way to experiment and try it out. However, be aware that these account-less Tunnels have no uptime guarantee, are subject to the Cloudflare Online Services Terms of Use (https://www.cloudflare.com/website-terms/), and Cloudflare reserves the right to investigate your use of Tunnels for violations of such terms. If you intend to use Tunnels in production you should use a pre-created named tunnel by following: https://developers.cloudflare.com/cloudflare-one/connections/connect-apps
-2026-06-12T07:15:34Z INF Requesting new quick Tunnel on trycloudflare.com...
-2026-06-12T07:15:39Z INF +--------------------------------------------------------------------------------------------+
-2026-06-12T07:15:39Z INF |  Your quick Tunnel has been created! Visit it at (it may take some time to be reachable):  |
-2026-06-12T07:15:39Z INF |  https://rebecca-eliminate-significantly-andreas.trycloudflare.com                         |
-2026-06-12T07:15:39Z INF +--------------------------------------------------------------------------------------------+
-2026-06-12T07:15:39Z INF Cannot determine default configuration path. No file [config.yml config.yaml] in [~/.cloudflared ~/.cloudflare-warp ~/cloudflare-warp /etc/cloudflared /usr/local/etc/cloudflared]
-2026-06-12T07:15:39Z INF Version 2026.6.0 (Checksum a13041d6ffff9d56f7df1629c24d9c0bacf4f73409d6cab0f5a1f60631ba9667)
-2026-06-12T07:15:39Z INF GOOS: darwin, GOVersion: go1.26.4, GoArch: amd64
-2026-06-12T07:15:39Z INF Settings: map[ha-connections:1 p:http2 protocol:http2 url:http://localhost:8770]
-2026-06-12T07:15:39Z INF cloudflared will not automatically update if installed by a package manager.
-2026-06-12T07:15:39Z INF Generated Connector ID: f9318307-36d5-42a6-99c8-69ba04ffe668
-2026-06-12T07:15:39Z INF Initial protocol http2
-2026-06-12T07:15:39Z INF ICMP proxy will use 192.168.81.52 as source for IPv4
-2026-06-12T07:15:39Z INF ICMP proxy will use ::1 in zone lo0 as source for IPv6
-2026-06-12T07:15:39Z INF Created ICMP proxy listening on 192.168.81.52:0
-2026-06-12T07:15:39Z INF Created ICMP proxy listening on [::1]:0
-2026-06-12T07:15:39Z INF ICMP proxy will use 192.168.81.52 as source for IPv4
-2026-06-12T07:15:39Z INF ICMP proxy will use ::1 in zone lo0 as source for IPv6
-2026-06-12T07:15:39Z INF Starting metrics server on 127.0.0.1:20241/metrics
-2026-06-12T07:15:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T07:15:40Z INF Registered tunnel connection connIndex=0 connection=8c0b4f2c-5294-4600-8597-fbba0554d9cc event=0 ip=198.41.192.47 location=lax05 protocol=http2
-2026-06-12T07:15:47Z INF +-------------------------------------------------------------------------------------+
-2026-06-12T07:15:47Z INF |                               CONNECTIVITY PRE-CHECKS                               |
-2026-06-12T07:15:47Z INF +-------------------------------------------------------------------------------------+
-2026-06-12T07:15:47Z INF |  COMPONENT         TARGET                     STATUS  DETAILS                       |
-2026-06-12T07:15:47Z INF |  DNS Resolution    region1.v2.argotunnel.com  PASS    DNS Resolved successfully     |
-2026-06-12T07:15:47Z INF |  DNS Resolution    region2.v2.argotunnel.com  PASS    DNS Resolved successfully     |
-2026-06-12T07:15:47Z INF |  UDP Connectivity  region1.v2.argotunnel.com  PASS    QUIC connection successful    |
-2026-06-12T07:15:47Z INF |  UDP Connectivity  region2.v2.argotunnel.com  PASS    QUIC connection successful    |
-2026-06-12T07:15:47Z INF |  TCP Connectivity  region1.v2.argotunnel.com  PASS    HTTP/2 connection successful  |
-2026-06-12T07:15:47Z INF |  TCP Connectivity  region2.v2.argotunnel.com  PASS    HTTP/2 connection successful  |
-2026-06-12T07:15:47Z INF |  Cloudflare API    api.cloudflare.com:443     PASS    API is reachable              |
-2026-06-12T07:15:47Z INF |                                                                                     |
-2026-06-12T07:15:47Z INF |  SUMMARY: Environment is healthy. cloudflared will use 'quic' as primary protocol.  |
-2026-06-12T07:15:47Z INF +-------------------------------------------------------------------------------------+
-2026-06-12T07:15:47Z INF precheck component="DNS Resolution" details="DNS Resolved successfully" run_id=b9fc90bc-ffd4-484c-8716-c113815cf924 status=pass target=region1.v2.argotunnel.com
-2026-06-12T07:15:47Z INF precheck component="DNS Resolution" details="DNS Resolved successfully" run_id=b9fc90bc-ffd4-484c-8716-c113815cf924 status=pass target=region2.v2.argotunnel.com
-2026-06-12T07:15:47Z INF precheck component="UDP Connectivity" details="QUIC connection successful" run_id=b9fc90bc-ffd4-484c-8716-c113815cf924 status=pass target=region1.v2.argotunnel.com
-2026-06-12T07:15:47Z INF precheck component="UDP Connectivity" details="QUIC connection successful" run_id=b9fc90bc-ffd4-484c-8716-c113815cf924 status=pass target=region2.v2.argotunnel.com
-2026-06-12T07:15:47Z INF precheck component="TCP Connectivity" details="HTTP/2 connection successful" run_id=b9fc90bc-ffd4-484c-8716-c113815cf924 status=pass target=region1.v2.argotunnel.com
-2026-06-12T07:15:47Z INF precheck component="TCP Connectivity" details="HTTP/2 connection successful" run_id=b9fc90bc-ffd4-484c-8716-c113815cf924 status=pass target=region2.v2.argotunnel.com
-2026-06-12T07:15:47Z INF precheck component="Cloudflare API" details="API is reachable" run_id=b9fc90bc-ffd4-484c-8716-c113815cf924 status=pass target=api.cloudflare.com:443
-2026-06-12T07:15:47Z INF precheck complete hard_fail=false run_id=b9fc90bc-ffd4-484c-8716-c113815cf924 suggested_protocol=quic
-2026-06-12T08:15:44Z ERR Failed to refresh DNS local resolver error="lookup region1.v2.argotunnel.com: i/o timeout"
-2026-06-12T14:58:09Z INF Lost connection with the edge connIndex=0
-2026-06-12T14:58:09Z ERR failed to serve incoming request error="Error shutting down control stream: context canceled"
-2026-06-12T14:58:09Z ERR Serve tunnel error error="connection with edge closed" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T14:58:09Z INF Retrying connection in up to 1s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T14:58:11Z ERR Connection terminated error="connection with edge closed" connIndex=0
-2026-06-12T14:58:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T14:58:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T14:58:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T14:58:19Z INF Retrying connection in up to 4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T14:58:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T14:58:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T14:58:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T14:58:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T14:58:43Z INF Retrying connection in up to 8s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T14:58:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T14:59:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T14:59:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T14:59:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T14:59:40Z INF Retrying connection in up to 16s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T14:59:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:00:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:00:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:00:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:00:28Z INF Retrying connection in up to 32s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:00:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:00:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:00:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:00:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:00:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:00:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:03:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:03:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:03:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:03:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:03:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:08:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:08:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:08:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:08:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:09:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:12:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:12:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:12:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:12:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:12:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:13:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:13:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:13:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:13:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:13:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:14:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:14:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:14:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:14:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:14:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:20:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:20:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:20:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:20:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:20:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:24:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:24:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:24:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:24:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:25:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:27:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:27:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:27:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:27:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:27:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:30:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:30:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:30:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:30:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:31:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:35:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:35:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:35:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:35:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:35:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:38:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:38:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:38:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:38:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:38:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:40:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:40:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:40:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:40:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:40:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:44:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:44:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:44:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:44:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:44:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:47:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:47:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:47:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:47:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:47:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:48:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:48:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:48:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:48:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:48:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:49:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:49:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:49:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:49:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:50:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:55:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:55:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:55:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:55:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:55:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:56:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:56:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:56:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:56:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T15:56:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:00:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:00:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:00:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:00:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:00:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:02:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:02:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:02:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:02:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:02:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:04:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:04:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:04:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:04:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:05:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:08:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:08:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:08:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:08:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:08:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:12:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:12:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:12:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:12:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:12:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:17:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:17:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:17:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:17:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:17:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:17:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:17:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:18:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:18:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:18:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:20:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:20:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:20:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:20:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:21:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:25:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:25:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:25:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:25:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:25:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:25:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:25:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:25:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:25:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:25:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:25:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:25:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:25:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:25:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:26:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:30:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:30:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:30:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:30:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:30:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:32:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:32:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:32:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:32:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:32:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:33:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:33:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:33:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:33:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:33:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:38:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:38:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:38:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:38:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:39:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:40:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:41:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:41:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:41:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:41:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:45:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:45:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:45:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:45:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:45:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:48:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:48:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:48:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:48:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:48:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:50:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:50:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:50:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:50:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:50:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:53:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:53:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:53:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:53:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:53:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:58:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:58:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:58:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:58:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T16:59:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:04:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:04:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:04:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:04:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:04:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:08:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:08:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:08:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:08:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:09:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:10:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:10:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:10:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:10:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:11:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:13:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:13:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:13:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:13:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:13:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:15:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:15:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:15:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:15:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:15:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:18:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:18:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:18:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:18:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:18:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:19:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:19:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:19:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:19:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:19:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:25:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:25:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:25:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:25:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:25:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:28:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:28:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:28:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:28:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:29:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:31:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:31:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:34:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:34:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:34:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:35:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:35:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:35:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:35:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:35:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:37:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:37:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:37:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:37:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:38:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:43:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:43:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:43:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:43:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:43:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:46:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:46:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:46:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:46:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:46:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:51:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:51:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:51:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:51:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:51:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:52:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:52:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:52:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:52:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:52:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:53:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:53:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:53:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:53:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:54:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:55:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:55:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:55:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:55:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T17:55:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:01:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:01:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:01:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:01:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:01:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:05:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:06:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:06:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:06:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:06:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:07:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:07:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:07:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:07:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:07:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:08:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:08:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:08:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:08:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:08:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:09:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:09:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:09:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:09:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:09:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:12:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:12:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:12:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:12:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:12:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:13:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:13:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:13:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:13:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:13:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:14:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:14:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:14:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:14:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:14:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:19:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:19:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:19:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:19:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:19:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:23:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:23:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:23:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:23:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:23:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:23:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:23:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:23:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:23:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:24:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:27:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:27:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:27:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:27:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:27:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:28:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:28:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:28:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:28:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:28:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:33:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:33:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:33:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:33:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:33:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:37:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:37:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:37:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:37:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:37:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:38:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:38:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:38:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:38:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:38:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:42:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:42:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:42:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:42:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:42:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:47:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:47:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:47:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:47:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:47:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:47:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:47:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:47:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:47:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:48:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:49:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:49:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:49:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:49:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:50:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:52:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:52:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:52:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:52:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:52:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:54:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:54:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:54:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:54:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:54:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:57:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:57:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:57:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:57:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T18:58:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:01:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:01:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:01:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:01:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:01:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:02:52Z ERR Failed to refresh DNS local resolver error="lookup region1.v2.argotunnel.com: i/o timeout"
-2026-06-12T19:06:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:06:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:06:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:06:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:06:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:08:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:08:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:08:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:08:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:08:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:11:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:11:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:11:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:11:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:12:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:17:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:17:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:17:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:17:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:17:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:18:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:18:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:18:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:18:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:19:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:24:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:24:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:24:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:24:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:24:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:27:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:27:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:27:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:27:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:28:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:30:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:30:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:30:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:30:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:31:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:36:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:36:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:36:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:36:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:36:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:37:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:37:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:37:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:37:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:38:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:41:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:41:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:41:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:41:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:42:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:44:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:44:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:44:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:44:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:44:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:49:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:49:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:49:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:49:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:50:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:53:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:53:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:53:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:53:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:54:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:57:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:57:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:57:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:57:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:57:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:58:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:58:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:58:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:58:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T19:58:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:02:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:02:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:02:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:02:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:02:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:03:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:03:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:03:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:03:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:03:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:08:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:08:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:08:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:08:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:09:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:09:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:09:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:09:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:09:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:09:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:13:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:13:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:13:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:13:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:13:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:13:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:13:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:13:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:13:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:13:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:15:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:15:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:15:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:15:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:15:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:16:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:16:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:16:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:16:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:17:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:21:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:21:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:21:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:21:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:21:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:25:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:25:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:25:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:25:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:26:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:27:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:27:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:27:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:27:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:27:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:32:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:32:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:32:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:32:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:32:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:34:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:34:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:34:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:34:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:34:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:38:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:38:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:38:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:38:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:38:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:39:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:39:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:39:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:39:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:39:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:40:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:40:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:40:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:40:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:40:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:43:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:43:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:43:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:43:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:44:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:46:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:46:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:46:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:46:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:47:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:50:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:50:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:50:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:50:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:50:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:52:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:52:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:52:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:52:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:52:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:55:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:55:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:55:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:55:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:55:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:56:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:56:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:56:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:56:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:56:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:58:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:58:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:58:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:58:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T20:58:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:02:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:03:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:03:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:03:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:03:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:06:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:06:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:06:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:06:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:06:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:09:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:09:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:09:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:09:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:09:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:10:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:10:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:10:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:10:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:10:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:13:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:13:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:13:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:13:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:13:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:17:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:17:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:17:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:17:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:17:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:22:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:22:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:22:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:22:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:22:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:23:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:23:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:23:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:23:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:23:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:26:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:26:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:26:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:26:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:26:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:28:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:28:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:28:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:28:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:28:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:29:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:29:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:29:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:29:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:29:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:31:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:31:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:31:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:31:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:31:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:35:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:35:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:35:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:35:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:35:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:37:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:37:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:37:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:37:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:38:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:39:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:39:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:39:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:39:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:39:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:44:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:44:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:44:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:44:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:44:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:49:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:49:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:49:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:49:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:49:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:54:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:54:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:54:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:54:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:55:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:55:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:55:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:55:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:55:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:55:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:58:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:58:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:58:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:58:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T21:59:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:03:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:04:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:04:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:04:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:04:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:09:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:09:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:09:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:09:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:09:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:12:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:12:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:12:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:12:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:12:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:17:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:17:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:17:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:17:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:17:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:21:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:21:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:21:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:21:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:21:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:26:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:26:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:26:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:26:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:26:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:31:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:31:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:31:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:31:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:31:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:36:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:36:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:36:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:36:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:36:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:41:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:41:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:41:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:41:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:41:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:45:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:45:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:45:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:45:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:45:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:47:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:47:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:47:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:47:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:47:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:51:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:52:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:52:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:52:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:52:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:53:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:53:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:53:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:53:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:53:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:55:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:55:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:55:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:55:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:56:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:58:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:58:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:58:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:58:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T22:58:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:01:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:01:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:01:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:01:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:01:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:05:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:05:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:05:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:05:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:05:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:06:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:06:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:06:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:06:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:06:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:08:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:08:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:08:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:08:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:08:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:13:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:13:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:13:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:13:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:13:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:15:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:15:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:15:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:15:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:15:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:18:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:18:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:18:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:18:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:18:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:19:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:19:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:19:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:19:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:19:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:23:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:23:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:23:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:23:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:24:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:27:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:27:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:27:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:27:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:27:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:32:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:32:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:32:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:32:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:32:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:33:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:33:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:33:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:33:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:33:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:34:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:34:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:34:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:34:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:35:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:38:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:38:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:38:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:38:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:38:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:43:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:43:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:43:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:43:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:43:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:47:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:47:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:47:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:47:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:47:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:51:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:51:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:51:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:51:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:51:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:51:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:51:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:51:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:51:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:51:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:56:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:56:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:56:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:56:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:56:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:56:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:56:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:56:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:56:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-12T23:56:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:00:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:00:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:00:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:00:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:01:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:05:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:05:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:05:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:05:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:05:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:06:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:06:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:06:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:06:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:06:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:11:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:11:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:11:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:11:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:11:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:16:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:16:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:16:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:16:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:17:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:21:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:21:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:21:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:21:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:21:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:22:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:22:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:22:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:22:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:22:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:23:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:23:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:23:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:23:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:24:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:27:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:27:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:27:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:27:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:27:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:28:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:28:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:28:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:28:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:28:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:30:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:30:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:30:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:30:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:31:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:35:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:35:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:35:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:35:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:35:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:39:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:39:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:39:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:39:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:40:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:44:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:44:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:44:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:44:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:44:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:45:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:45:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:45:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:45:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:45:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:48:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:48:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:48:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:48:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:48:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:53:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:53:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:53:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:53:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:53:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:54:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:54:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:54:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:54:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:55:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:57:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:57:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:57:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:57:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T00:57:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:01:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:01:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:01:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:01:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:01:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:04:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:04:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:04:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:04:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:04:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:09:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:09:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:09:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:09:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:09:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:12:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:12:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:12:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:12:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:12:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:15:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:15:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:15:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:15:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:15:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:16:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:16:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:16:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:16:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:16:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:21:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:21:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:21:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:21:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:21:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:24:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:24:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:24:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:24:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:24:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:27:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:27:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:27:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:27:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:27:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:31:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:31:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:31:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:31:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:31:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:34:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:34:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:34:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:34:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:34:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:34:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:34:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:34:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:34:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:35:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:35:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:35:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:35:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:35:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:35:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:37:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:37:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:37:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:37:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:38:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:40:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:40:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:40:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:40:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:40:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:42:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:43:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:43:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:43:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:43:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:45:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:45:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:45:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:45:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:45:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:48:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:48:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:48:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:48:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:49:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:54:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:54:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:54:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:54:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:54:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:55:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:55:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:55:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:55:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:56:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:56:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:56:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:56:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:56:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T01:56:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:00:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:00:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:00:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:00:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:00:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:06:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:06:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:06:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:06:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:06:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:10:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:10:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:10:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:10:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:10:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:14:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:14:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:14:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:14:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:14:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:15:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:15:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:15:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:15:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:15:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:20:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:20:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:20:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:20:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:20:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:20:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:20:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:20:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:20:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:20:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:25:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:25:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:25:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:25:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:25:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:27:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:27:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:27:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:27:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:27:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:31:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:31:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:31:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:31:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:31:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:32:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:32:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:32:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:32:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:32:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:37:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:37:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:37:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:37:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:37:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:42:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:42:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:42:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:42:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:42:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:46:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:46:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:46:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:46:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:46:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:46:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:46:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:46:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:46:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:46:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:48:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:48:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:48:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:48:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:48:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:53:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:53:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:53:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:53:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:53:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:54:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:54:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:54:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:54:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:55:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:58:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:58:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:58:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:58:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T02:58:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:02:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:02:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:02:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:02:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:02:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:03:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:03:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:03:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:03:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:04:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:05:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:05:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:05:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:05:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:05:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:08:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:08:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:08:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:08:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:08:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:09:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:09:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:09:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:09:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:10:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:12:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:12:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:12:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:12:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:12:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:17:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:17:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:17:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:17:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:17:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:22:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:22:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:22:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:22:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:22:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:23:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:23:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:24:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:24:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:24:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:28:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:28:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:28:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:28:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:28:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:33:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:33:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:33:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:33:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:33:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:38:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:38:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:38:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:38:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:39:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:44:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:44:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:44:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:44:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:45:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:45:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:45:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:45:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:45:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:45:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:49:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:49:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:49:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:49:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:50:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:51:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:51:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:51:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:51:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:52:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:57:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:57:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:57:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:57:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:57:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:57:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:57:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:57:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:57:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T03:57:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:01:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:01:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:01:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:01:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:02:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:03:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:03:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:03:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:03:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:03:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:04:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:04:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:04:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:04:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:04:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:06:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:06:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:06:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:06:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:07:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:11:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:11:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:11:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:11:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:11:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:14:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:14:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:14:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:14:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:14:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:15:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:15:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:15:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:15:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:16:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:20:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:20:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:20:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:20:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:20:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:21:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:21:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:21:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:21:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:21:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:25:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:25:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:25:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:25:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:26:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:29:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:29:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:29:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:29:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:29:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:31:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:31:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:31:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:31:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:31:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:32:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:32:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:32:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:32:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:32:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:36:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:36:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:36:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:36:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:36:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:40:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:40:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:40:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:40:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:40:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:41:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:41:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:41:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:41:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:41:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:42:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:42:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:42:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:42:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:42:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:47:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:47:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:47:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:47:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:47:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:48:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:48:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:48:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:48:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:48:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:52:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:52:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:52:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:52:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:53:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:56:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:56:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:56:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:56:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T04:57:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:01:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:01:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:01:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:01:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:01:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:01:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:01:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:01:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:01:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:01:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:04:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:04:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:04:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:04:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:04:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:08:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:08:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:08:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:08:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:09:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:13:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:13:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:13:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:13:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:14:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:15:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:15:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:16:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:16:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:16:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:20:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:20:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:20:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:20:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:20:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:22:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:22:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:22:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:22:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:22:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:26:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:26:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:26:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:26:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:26:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:28:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:28:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:28:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:28:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:28:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:29:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:29:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:29:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:29:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:30:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:33:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:33:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:33:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:33:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:33:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:34:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:34:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:34:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:34:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:34:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:36:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:36:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:36:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:36:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:36:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:37:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:37:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:37:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:37:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:37:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:39:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:39:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:39:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:39:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:40:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:44:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:44:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:44:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:44:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:44:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:44:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:44:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:44:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:44:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:45:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:45:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:45:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:45:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:45:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:46:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:46:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:46:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:46:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:46:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:46:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:49:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:49:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:49:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:49:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:49:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:55:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:55:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:55:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:55:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:55:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:57:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:57:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:57:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:57:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:58:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:59:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:59:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:59:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:59:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T05:59:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:00:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:00:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:00:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:00:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:00:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:04:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:04:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:04:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:04:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:05:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:05:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:05:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:05:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:05:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:05:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:09:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:09:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:09:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:09:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:09:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:14:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:14:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:14:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:14:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:14:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:16:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:16:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:16:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:16:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:17:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:17:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:17:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:17:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:17:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:17:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:22:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:22:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:22:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:22:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:22:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:26:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:26:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:26:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:26:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:26:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:29:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:29:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:29:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:29:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:29:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:34:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:34:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:34:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:34:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:35:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:49:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:49:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:49:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:49:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:49:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:50:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:50:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:50:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:50:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:50:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:54:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:54:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:54:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:54:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:54:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:56:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:56:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:56:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:56:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:56:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:58:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:58:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:58:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:58:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T06:59:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:03:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:03:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:03:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:03:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:03:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:07:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:07:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:07:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:07:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:07:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:08:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:08:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:08:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:08:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:08:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:12:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:12:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:12:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:12:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:12:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:17:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:17:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:17:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:17:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:17:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:17:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:17:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:17:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:17:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:18:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:22:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:22:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:22:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:22:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:23:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:26:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:26:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:26:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:26:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:26:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:31:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:31:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:31:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:31:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:32:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:32:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:32:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:32:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:32:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:32:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:35:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:35:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:35:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:35:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:36:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:38:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:38:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:38:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:38:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:38:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:39:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:39:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:39:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:39:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:40:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:44:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:44:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:44:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:44:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:45:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:48:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:48:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:48:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:48:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:49:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:51:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:51:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:51:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:51:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:51:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:55:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:55:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:55:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:55:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:55:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:58:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:58:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:58:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:58:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T07:59:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:04:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:04:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:04:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:04:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:04:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:07:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:07:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:07:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:07:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:07:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:12:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:12:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:12:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:12:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:12:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:14:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:14:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:14:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:14:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:14:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:17:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:17:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:17:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:17:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:17:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:20:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:20:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:20:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:20:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:20:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:23:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:23:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:23:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:23:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:23:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:27:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:27:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:27:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:27:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:28:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:33:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:33:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:33:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:33:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:33:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:38:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:38:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:38:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:38:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:39:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:39:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:39:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:39:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:39:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:40:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:42:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:42:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:42:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:42:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:42:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:47:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:47:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:47:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:47:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:47:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:50:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:50:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:50:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:50:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:51:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:52:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:52:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:52:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:52:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:52:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:55:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:55:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:55:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:55:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T08:55:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:00:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:00:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:00:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:00:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:00:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:04:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:04:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:04:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:04:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:05:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:10:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:10:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:10:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:10:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:11:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:15:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:15:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:15:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:15:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:16:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:21:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:21:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:21:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:21:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:21:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:26:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:26:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:26:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:26:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:26:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:30:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:30:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:30:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:30:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:30:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:31:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:31:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:31:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:31:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:31:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:35:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:35:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:35:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:35:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:36:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:41:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:41:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:41:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:41:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:41:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:44:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:44:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:44:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:44:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:44:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:49:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:49:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:49:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:49:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:50:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:55:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:55:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:55:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:55:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:55:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:59:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:59:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:59:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:59:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T09:59:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:04:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:04:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:04:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:04:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:04:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:08:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:08:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:08:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:08:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:09:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:12:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:12:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:12:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:12:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:12:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:16:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:16:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:16:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:16:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:17:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:20:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:20:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:20:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:20:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:21:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:25:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:25:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:25:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:25:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:25:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:28:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:28:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:28:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:28:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:28:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:30:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:30:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:30:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:30:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:31:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:32:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:32:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:32:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:32:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:33:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:35:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:35:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:35:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:35:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:35:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:37:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:37:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:37:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:37:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:37:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:38:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:38:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:38:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:38:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:39:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:39:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:39:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:39:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:39:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:39:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:40:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:40:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:40:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:40:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:40:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:44:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:44:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:44:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:44:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:45:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:47:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:47:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:47:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:47:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:47:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:50:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:50:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:50:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:50:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:50:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:53:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:53:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:53:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:53:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:53:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:56:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:56:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:56:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:56:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:56:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:57:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:57:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:57:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:57:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T10:58:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:02:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:02:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:02:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:02:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:03:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:08:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:08:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:08:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:08:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:08:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:13:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:13:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:13:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:13:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:14:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:15:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:15:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:15:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:15:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:15:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:16:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:16:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:16:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:16:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:16:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:21:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:21:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:21:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:21:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:21:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:23:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:23:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:23:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:23:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:23:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:26:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:26:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:26:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:26:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:26:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:28:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:28:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:28:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:28:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:29:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:33:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:33:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:33:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:33:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:34:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:34:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:34:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:34:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:34:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:34:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:37:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:37:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:37:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:37:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:38:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:42:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:42:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:42:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:42:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:43:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:47:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:47:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:47:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:47:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:47:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:48:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:48:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:48:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:48:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:48:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:50:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:50:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:50:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:50:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:50:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:54:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:55:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:55:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:55:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:55:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:56:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:56:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:56:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:56:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T11:56:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:01:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:01:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:01:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:01:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:01:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:06:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:06:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:06:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:06:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:06:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:06:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:06:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:06:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:06:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:07:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:09:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:09:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:09:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:09:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:10:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:15:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:15:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:15:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:15:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:15:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:16:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:16:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:16:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:16:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:16:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:19:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:19:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:19:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:19:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:20:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:22:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:22:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:22:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:22:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:22:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:24:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:24:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:24:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:24:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:24:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:29:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:29:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:29:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:29:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:29:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:30:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:30:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:30:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:30:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:30:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:34:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:34:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:34:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:34:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:34:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:34:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:34:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:34:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:34:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:35:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:40:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:40:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:40:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:40:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:40:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:44:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:44:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:44:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:44:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:45:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:46:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:46:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:46:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:46:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:46:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:48:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:48:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:48:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:48:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:48:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:53:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:53:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:53:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:53:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:53:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:53:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:53:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:53:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:53:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:53:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:57:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:58:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:58:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:58:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T12:58:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:01:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:01:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:01:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:01:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:02:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:05:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:05:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:05:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:05:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:05:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:08:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:08:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:08:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:08:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:09:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:09:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:09:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:09:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:09:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:09:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:10:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:10:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:10:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:10:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:11:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:12:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:12:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:12:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:12:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:13:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:14:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:14:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:14:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:14:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:14:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:16:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:16:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:16:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:16:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:16:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:17:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:17:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:17:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:17:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:18:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:21:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:21:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:21:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:21:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:21:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:22:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:22:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:22:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:22:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:23:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:25:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:25:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:25:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:25:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:25:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:27:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:27:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:27:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:27:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:27:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:31:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:31:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:31:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:31:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:31:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:32:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:32:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:32:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:32:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:33:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:38:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:38:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:38:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:38:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:38:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:42:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:42:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:42:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:42:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:42:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:47:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:47:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:47:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:47:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:48:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:50:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:50:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:50:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:50:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:50:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:51:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:51:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:51:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:51:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:52:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:52:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:52:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:52:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:52:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:52:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:53:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:53:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:53:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:53:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:54:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:55:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:55:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:55:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:55:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:55:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:57:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:58:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:58:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:58:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T13:58:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:01:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:01:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:01:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:01:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:01:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:06:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:06:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:06:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:06:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:07:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:10:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:10:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:10:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:10:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:11:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:11:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:11:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:11:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:11:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:11:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:12:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:12:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:12:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:12:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:12:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:15:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:15:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:15:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:15:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:15:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:17:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:17:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:17:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:17:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:18:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:19:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:19:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:19:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:19:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:19:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:19:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:19:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:19:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:19:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:19:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:21:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:21:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:21:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:21:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:21:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:22:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:22:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:22:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:22:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:22:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:24:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:24:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:24:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:24:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:24:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:26:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:26:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:26:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:26:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:27:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:28:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:28:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:28:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:28:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:28:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:28:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:28:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:28:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:28:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:28:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:32:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:32:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:32:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:32:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:32:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:33:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:33:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:33:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:33:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:33:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:35:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:35:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:35:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:35:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:35:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:38:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:38:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:38:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:38:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:38:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:40:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:40:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:40:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:40:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:40:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:42:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:42:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:42:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:42:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:43:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:44:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:44:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:44:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:44:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:44:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:45:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:45:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:45:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:45:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:45:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:49:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:49:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:49:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:49:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:49:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:52:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:52:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:52:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:52:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:52:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:57:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:57:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:57:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:57:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T14:58:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:01:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:01:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:01:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:01:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:01:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:01:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:01:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:01:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:01:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:01:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:04:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:04:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:04:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:04:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:04:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:05:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:05:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:05:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:05:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:06:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:09:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:09:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:09:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:09:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:09:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:12:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:12:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:12:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:12:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:12:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:14:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:14:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:14:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:14:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:14:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:18:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:18:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:18:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:18:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:19:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:20:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:20:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:20:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:20:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:21:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:23:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:23:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:23:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:23:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:23:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:27:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:27:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:27:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:27:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:28:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:32:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:32:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:32:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:32:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:33:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:38:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:38:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:38:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:38:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:38:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:43:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:43:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:43:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:43:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:43:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:43:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:43:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:43:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:43:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:44:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:44:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:44:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:44:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:44:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:45:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:49:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:49:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:49:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:49:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:49:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:51:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:51:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:51:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:51:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:51:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:54:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:54:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:54:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:54:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:55:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:55:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:55:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:55:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:55:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:55:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:58:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:58:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:58:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:58:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T15:58:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:02:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:02:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:02:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:02:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:02:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:07:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:07:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:07:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:07:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:07:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:08:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:08:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:08:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:08:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:08:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:09:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:09:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:09:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:09:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:09:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:12:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:12:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:12:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:12:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:13:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:16:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:16:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:16:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:16:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:16:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:17:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:17:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:17:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:17:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:18:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:19:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:19:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:19:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:19:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:19:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:22:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:22:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:22:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:22:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:22:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:25:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:25:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:25:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:25:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:25:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:30:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:30:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:30:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:30:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:30:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:32:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:32:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:32:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:32:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:32:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:34:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:34:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:34:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:34:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:34:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:35:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:35:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:35:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:35:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:35:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:36:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:36:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:36:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:36:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:36:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:40:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:40:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:40:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:40:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:41:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:43:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:43:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:43:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:43:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:43:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:45:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:45:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:45:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:45:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:45:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:48:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:48:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:48:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:48:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:48:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:49:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:49:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:49:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:49:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:49:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:49:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:49:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:49:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:49:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:50:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:54:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:54:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:54:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:54:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:55:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:59:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:59:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:59:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:59:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T16:59:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:03:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:03:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:03:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:03:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:03:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:07:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:07:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:07:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:07:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:07:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:08:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:08:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:08:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:08:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:09:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:10:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:10:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:10:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:10:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:10:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:12:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:12:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:12:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:12:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:12:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:15:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:15:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:15:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:15:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:15:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:16:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:16:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:16:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:16:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:16:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:18:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:18:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:18:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:18:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:18:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:22:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:22:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:22:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:22:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:22:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:23:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:23:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:23:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:23:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:23:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:27:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:27:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:27:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:27:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:27:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:32:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:32:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:32:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:32:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:32:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:35:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:35:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:35:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:35:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:36:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:39:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:39:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:39:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:39:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:39:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:40:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:40:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:40:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:40:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:40:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:42:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:42:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:42:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:42:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:42:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:42:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:42:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:42:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:42:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:43:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:46:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:46:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:46:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:46:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:46:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:49:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:49:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:49:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:49:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:49:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:55:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:55:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:55:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:55:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T17:55:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:00:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:00:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:00:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:00:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:00:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:05:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:05:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:05:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:05:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:05:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:07:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:07:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:07:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:07:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:08:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:12:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:12:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:12:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:12:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:12:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:16:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:16:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:16:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:16:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:16:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:17:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:17:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:17:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:17:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:18:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:21:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:21:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:21:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:21:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:22:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:23:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:23:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:23:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:23:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:24:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:28:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:29:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:29:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:29:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:29:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:33:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:33:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:33:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:33:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:33:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:37:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:37:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:37:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:37:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:37:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:39:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:39:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:39:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:39:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:39:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:40:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:40:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:40:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:40:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:41:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:41:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:41:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:41:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:41:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:41:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:43:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:43:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:43:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:43:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:44:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:47:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:47:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:47:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:47:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:47:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:48:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:48:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:48:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:48:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:48:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:48:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:48:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:48:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:48:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:48:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:50:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:50:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:50:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:50:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:50:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:52:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:52:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:52:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:52:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:52:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:53:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:53:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:53:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:53:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:53:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:53:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:53:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:54:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:54:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:54:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:56:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:56:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:56:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:56:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T18:56:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:00:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:00:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:00:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:00:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:01:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:05:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:05:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:05:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:05:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:05:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:08:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:08:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:08:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:08:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:08:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:11:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:11:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:11:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:11:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:12:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:15:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:15:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:15:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:15:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:15:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:15:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:15:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:15:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:15:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:15:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:16:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:16:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:16:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:16:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:16:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:20:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:20:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:20:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:20:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:20:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:22:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:22:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:22:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:22:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:22:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:25:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:25:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:25:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:25:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:25:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:26:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:26:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:26:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:26:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:26:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:27:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:27:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:27:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:27:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:28:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:32:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:32:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:32:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:32:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:32:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:35:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:35:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:35:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:35:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:35:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:39:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:39:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:39:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:39:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:40:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:43:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:43:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:44:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:44:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:44:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:48:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:48:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:48:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:48:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:48:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:48:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:48:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:48:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:48:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:48:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:49:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:49:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:49:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:49:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:50:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:55:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:55:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:55:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:55:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T19:55:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:00:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:00:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:00:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:00:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:00:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:01:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:01:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:01:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:01:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:01:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:02:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:02:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:02:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:02:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:02:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:04:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:04:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:04:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:04:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:04:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:04:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:04:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:04:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:04:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:04:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:06:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:06:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:06:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:06:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:06:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:11:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:11:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:11:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:11:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:12:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:17:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:17:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:17:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:17:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:17:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:18:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:18:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:18:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:18:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:18:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:20:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:20:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:20:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:20:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:20:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:21:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:21:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:21:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:21:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:21:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:25:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:25:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:25:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:25:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:25:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:25:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:25:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:25:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:25:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:25:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:26:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:26:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:26:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:26:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:26:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:26:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:26:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:26:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:26:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:27:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:30:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:30:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:30:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:30:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:30:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:34:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:34:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:34:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:34:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:34:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:39:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:39:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:39:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:39:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:39:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:44:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:44:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:44:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:44:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:44:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:48:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:48:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:48:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:48:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:48:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:51:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:51:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:51:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:51:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:52:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:54:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:54:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:54:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:54:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:54:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:55:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:55:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:55:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:55:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T20:55:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:01:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:01:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:01:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:01:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:01:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:02:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:02:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:02:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:02:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:03:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:06:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:06:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:06:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:06:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:06:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:07:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:07:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:07:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:07:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:07:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:10:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:10:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:10:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:10:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:10:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:13:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:13:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:13:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:13:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:13:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:14:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:14:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:14:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:14:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:15:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:17:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:17:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:17:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:17:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:18:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:20:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:20:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:20:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:20:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:20:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:24:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:24:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:24:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:24:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:24:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:28:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:28:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:28:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:28:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:29:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:32:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:32:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:32:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:32:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:32:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:36:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:36:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:36:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:36:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:36:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:41:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:41:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:41:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:41:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:41:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:46:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:46:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:46:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:46:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:46:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:47:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:47:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:47:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:47:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:48:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:49:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:49:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:49:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:49:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:49:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:53:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:53:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:53:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:53:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:53:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:56:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:56:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:56:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:56:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:56:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:58:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:58:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:58:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:58:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:58:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:58:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:58:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:58:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:58:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T21:58:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:02:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:02:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:02:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:02:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:02:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:07:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:07:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:07:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:07:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:07:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:08:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:08:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:08:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:08:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:09:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:10:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:10:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:10:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:10:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:10:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:11:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:12:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:12:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:12:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:12:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:17:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:17:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:17:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:17:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:17:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:20:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:20:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:20:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:20:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:20:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:22:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:22:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:22:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:22:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:22:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:23:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:23:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:23:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:23:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:23:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:25:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:25:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:25:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:25:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:26:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:29:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:30:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:30:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:30:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:30:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:32:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:32:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:32:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:32:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:32:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:37:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:37:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:37:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:37:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:37:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:40:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:40:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:40:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:40:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:40:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:40:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:40:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:40:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:40:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:41:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:41:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:41:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:41:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:41:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:42:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:42:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:42:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:42:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:42:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:43:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:47:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:47:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:47:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:47:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:47:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:52:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:52:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:52:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:52:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:53:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:57:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:57:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:57:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:57:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T22:57:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:02:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:02:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:02:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:02:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:02:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:02:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:02:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:02:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:02:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:03:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:07:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:07:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:07:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:07:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:07:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:12:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:13:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:13:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:13:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:13:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:14:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:14:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:14:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:14:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:15:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:20:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:20:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:20:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:20:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:20:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:26:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:26:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:26:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:26:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:26:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:26:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:26:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:26:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:26:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:26:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:30:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:30:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:30:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:30:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:31:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:31:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:31:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:31:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:31:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:32:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:35:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:35:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:35:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:35:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:35:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:39:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:39:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:39:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:39:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:39:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:41:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:41:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:41:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:41:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:41:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:44:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:44:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:44:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:44:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:44:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:45:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:45:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:45:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:45:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:45:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:50:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:50:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:50:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:50:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:50:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:54:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:54:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:54:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:54:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:54:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:59:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:59:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:59:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:59:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-13T23:59:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:03:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:03:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:03:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:03:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:03:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:05:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:05:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:05:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:05:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:05:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:06:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:06:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:06:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:06:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:06:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:10:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:10:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:10:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:10:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:10:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:12:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:12:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:12:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:12:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:12:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:16:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:16:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:16:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:16:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:16:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:17:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:17:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:17:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:17:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:17:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:19:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:19:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:19:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:19:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:19:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:24:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:24:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:24:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:24:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:24:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:28:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:28:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:28:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:28:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:28:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:30:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:30:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:30:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:30:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:30:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:33:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:33:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:33:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:33:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:33:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:35:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:35:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:35:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:35:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:35:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:37:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:37:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:37:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:37:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:38:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:38:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:38:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:38:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:38:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:38:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:43:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:43:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:43:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:43:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:43:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:44:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:44:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:44:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:44:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:44:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:47:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:47:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:47:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:47:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:48:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:52:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:52:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:52:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:52:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:52:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:54:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:54:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:54:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:54:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:55:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:59:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:59:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:59:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T00:59:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:00:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:04:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:04:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:04:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:04:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:05:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:10:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:10:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:10:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:10:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:10:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:13:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:13:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:13:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:13:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:13:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:17:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:17:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:17:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:17:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:17:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:21:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:21:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:21:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:21:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:21:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:26:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:26:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:26:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:26:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:27:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:31:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:31:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:31:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:31:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:32:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:32:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:33:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:33:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:33:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:33:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:33:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:33:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:33:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:33:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:33:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:38:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:38:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:38:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:38:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:38:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:43:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:43:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:43:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:43:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:43:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:45:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:45:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:45:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:45:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:46:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:49:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:49:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:49:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:49:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:49:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:54:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:54:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:54:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:54:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:54:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:55:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:55:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:55:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:55:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:55:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:58:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:58:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:58:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:58:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T01:59:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:02:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:02:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:02:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:02:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:03:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:06:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:06:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:06:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:06:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:06:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:06:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:06:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:06:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:06:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:07:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:08:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:08:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:08:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:08:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:09:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:13:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:13:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:13:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:13:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:13:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:16:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:17:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:17:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:17:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:17:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:18:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:18:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:18:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:18:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:18:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:20:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:20:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:20:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:20:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:20:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:24:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:24:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:24:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:24:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:24:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:25:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:25:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:25:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:25:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:25:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:28:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:28:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:28:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:28:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:28:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:31:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:31:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:31:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:31:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:31:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:35:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:35:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:35:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:35:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:35:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:36:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:36:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:36:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:36:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:36:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:38:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:38:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:38:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:38:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:39:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:43:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:43:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:43:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:43:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:43:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:45:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:45:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:45:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:45:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:45:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:45:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:45:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:45:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:45:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:46:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:51:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:51:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:51:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:51:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:51:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:55:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:55:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:55:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:55:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:55:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:58:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:58:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:58:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:58:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T02:58:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:02:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:02:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:02:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:02:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:02:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:06:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:06:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:06:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:06:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:07:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:08:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:08:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:08:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:08:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:08:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:13:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:13:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:13:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:13:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:13:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:14:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:14:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:14:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:14:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:14:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:16:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:16:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:16:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:16:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:16:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:21:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:21:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:21:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:21:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:22:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:26:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:26:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:26:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:26:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:26:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:26:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:26:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:26:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:26:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:27:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:28:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:28:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:28:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:28:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:28:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:33:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:33:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:33:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:33:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:33:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:34:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:34:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:34:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:34:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:34:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:35:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:35:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:35:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:35:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:36:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:40:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:40:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:40:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:40:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:40:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:41:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:41:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:41:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:41:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:41:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:45:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:45:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:45:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:45:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:45:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:49:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:49:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:49:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:49:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:49:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:51:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:51:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:51:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:51:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:51:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:54:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:54:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:54:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:54:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T03:54:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:18:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:18:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:18:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:18:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:18:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:22:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:22:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:22:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:22:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:23:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:26:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:26:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:26:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:26:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:26:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:26:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:26:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:26:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:26:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:27:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:29:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:29:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:29:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:29:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:29:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:34:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:35:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:35:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:35:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:35:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:39:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:39:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:39:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:39:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T04:40:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T10:46:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T10:46:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T10:46:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T10:46:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T11:26:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T13:00:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T13:00:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T13:00:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T13:00:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T13:00:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T13:01:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T13:01:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T13:01:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T13:01:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T13:01:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T13:02:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T13:02:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T13:02:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T13:02:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T13:02:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T13:49:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T14:21:51Z ERR Unable to establish connection with Cloudflare edge error="TLS handshake with edge error: read tcp 192.168.0.106:59966->198.41.192.47:7844: i/o timeout" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T14:21:51Z ERR Serve tunnel error error="TLS handshake with edge error: read tcp 192.168.0.106:59966->198.41.192.47:7844: i/o timeout" connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T14:21:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.47
-2026-06-14T14:37:30Z ERR Connection terminated error="TLS handshake with edge error: read tcp 192.168.0.106:59966->198.41.192.47:7844: i/o timeout" connIndex=0
-2026-06-14T14:50:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-14T14:50:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T14:50:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-14T14:50:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-14T15:08:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T19:51:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-14T19:51:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T19:51:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-14T19:51:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-14T20:41:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:16:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:16:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:16:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:16:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:16:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:18:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:18:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:18:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:18:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:19:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:19:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:19:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:19:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:19:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:20:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:23:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:23:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:23:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:23:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:23:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:27:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:27:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:27:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:27:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:28:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:33:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:33:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:33:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:33:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:33:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:36:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:36:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:36:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:36:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:37:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:42:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:42:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:42:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:42:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:42:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:44:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:44:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:44:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:44:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:44:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:46:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:47:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:47:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:47:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:47:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:49:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:49:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:49:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:49:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:49:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:51:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:51:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:51:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:51:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:51:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:53:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:53:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:53:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:53:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:53:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:56:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:56:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:56:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:56:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T02:56:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:00:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:00:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:00:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:00:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:00:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:02:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:02:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:02:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:02:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:03:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:05:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:05:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:05:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:05:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:05:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:07:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:07:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:07:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:07:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:07:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:10:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:10:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:10:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:10:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:10:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:13:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:13:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:13:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:13:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:13:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:18:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:18:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:18:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:18:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:18:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:20:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:20:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:20:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:20:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:21:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:25:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:25:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:25:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:25:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:26:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:28:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:28:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03: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-15T03:28:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:29:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:33:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:33:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:33:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:33:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:33:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:33:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:33:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:33:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:33:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:33:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:35:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:35:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:35:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:35:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:36:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:39:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:39:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:39:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:39:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:39:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:42:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:42:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:42:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:42:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:42:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:43:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:43:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:43:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:43:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:43:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:48:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:48:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:48:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:48:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:48:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:49:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:49:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:49:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:49:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:49:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:50:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:50:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:50:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:50:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:51:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:53:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:53:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:53:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:53:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:53:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:56:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:56:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:56:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:56:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T03:57:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:01:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:01:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:01:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:01:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:01:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:02:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:02:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:02:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:02:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:02:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:07:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:07:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:07:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:07:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:07:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:09:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:09:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:09:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:09:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:09:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:15:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:15:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:15:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:15:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:15:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:19:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:19:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:19:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:19:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:20:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:24:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:24:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:24:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:24:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:24:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:24:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:24:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:24:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:24:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:24:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:30:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:30:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:30:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:30:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:30:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:32:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:32:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:32:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:32:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:33:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:37:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:37:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:37:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:37:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:38:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:41:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:41:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:41:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:41:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:42:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:42:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:42:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:42:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:42:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:42:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:47:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:47:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:47:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:47:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:47:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:48:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:48:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:48:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:48:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:48:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:49:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:49:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:49:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:49:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:49:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:50:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:50:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:50:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:50:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:50:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:52:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:52:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:52:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:52:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:52:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:54:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:55:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:55:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:55:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:55:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:56:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:56:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:56:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:56:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T04:57:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:00:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:00:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:00:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:00:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:01:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:04:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:04:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:04:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:04:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:04:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:06:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:06:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:06:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:06:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:06:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:08:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:08:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:08:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:08:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:08:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:08:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:08:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:08:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:08:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:09:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:12:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:12:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:12:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:12:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:12:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:17:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:17:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:17:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:17:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:17:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:20:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:20:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:20:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:20:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:20:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:21:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:21:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:21:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:21:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:21:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:26:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:26:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:26:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:26:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:26:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:30:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:30:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:30:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:30:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:30:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:35:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:35:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:35:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:35:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:35:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:40:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:40:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:40:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:40:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:40:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:43:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:43:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:43:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:43:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:43:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:46:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:46:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:46:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:46:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:47:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:49:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:49:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:49:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:49:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:49:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:49:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:50:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:50:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:50:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:50:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:54:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:54:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:54:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:54:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:54:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:59:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:59:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:59:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T05:59:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:00:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:00:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:00:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:00:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:00:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:00:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:03:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:03:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:03:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:03:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:03:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:07:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:07:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:07:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:07:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:07:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:10:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:10:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:10:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:10:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:10:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:12:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:12:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:12:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:12:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:12:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:13:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:13:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:13:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:13:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:13:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:16:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:16:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:16:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:16:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:16:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:20:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:20:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:20:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:20:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:20:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:23:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:23:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:23:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:23:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:24:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:27:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:27:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:27:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:27:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:27:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:32:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:32:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:32:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:32:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:32:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:34:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:34:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:34:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:34:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:35:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:39:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:39:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:39:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:39:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:39:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:44:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:44:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:44:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:44:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:45:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:46:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:46:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:46:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:46:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:47:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:50:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:50:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:50:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:50:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:51:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:53:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:53:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:53:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:53:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:53:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:57:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:57:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:57:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:57:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T06:57:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:02:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:02:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:02:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:02:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:02:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:04:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:04:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:04:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:04:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:04:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:06:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:06:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:06:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:06:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:07:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:09:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:09:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:09:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:09:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:09:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:09:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:09:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:09:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:09:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:09:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:10:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:10:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:10:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:10:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:10:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:10:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:10:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:10:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:10:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:11:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:15:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:15:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:15:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:15:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:16:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:20:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:20:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:20:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:20:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:21:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:23:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:23:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:23:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:23:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:24:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:28:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:28:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:28:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:28:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:28:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:33:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:33:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:33:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:33:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:34:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:38:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:38:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:38: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:38:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:38:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:41:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:41:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:41:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:41:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:42:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:42:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:42:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:42:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:42:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:43:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:43:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:43:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:43:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:43:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:43:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:44:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:44:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:44:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:44:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T07:44:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:47:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-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
-2026-06-15T08:51:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T08:56:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T08:56:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T08:56: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:56:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T08:56:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:00:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:00:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:00:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:00:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:01:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:02:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:02:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:02:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:02:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:03:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:04:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:04:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:04:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:04:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:05:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:07:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:07:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:07:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:07:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:07:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:10:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:10:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:10:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:10:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:11:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:16:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:16:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:16:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:16:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:16:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:19:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:19:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:19:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:19:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:19:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:22:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:22:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:22:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:22:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:22:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:26:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:26:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:26:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:26:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:26:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:26:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:26:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:26:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:26:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:26:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:31:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:31:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:31:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:31:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:32:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:36:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:36:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:36:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:36:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:36:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:38:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:38:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:38:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:38:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:38:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:42:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:42:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:42:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:42:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:42:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:48:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:48:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:48:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:48:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:48:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:50:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:50:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:50:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:50:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:51:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:56:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:56:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:56:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:56:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:56:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:59:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:59:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:59:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:59:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T09:59:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:02:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:02:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:02:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:02:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:02:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:06:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:06:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:06:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:06:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:06:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:10:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:10:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:10:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:10:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:11:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:11:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:11:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:11:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:11:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:12:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:17:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:17:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:17:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:17:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:17:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:21:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:21:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:21:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:21:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:22:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:27:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:27:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:27:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:27:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:27:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:29:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:29:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:29:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:29:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:29:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:34:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:34:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:34:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:34:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:34:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:34:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:34:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:34:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:34:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:34:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:35:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:35:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:35:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:35:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:35:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:39:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:39:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:39:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:39:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:40:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:45:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:45:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:45:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:45:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:45:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:46:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:46:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:46:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:46:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:46:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:50:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:50:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:50:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:50:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:50:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:51:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:51:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:51:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:51:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:51:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:54:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:54:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:54:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:54:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:55:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:59:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:59:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:59:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:59:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T10:59:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:03:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:03:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:03:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:03:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:03:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:08:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:08:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:08:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:08:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:08:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:12:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:12:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:12:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:12:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:13:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:14:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:14:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:14:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:14:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:14:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:16:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:16:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11: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-15T11:16:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:16:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:20:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:20:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:20:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:20:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:20:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:21:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:21:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:21:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:21:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:22:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:25:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:25:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:25:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:25:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:25:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:26:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:26:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:26:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:26:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:26:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:31:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:31:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:31:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:31:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:32:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:33:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:33:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:33:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:33:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:33:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:33:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:33:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:33:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:33:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:33:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:37:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:37:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:37:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:37:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:37:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:42:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:42:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:42:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:42:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:42:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:46:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:46:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:46:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:46:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:46:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:51:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:51:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:51:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:51:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:51:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:52:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:52:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:52:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:52:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:53:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:56:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:56:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:56:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:56:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:57:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:59:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:59:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:59:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:59:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T11:59:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:00:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:00:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:00:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:00:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:00:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:01:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:01:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:01:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:01:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:02:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:06:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:06:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:06:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:06:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:06:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:12:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:12:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:12:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:12:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:12:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:16:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:16:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:16:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:16:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:17:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:21:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:21:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:21:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:21:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:21:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:26:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:26:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:26:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:26:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:27:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:30:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:30:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:30:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:30:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:30:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:31:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:31:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:31:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:31:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:31:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:33:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:33:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:33:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:33:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:33:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:35:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:35:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:35:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:35:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.192.7
-2026-06-15T12:35:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0

+ 0 - 1
examples/process_pipeline/script/search_eval/fixed_query_eval/.cloudflared.pid

@@ -1 +0,0 @@
-11449

+ 0 - 6384
examples/process_pipeline/script/search_eval/mode_procedure/.cloudflared.log

@@ -1,6384 +0,0 @@
-2026-06-12T02:26:50Z INF Thank you for trying Cloudflare Tunnel. Doing so, without a Cloudflare account, is a quick way to experiment and try it out. However, be aware that these account-less Tunnels have no uptime guarantee, are subject to the Cloudflare Online Services Terms of Use (https://www.cloudflare.com/website-terms/), and Cloudflare reserves the right to investigate your use of Tunnels for violations of such terms. If you intend to use Tunnels in production you should use a pre-created named tunnel by following: https://developers.cloudflare.com/cloudflare-one/connections/connect-apps
-2026-06-12T02:26:50Z INF Requesting new quick Tunnel on trycloudflare.com...
-2026-06-12T02:26:53Z INF +--------------------------------------------------------------------------------------------+
-2026-06-12T02:26:53Z INF |  Your quick Tunnel has been created! Visit it at (it may take some time to be reachable):  |
-2026-06-12T02:26:53Z INF |  https://probability-land-pairs-matters.trycloudflare.com                                  |
-2026-06-12T02:26:53Z INF +--------------------------------------------------------------------------------------------+
-2026-06-12T02:26:53Z INF Cannot determine default configuration path. No file [config.yml config.yaml] in [~/.cloudflared ~/.cloudflare-warp ~/cloudflare-warp /etc/cloudflared /usr/local/etc/cloudflared]
-2026-06-12T02:26:53Z INF Version 2026.6.0 (Checksum a13041d6ffff9d56f7df1629c24d9c0bacf4f73409d6cab0f5a1f60631ba9667)
-2026-06-12T02:26:53Z INF GOOS: darwin, GOVersion: go1.26.4, GoArch: amd64
-2026-06-12T02:26:53Z INF Settings: map[ha-connections:1 p:http2 protocol:http2 url:http://localhost:8771]
-2026-06-12T02:26:53Z INF cloudflared will not automatically update if installed by a package manager.
-2026-06-12T02:26:53Z INF Generated Connector ID: 4fd8489c-d909-4aa6-a293-1966420fbcb6
-2026-06-12T02:26:53Z INF Initial protocol http2
-2026-06-12T02:26:53Z INF ICMP proxy will use 192.168.81.52 as source for IPv4
-2026-06-12T02:26:53Z INF ICMP proxy will use ::1 in zone lo0 as source for IPv6
-2026-06-12T02:26:53Z INF Created ICMP proxy listening on 192.168.81.52:0
-2026-06-12T02:26:53Z INF Created ICMP proxy listening on [::1]:0
-2026-06-12T02:26:53Z INF ICMP proxy will use 192.168.81.52 as source for IPv4
-2026-06-12T02:26:53Z INF ICMP proxy will use ::1 in zone lo0 as source for IPv6
-2026-06-12T02:26:53Z INF Starting metrics server on 127.0.0.1:20243/metrics
-2026-06-12T02:26:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T02:26:55Z INF Registered tunnel connection connIndex=0 connection=3d05b611-3ac8-4f01-ba0c-62d52ccbcdeb event=0 ip=198.41.200.53 location=lax01 protocol=http2
-2026-06-12T02:27:00Z INF +-------------------------------------------------------------------------------------+
-2026-06-12T02:27:00Z INF |                               CONNECTIVITY PRE-CHECKS                               |
-2026-06-12T02:27:00Z INF +-------------------------------------------------------------------------------------+
-2026-06-12T02:27:00Z INF |  COMPONENT         TARGET                     STATUS  DETAILS                       |
-2026-06-12T02:27:00Z INF |  DNS Resolution    region1.v2.argotunnel.com  PASS    DNS Resolved successfully     |
-2026-06-12T02:27:00Z INF |  DNS Resolution    region2.v2.argotunnel.com  PASS    DNS Resolved successfully     |
-2026-06-12T02:27:00Z INF |  UDP Connectivity  region1.v2.argotunnel.com  PASS    QUIC connection successful    |
-2026-06-12T02:27:00Z INF |  UDP Connectivity  region2.v2.argotunnel.com  PASS    QUIC connection successful    |
-2026-06-12T02:27:00Z INF |  TCP Connectivity  region1.v2.argotunnel.com  PASS    HTTP/2 connection successful  |
-2026-06-12T02:27:00Z INF |  TCP Connectivity  region2.v2.argotunnel.com  PASS    HTTP/2 connection successful  |
-2026-06-12T02:27:00Z INF |  Cloudflare API    api.cloudflare.com:443     PASS    API is reachable              |
-2026-06-12T02:27:00Z INF |                                                                                     |
-2026-06-12T02:27:00Z INF |  SUMMARY: Environment is healthy. cloudflared will use 'quic' as primary protocol.  |
-2026-06-12T02:27:00Z INF +-------------------------------------------------------------------------------------+
-2026-06-12T02:27:00Z INF precheck component="DNS Resolution" details="DNS Resolved successfully" run_id=fd1ff4a4-2565-43cb-921a-d578429d2392 status=pass target=region1.v2.argotunnel.com
-2026-06-12T02:27:00Z INF precheck component="DNS Resolution" details="DNS Resolved successfully" run_id=fd1ff4a4-2565-43cb-921a-d578429d2392 status=pass target=region2.v2.argotunnel.com
-2026-06-12T02:27:00Z INF precheck component="UDP Connectivity" details="QUIC connection successful" run_id=fd1ff4a4-2565-43cb-921a-d578429d2392 status=pass target=region1.v2.argotunnel.com
-2026-06-12T02:27:00Z INF precheck component="UDP Connectivity" details="QUIC connection successful" run_id=fd1ff4a4-2565-43cb-921a-d578429d2392 status=pass target=region2.v2.argotunnel.com
-2026-06-12T02:27:00Z INF precheck component="TCP Connectivity" details="HTTP/2 connection successful" run_id=fd1ff4a4-2565-43cb-921a-d578429d2392 status=pass target=region1.v2.argotunnel.com
-2026-06-12T02:27:00Z INF precheck component="TCP Connectivity" details="HTTP/2 connection successful" run_id=fd1ff4a4-2565-43cb-921a-d578429d2392 status=pass target=region2.v2.argotunnel.com
-2026-06-12T02:27:00Z INF precheck component="Cloudflare API" details="API is reachable" run_id=fd1ff4a4-2565-43cb-921a-d578429d2392 status=pass target=api.cloudflare.com:443
-2026-06-12T02:27:00Z INF precheck complete hard_fail=false run_id=fd1ff4a4-2565-43cb-921a-d578429d2392 suggested_protocol=quic
-2026-06-12T12:41:25Z ERR  error="Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: dial tcp [::1]:8771: connect: connection refused" connIndex=0 event=1 ingressRule=0 originService=http://localhost:8771
-2026-06-12T12:41:25Z ERR failed to serve incoming request error="Failed to proxy HTTP: Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: dial tcp [::1]:8771: connect: connection refused"
-2026-06-12T12:41:25Z ERR  error="Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: dial tcp [::1]:8771: connect: connection refused" connIndex=0 event=1 ingressRule=0 originService=http://localhost:8771
-2026-06-12T12:41:25Z ERR failed to serve incoming request error="Failed to proxy HTTP: Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: dial tcp [::1]:8771: connect: connection refused"
-2026-06-12T12:41:44Z ERR  error="Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: dial tcp [::1]:8771: connect: connection refused" connIndex=0 event=1 ingressRule=0 originService=http://localhost:8771
-2026-06-12T12:41:44Z ERR failed to serve incoming request error="Failed to proxy HTTP: Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: dial tcp [::1]:8771: connect: connection refused"
-2026-06-12T14:58:10Z INF Lost connection with the edge connIndex=0
-2026-06-12T14:58:10Z ERR failed to serve incoming request error="Error shutting down control stream: context canceled"
-2026-06-12T14:58:10Z ERR Serve tunnel error error="connection with edge closed" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T14:58:10Z INF Retrying connection in up to 1s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T14:58:11Z ERR Connection terminated error="connection with edge closed" connIndex=0
-2026-06-12T14:58:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T14:58:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T14:58:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T14:58:28Z INF Retrying connection in up to 4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T14:58:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T14:58:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T14:58:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T14:58:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T14:58:32Z INF Retrying connection in up to 8s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T14:58:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T14:59:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T14:59:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T14:59:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T14:59:20Z INF Retrying connection in up to 16s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T14:59:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:01:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:01:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:01:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:01:28Z INF Retrying connection in up to 32s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:01:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:04:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:04:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:04:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:04:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:04:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:08:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:08:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:08:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:08:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:08:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:11:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:11:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:11:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:11:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:12:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:16:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:16:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:16:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:16:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:17:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:21:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:21:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:21:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:21:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:21:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:26:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:26:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:26:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:26:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:26:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:28:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:28:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:28:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:28:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:29:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:34:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:34:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:34:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:34:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:35:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:37:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:37:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:37:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:37:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:37:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:40:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:40:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:40:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:40:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:40:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:45:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:45:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:45:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:45:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:45:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:47:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:47:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:47:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:47:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:47:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:48:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:48:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:48:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:48:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:48:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:51:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:51:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:51:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:51:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:52:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:56:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:56:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:56:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:56:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:56:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:57:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:57:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:57:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:57:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:58:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T15:59:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:59:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T15:59:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:59:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T15:59:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:04:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:04:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:04:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:04:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:04:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:06:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:06:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:06:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:06:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:06:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:08:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:08:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:08:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:08:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:08:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:09:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:09:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:09:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:09:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:09:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:11:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:11:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:11:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:11:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:12:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:17:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:17:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:17:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:17:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:17:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:21:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:21:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:21:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:21:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:21:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:25:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:25:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:25:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:25:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:25:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:28:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:28:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:28:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:28:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:28:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:33:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:33:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:33:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:33:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:33:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:35:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:35:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:35:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:35:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:35:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:38:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:38:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:38:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:38:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:38:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:40:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:40:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:40:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:40:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:40:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:42:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:42:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:42:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:42:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:42:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:45:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:45:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:45:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:45:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:45:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:46:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:47:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:47:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:47:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:47:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:49:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:49:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:49:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:49:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:50:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:51:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:51:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:51:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:51:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:52:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:57:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:57:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:57:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:57:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:57:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T16:58:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:58:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T16:58:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:58:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T16:58:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:00:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:00:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:00:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:00:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:00:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:04:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:04:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:04:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:04:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:04:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:08:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:08:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:08:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:08:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:09:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:12:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:12:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:12:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:12:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:12:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:17:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:17:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:17:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:17:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:18:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:19:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:19:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:19:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:19:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:19:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:24:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:24:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:24:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:24:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:24:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:26:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:26:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:26:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:26:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:26:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:30:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:30:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:30:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:30:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:31:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:35:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:35:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:35:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:35:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:36:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:40:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:40:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:40:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:40:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:40:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:43:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:43:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:43:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:43:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:43:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:47:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:47:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:47:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:47:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:47:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:51:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:51:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:51:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:51:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:51:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:53:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:53:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:53:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:53:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:53:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:56:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:56:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:56:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:56:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:56:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:57:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:57:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:57:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:57:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:57:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T17:59:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:59:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T17:59:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T17:59:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:00:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:04:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:04:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:04:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:04:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:04:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:09:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:09:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:09:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:09:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:09:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:13:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:13:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:13:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:13:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:13:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:16:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:16:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:16:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:16:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:17:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:21:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:21:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:21:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:21:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:21:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:22:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:22:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:22:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:22:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:22:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:26:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:26:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:26:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:26:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:26:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:28:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:28:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:28:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:28:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:29:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:30:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:30:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:30:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:30:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:30:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:30:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:30:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:30:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:30:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:30:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:32:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:32:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:32:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:32:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:32:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:34:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:34:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:34:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:34:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:34:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:35:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:35:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:35:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:35:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:36:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:38:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:38:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:38:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:38:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:38:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:42:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:42:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:42:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:42:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:42:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:45:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:45:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:45:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:45:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:45:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:48:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:48:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:48:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:48:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:48:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:51:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:51:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:51:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:51:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:51:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:56:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:56:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:56:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:56:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:57:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T18:58:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:58:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T18:58:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:58:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T18:59:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:00:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:00:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:00:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:00:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:00:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:01:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:01:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:01:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:01:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:01:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:03:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:03:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:03:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:03:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:04:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:04:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:04:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:04:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:04:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:04:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:09:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:09:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:09:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:09:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:09:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:15:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:15:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:15:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:15:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:15:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:16:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:16:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:16:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:16:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:17:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:17:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:17:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:17:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:17:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:17:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:22:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:22:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:22:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:22:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:22:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:26:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:26:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:26:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:26:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:26:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:31:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:31:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:31:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:31:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:31:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:34:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:34:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:34:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:34:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:34:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:39:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:39:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:39:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:39:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:40:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:40:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:40:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:41:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:41:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:41:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:41:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:42:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:42:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:42:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:42:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:47:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:47:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:47:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:47:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:47:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:51:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:51:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:51:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:51:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:51:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:56:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:56:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:56:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:56:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:56:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T19:59:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:59:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T19:59:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:59:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T19:59:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:00:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:00:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:00:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:00:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:01:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:02:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:02:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:02:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:02:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:02:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:03:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:03:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:03:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:03:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:03:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:05:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:05:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:05:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:05:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:06:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:06:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:06:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:06:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:06:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:06:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:09:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:09:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:09:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:09:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:09:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:13:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:13:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:13:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:13:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:13:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:15:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:15:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:15:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:15:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:15:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:17:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:17:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:17:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:17:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:18:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:23:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:23:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:23:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:23:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:23:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:25:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:25:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:25:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:25:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:25:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:29:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:29:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:29:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:29:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:29:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:35:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:35:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:35:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:35:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:35:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:37:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:37:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:37:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:37:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:37:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:41:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:41:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:41:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:41:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:42:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:43:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:43:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:43:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:43:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:43:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:44:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:44:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:44:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:44:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:44:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:46:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:46:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:46:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:46:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:46:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:51:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:51:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:51:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:51:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:51:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:53:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:53:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:53:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:53:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:54:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T20:57:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:57:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T20:57:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:57:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T20:57:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:03:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:03:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:03:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:03:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:03:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:06:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:07:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:07:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:07:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:07:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:09:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:09:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:09:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:09:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:10:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:13:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:13:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:13:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:13:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:13:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:16:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:16:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:16:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:16:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:17:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:20:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:20:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:20:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:20:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:20:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:25:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:25:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:25:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:25:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:25:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:25:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:25:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:25:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:25:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:26:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:28:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:28:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:28:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:28:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:28:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:30:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:30:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:30:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:30:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:30:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:31:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:31:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:31:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:31:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:32:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:35:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:35:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:35:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:35:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:35:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:39:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:39:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:39:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:39:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:39:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:42:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:42:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:42:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:42:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:43:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:47:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:47:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:47:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:47:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:48:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:51:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:51:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:51:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:51:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:51:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:52:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:52:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:52:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:52:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:52:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:56:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:56:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:56:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:56:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:56:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T21:59:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:59:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T21:59:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:59:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T21:59:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:03:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:03:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22: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-12T22:03:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:04:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:09:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:09:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:09:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:09:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:09:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:14:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:14:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:14:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:14:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:14:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:17:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:17:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:17:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:17:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:18:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:22:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:22:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:22:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:22:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:22:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:25:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:25:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:25:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:25:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:25:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:26:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:26:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:26:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:26:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:26:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:28:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:28:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:28:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:28:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:28:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:33:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:33:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:33:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:33:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:34:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:37:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:37:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:37:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:37:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:38:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:40:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:40:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:40:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:40:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:41:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:42:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:42:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:42:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:42:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:43:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:43:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:43:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:43:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:43:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:44:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:49:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:49:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:49:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:49:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:49:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:49:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:49:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:49:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:49:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:49:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:53:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:53:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:53:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:53:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:53:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T22:57:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:57:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T22:57:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:57:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T22:57:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:02:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:02:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:02:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:02:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:02:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:06:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:06:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:06:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:06:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:06:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:10:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:10:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:10:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:10:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:11:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:12:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:12:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:12:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:12:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:12:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:15:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:15:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:15:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:15:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:15:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:19:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:19:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:19:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:19:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:19:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:21:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:21:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:21:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:21:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:21:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:22:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:22:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:22:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:22:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:22:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:25:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:25:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23: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-12T23:25:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:25:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:30:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:30:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:30:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:30:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:31:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:31:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:31:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:31:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:31:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:32:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:37:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:37:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:37:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:37:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:37:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:40:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:40:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:40:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:40:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:40:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:45:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:45:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:45:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:45:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:45:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:48:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:49:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:49:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:49:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:49:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:54:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:54:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:54:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:54:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:54:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:55:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:55:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:55:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:55:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:55:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-12T23:59:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:59:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-12T23:59:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-12T23:59:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:00:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:02:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:02:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:02:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:02:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:02:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:04:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:04:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:04:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:04:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:05:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:08:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:08:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:08:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:08:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:08:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:11:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:11:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:11:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:11:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:11:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:15:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:15:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:15:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:15:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:15:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:19:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:19:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:19:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:19:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:19:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:21:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:21:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:21:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:21:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:22:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:24:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:24:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:24:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:24:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:24:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:29:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:29:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:29:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:29:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:29:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:32:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:32:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:32:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:32:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:32:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:35:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:35:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:35:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:35:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:36:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:37:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:37:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:37:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:37:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:37:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:42:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:42:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:42:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:42:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:42:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:45:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:45:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:45:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:45:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:45:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:49:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:49:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:49:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:49:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:49:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:52:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:52:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:52:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:52:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:52:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:55:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:55:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:55:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:55:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:56:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T00:58:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:58:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T00:58:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:58:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T00:59:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:01:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:01:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01: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-13T01:01:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:01:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:06:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:06:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:06:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:06:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:06:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:09:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:09:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:09:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:09:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:10:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:14:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:14:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:14:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:14:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:14:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:19:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:19:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:19:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:19:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:19:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:22:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:22:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:22:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:22:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:22:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:24:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:24:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:24:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:24:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:25:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:29:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:29:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:29:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:29:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:29:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:33:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:33:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:33:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:33:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:33:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:34:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:34:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:34:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:34:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:35:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:39:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:39:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:39:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:39:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:39:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:43:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:43:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:43:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:43:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:44:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:47:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:47:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:47:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:47:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:47:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:47:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:47:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:47:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:47:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:48:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:48:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:48:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:48:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:48:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:49:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:52:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:52:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:52:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:52:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:52:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:56:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:56:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:56:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:56:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:56:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T01:57:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:57:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T01:57:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:57:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T01:57:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:02:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:02:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:02:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:02:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:03:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:03:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:04:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:04:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:04:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:04:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:08:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:08:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:08:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:08:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:09:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:12:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:12:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:12:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:12:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:12:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:14:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:14:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:14:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:14:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:14:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:17:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:17:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:17:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:17:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:18:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:18:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:18:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:18:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:18:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:18:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:18:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:18:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:18:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:18:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:19:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:23:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:23:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:23:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:23:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:24:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:29:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:29:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:29:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:29:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:29:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:32:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:32:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:32:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:32:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:32:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:33:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:33:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:33:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:33:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:34:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:37:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:37:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:37:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:37:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:38:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:39:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:39:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:39:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:39:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:39:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:41:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:41:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:41:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:41:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:42:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:47:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:47:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:47:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:47:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:47:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:48:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:48:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:48:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:48:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:48:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:53:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:53:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:53:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:53:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:53:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:53:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:53:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:53:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:53:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:54:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:55:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:55:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:55:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:55:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:55:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:58:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:58:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:58:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:58:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:58:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T02:58:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:58:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T02:58:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:58:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T02:58:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:03:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:03:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:03:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:03:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:04:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:04:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:04:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:04:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:04:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:04:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:05:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:05:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:05:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:05:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:06:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:09:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:09:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:09:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:09:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:09:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:13:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:13:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:13:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:13:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:14:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:15:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:15:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:15:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:15:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:15:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:19:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:19:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:19:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:19:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:19:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:21:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:21:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:21:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:21:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:21:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:23:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:23:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:23:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:23:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:23:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:25:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:25:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:25:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:25:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:26:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:26:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:26:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:26:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:26:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:26:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:31:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:31:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:31:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:31:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:31:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:36:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:36:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:36:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:36:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:36:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:40:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:40:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:40:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:40:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:40:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:43:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:43:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:43:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:43:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:44:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:48:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:48:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:48:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:48:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:49:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:54:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:54:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:54:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:54:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:54:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:55:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:56:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:56:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:56:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:56:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T03:57:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:57:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T03:57:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:57:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T03:58:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:02:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:02:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:02:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:02:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:03:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:04:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:04:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:04:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:04:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:04:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:05:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:05:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:05:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:05:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:05:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:07:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:07:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:07:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:07:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:08:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:13:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:13:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:13:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:13:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:13:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:13:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:14:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:14:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:14:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:14:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:18:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:18:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:18:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:18:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:18:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:23:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:23:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:23:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:23:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:23:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:23:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:23:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:23:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:23:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:24:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:28:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:28:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:28:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:28:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:28:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:33:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:33:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:33:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:33:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:33:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:36:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:36:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:36:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:36:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:36:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:36:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:36:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:36:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:36:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:37:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:41:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:41:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:41:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:41:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:42:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:44:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:44:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:44:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:44:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:45:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:48:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:48:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:48:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:48:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:48:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:48:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:48:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:48:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:48:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:49:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:54:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:54:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04:54:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:54:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:55:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T04:57:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:57:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T04: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-13T04:57:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T04:57:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:02:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:02:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:02:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:02:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:02:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:04:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:04:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:04:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:04:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:05:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:08:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:08:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:08:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:08:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:08:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:11:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:11:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:11:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:11:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:11:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:11:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:11:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:11:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:11:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:11:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:12:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:12:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:12:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:12:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:12:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:17:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:17:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:17:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:17:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:17:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:21:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:21:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:21:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:21:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:22:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:23:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:23:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:23:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:23:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:23:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:28:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:28:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:28:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:28:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:28:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:29:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:29:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:29:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:29:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:29:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:31:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:31:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:31:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:31:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:31:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:35:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:35:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:35:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:35:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:35:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:38:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:38:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:38:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:38:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:38:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:43:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:43:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:43:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:43:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:44:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:44:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:44:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:44:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:44:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:44:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:45:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:45:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:45:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:45:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:45:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:47:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:47:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:47:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:47:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:47:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:51:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:51:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:51:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:51:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:52:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:52:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:52:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:53:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:53:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:53:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:54:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:54:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:54:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:54:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:54:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T05:56:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:56:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T05:56:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:56:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T05:56:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:01:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:01:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:01:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:01:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:01:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:04:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:04:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:04:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:04:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:04:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:05:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:05:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:05:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:05:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:05:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:09:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:09:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:09:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:09:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:09:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:11:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:11:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:11:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:11:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:12:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:16:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:16:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:16:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:16:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:16:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:21:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:22:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:22:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:22:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:22:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:26:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:26:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:26:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:26:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:26:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:31:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:31:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:31:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:31:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:31:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:34:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:34:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:34:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:34:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:35:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:49:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:49:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:49:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:49:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:49:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:52:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:52:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:52:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:52:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:53:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T06:56:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:56:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T06:56:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:56:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T06:56:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:00:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:00:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:00:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:00:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:00:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:01:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:01:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:01:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:01:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:01:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:01:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:01:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:01:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:01:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:02:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:06:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:06:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:06:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:06:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:06:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:10:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:10:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:10:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:10:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:10:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:12:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:12:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:12:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:12:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:13:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:15:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:15:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:15:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:15:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:16:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:16:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:16:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:16:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:16:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:16:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:21:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:21:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:21:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:21:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:21:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:25:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:25:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:25:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:25:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:26:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:28:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:28:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:28:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:28:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:29:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:31:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:31:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:31:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:31:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:32:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:35:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:35:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:35:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:35:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:35:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:36:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:36:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:36:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:36:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:36:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:40:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:40:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:40:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:40:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:40:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:43:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:43:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:43:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:43:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:43:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:45:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:45:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:45:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:45:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:45:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:49:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:49:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:49:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:49:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:49:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:53:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:53:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:53:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:53:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:53:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:57:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:57:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:57:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:57:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:58:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T07:58:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:58:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T07:58:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:58:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T07:58:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:01:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:01:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:01:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:01:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:01:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:03:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:03:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:03:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:03:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:03:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:04:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:04:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:04:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:04:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:04:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:05:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:05:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:05:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:05:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:05:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:10:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:10:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:10:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:10:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:10:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:12:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:12:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:12:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:12:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:12:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:15:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:15:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:15:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:15:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:15:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:15:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:15:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:15:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:15:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:15:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:16:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:16:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:16:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:16:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:17:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:20:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:20:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08: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-13T08:20:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:20:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:22:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:22:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:22:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:22:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:22:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:26:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:26:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:26:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:26:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:27:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:30:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:30:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:30:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:30:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:31:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:35:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:35:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:35:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:35:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:35:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:39:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:39:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:39:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:39:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:40:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:41:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:41:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:41:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:41:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:41:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:45:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:45:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:45:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:45:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:45:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:45:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:45:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:45:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:45:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:45:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:47:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:47:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:47:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:47:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:47:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:50:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:50:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:50:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:50:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:50:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:54:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:54:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:54:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:54:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:54:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:55:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:55:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:55:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:55:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:55:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T08:57:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:57:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T08:57:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:57:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T08:57:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:02:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:02:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09: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-13T09:02:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:02:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:04:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:04:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:04:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:04:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:04:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:05:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:05:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:05:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:05:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:06:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:10:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:10:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:10:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:10:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:11:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:12:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:12:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:12:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:12:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:12:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:15:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:15:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:15:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:15:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:15:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:18:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:18:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:18:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:18:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:19:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:20:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:20:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:20:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:20:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:21:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:23:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:23:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:23:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:23:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:23:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:28:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:28:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:28:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:28:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:29:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:31:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:31:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:31:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:31:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:31:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:36:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:36:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:36:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:36:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:36:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:41:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:41:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:41:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:41:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:41:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:42:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:42:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:42:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:42:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:42:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:45:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:46:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:46:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:46:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:46:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:50:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:50:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:50:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:50:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:51:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:51:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:51:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:51:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:51:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:52:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:53:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:53:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:53:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:53:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:53:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T09:56:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:56:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T09:56:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:56:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T09:56:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:01:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:01:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:01:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:01:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:01:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:06:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:06:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:06:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:06:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:06:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:09:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:09:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:09:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:09:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:10:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:14:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:14:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:14:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:14:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:14:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:19:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:19:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:19:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:19:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:20:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:20:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:20:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:20:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:20:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:21:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:25:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:25:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:25:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:25:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:25:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:30:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:30:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:30:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:30:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:30:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:34:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:34:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:34:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:34:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:34:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:38:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:39:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:39:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:39:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:39:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:40:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:40:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:40:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:40:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:40:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:42:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:42:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:42:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:42:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:42:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:43:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:43:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:43:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:43:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:43:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:44:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:44:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:44:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:44:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:45:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:47:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:47:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:47:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:47:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:47:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:50:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:51:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:51:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:51:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:51:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:55:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:55:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:55:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:55:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:55:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T10:58:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:58:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T10:58:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:58:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T10:58:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:01:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:01:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:01:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:01:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:01:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:05:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:05:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:05:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:05:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:05:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:10:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:10:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:10:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:10:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:11:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:12:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:12:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:12:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:12:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:12:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:13:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:13:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:13:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:13:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:13:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:13:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:13:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:13:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:13:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:14:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:15:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:15:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:15:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:15:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:15:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:17:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:17:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:17:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:17:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:18:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:18:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:18:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:18:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:18:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:19:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:22:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:22:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:22:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:22:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:23:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:28:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:28:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:28:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:28:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:28:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:28:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:28:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:28:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:28:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:28:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:32:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:32:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:32:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:32:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:33:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:35:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:36:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:36:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:36:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:36:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:36:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:37:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:37:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:37:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:37:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:40:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:40:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:40:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:40:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:40:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:45:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:45:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:45:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:45:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:45:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:46:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:46:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:46:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:46:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:46:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:46:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:46:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:47:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:47:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:47:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:49:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:49:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:49:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:49:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:49:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:52:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:52:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:52:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:52:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:52:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:52:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:52:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:52:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:52:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:52:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:55:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:55:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:55:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:55:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:56:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T11:56:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:56:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T11:56:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:56:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T11:56:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:00:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:00:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:00:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:00:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:00:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:01:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:01:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:01:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:01:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:01:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:05:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:05:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:05:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:05:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:05:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:09:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:09:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:09:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:09:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:10:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:14:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:14:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:14:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:14:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:14:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:18:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:18:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:18:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:18:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:19:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:19:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:19:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:19:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:19:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:20:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:20:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:20:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:20:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:20:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:20:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:25:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:25:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:25:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:25:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:25:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:29:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:29:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:29:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:29:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:29:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:32:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:32:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:32:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:32:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:33:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:34:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:34:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:34:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:34:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:34:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:36:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:36:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:36:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:36:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:36:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:36:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:36:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:36:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:36:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:36:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:37:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:37:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:37:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:37:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:37:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:41:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:41:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:41:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:41:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:41:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:45:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:45:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:45:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:45:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:45:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:50:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:50:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:50:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:50:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:51:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:53:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:53:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:53:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:53:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:53:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T12:55:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:55:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T12:55:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:55:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T12:55:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:01:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:01:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:01:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:01:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:01:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:01:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:01:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:01:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:01:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:02:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:06:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:06:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:06:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:06:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:07:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:10:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:10:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:10:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:10:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:10:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:11:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:11:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:11:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:11:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:12:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:13:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:13:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:13:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:13:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:13:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:14:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:14:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:14:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:14:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:14:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:18:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:18:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:18:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:18:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:18:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:23:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:23:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:23:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:23:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:23:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:28:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:28:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:28:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:28:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:28:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:28:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:28:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:28:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:28:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:29:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:29:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:29:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:29:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:29:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:30:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:34:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:34:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:34:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:34:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:34:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:37:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:37:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:37:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:37:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:37:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:38:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:38:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:38:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:38:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:38:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:43:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:43:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:43:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:43:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:44:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:46:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:46:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:46:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:46:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:46:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:50:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:50:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:50:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:50:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:51:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:53:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:53:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:53:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:53:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:54:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:58:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:58:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:58:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:58:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:58:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T13:59:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:59:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T13:59:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:59:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T13:59:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:01:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:02:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:02:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:02:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:02:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:05:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:05:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:05:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:05:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:05:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:08:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:08:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:08:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:08:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:09:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:13:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:13:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:13:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:13:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:13:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:17:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:17:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:17:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:17:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:17:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:21:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:21:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:21:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:21:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:21:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:25:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:25:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:25:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:25:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:25:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:28:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:28:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:28:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:28:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:29:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:32:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:32:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:32:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:32:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:32:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:33:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:33:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:33:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:33:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:33:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:38:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:38:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:38:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:38:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:38:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:41:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:41:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:41:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:41:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:41:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:45:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:45:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:45:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:45:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:45:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:49:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:49:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:49:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:49:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:49:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:53:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:53:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:53:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:53:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:53:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:56:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:56:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:56:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:56:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:56:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:59:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:59:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:59:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:59:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:59:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T14:59:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:59:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T14:59:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:59:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T14:59:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:04:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:04:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:04:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:04:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:04:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:08:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:08:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:08:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:08:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:08:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:08:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:08:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:08:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:08:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:08:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:13:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:13:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:13:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:13:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:13:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:14:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:14:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:14:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:14:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:14:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:14:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:14:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:14:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:14:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:14:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:15:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:15:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:15:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:15:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:15:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:16:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:16:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:16:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:16:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:17:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:18:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:18:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:18:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:18:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:18:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:24:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:24:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:24:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:24:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:24:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:26:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:26:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:26:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:26:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:26:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:26:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:26:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:26:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:26:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:26:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:29:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:29:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:29:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:29:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:29:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:32:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:32:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:32:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:32:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:32:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:36:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:36:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:36:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:36:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:37:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:41:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:41:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:41:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:41:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:41:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:44:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:44:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:44:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:44:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:44:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:46:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:46:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:46:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:46:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:46:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:46:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:46:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:46:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:46:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:46:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:50:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:50:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:50:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:50:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:51:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:53:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:53:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:53:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:53:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:53:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:55:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:55:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:55:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:55:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:56:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:57:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:57:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:57:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:57:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:57:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T15:58:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:58:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T15:58:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:58:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T15:58:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:02:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:02:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:02:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:02:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:03:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:04:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:04:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:04:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:04:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:04:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:09:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:09:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:09:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:09:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:09:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:14:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:14:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:14:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:14:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:14:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:15:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:15:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:15:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:15:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:15:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:19:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:19:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:19:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:19:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:20:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:21:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:21:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:21:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:21:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:21:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:26:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:26:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:26:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:26:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:26:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:27:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:27:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:27:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:27:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:27:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:31:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:31:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:31:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:31:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:32:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:37:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:37:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:37:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:37:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:37:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:42:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:42:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:42:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:42:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:43:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:47:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:47:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:47:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:47:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:47:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:50:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:50:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:50:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:50:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:50:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:51:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:51:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:51:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:51:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:51:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:55:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:55:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:55:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:55:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:55:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T16:59:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:59:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T16:59:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:59:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T16:59:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:04:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:04:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:04:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:04:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:04:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:07:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:07:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:07:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:07:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:08:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:11:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:11:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:11:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:11:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:11:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:14:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:14:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:14:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:14:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:15:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:18:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:18:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:18:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:18:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:19:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:20:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:20:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:20:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:20:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:21:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:24:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:25:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:25:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:25:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:25:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:30:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:30:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:30:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:30:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:30:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:31:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:31:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:31:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:31:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:31:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:36:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:36:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:36:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:36:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:36:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:39:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:39:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:39:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:39:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:39:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:41:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:41:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:41:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:41:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:42:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:46:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:46:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:46:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:46:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:46:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:48:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:48:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:48:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:48:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:48:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:53:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:53:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17: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-13T17:53:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:53:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:56:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:56:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:56:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:56:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:56:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T17:58:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:58:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T17:58:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:58:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T17:58:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:01:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:01:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18: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-13T18:01:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:01:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:06:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:06:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:06:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:06:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:07:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:10:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:10:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:10:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:10:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:11:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:14:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:14:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:15:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:15:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:15:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:18:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:18:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:18:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:18:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:18:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:23:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:23:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:23:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:23:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:23:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:23:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:23:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:23:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:23:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:23:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:25:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:25:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:25:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:25:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:26:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:26:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:26:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:26:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:26:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:26:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:28:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:28:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:28:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:28:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:29:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:31:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:31:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:31:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:31:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:32:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:33:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:33:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:33:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:33:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:33:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:37:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:37:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:37:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:37:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:38:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:42:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:42:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:42:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:42:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:42:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:43:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:43:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:43:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:43:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:44:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:44:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:44:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:44:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:44:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:44:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:45:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:45:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:45:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:45:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:46:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:47:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:47:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:47:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:47:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:47:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:52:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:52:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:52:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:52:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:53:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T18:58:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:58:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T18:58:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:58:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T18:58:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:00:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:00:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:00:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:00:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:00:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:05:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:05:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:05:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:05:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:06:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:08:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:08:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:08:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:08:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:09:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:10:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:10:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:10:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:10:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:11:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:16:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:16:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:16:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:16:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:16:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:19:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:19:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:19:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:19:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:19:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:22:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:22:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:22:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:22:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:22:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:23:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:23:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:23:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:23:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:24:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:25:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:25:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:25:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:25:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:25:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:27:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:27:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:27:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:27:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:27:47Z 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.53
-2026-06-13T19:30:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:30:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:30:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:30:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:33:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:33:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:33:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:33:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:34:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:38:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:38:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:38:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:38:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:39:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:42:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:42:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:42:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:42:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:42:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:44:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:44:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:44:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:44:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:44:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:47:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:47:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:47:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:47:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:48:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:53:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:53:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:53:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:53:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:53:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:54:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:54:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:54:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:54:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:54:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:56:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:56:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:56:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:56:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:56:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T19:59:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:59:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T19:59:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:59:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T19:59:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:01:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:01:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:01:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:01:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:01:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:03:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:03:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:03:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:03:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:03:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:06:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:06:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:06:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:06:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:06:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:11:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:11:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:11:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:11:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:12:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:15:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:15:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:15:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:15:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:15:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:18:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:18:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:18:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:18:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:18:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:22:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:22:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:22:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:22:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:22:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:26:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:26:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:26:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:26:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:26:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:28:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:28:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:28:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:28:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:29:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:33:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:33:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:33:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:33:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:34:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:39:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:39:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:39:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:39:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:39:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:42:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:42:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:42:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:42:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:42:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:44:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:44:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:44:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:44:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:44:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:46:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:46:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:46:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:46:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:46:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:48:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:48:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:48:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:48:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:48:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:53:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:53:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:53:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:53:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:53:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T20:59:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:59:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T20:59:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:59:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T20:59:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:02:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:02:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:02:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:02:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:02:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:04:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:04:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:04:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:04:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:04:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:10:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:10:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:10:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:10:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:10:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:14:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:14:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:14:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:14:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:14:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:16:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:16:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:16:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:16:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:16:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:19:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:19:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:19:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:19:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:20:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:20:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:20:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:20:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:20:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:20:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:23:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:23:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:23:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:23:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:23:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:26:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:26:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:26:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:26:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:26:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:27:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:27:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:27:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:27:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:27:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:30:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:30:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:30:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:30:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:30:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:35:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:35:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:35:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:35:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:35:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:36:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:36:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:36:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:36:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:36:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:39:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:39:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:39:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:39:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:39:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:41:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:41:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:41:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:41:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:41:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:43:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:43:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:43:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:43:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:43:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:46:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:46:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:46:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:46:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:46:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:51:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:51:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:51:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:51:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:51:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:51:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:51:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:51:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:51:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:51:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:56:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:56:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:56:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:56:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:56:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T21:59:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:59:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T21:59:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:59:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T21:59:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:03:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:03:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:03:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:03:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:03:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:04:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:04:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:04:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:04:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:05:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:09:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:09:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:09:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:09:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:09:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:14:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:14:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:14:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:14:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:14:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:16:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:16:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:16:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:16:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:16:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:21:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:21:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:21:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:21:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:21:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:24:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:24:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:24:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:24:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:24:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:27:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:27:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:27:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:27:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:28:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:28:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:28:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:28:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:28:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:29:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:32:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:32:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:32:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:32:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:32:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:35:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:35:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:35:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:35:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:35:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:38:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:38:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:38:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:38:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:39:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:42:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:43:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:43:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:43:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:43:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:44:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:44:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:44:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:44:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:44:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:48:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:48:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:48:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:48:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:48:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:50:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:50:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:50:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:50:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:50:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:50:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:50:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:50:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:50:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:51:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:55:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:55:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:55:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:55:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:56:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T22:59:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:59:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T22:59:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T22:59:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:00:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:05:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:05:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:05:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:05:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:05:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:09:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:09:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:09:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:09:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:09:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:13:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:13:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:13:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:13:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:13:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:14:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:14:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:14:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:14:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:14:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:19:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:19:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:19:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:19:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:19:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:23:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:23:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:23:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:23:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:24:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:29:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:29:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:29:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:29:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:29:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:30:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:30:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:30:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:30:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:31:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:35:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:35:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:35:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:35:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:36:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:39:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:39:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:39:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:39:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:40:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:41:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:41:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:41:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:41:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:41:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:46:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:46:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:46:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:46:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:46:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:48:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:48:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:48:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:48:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:48:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:49:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:49:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:49:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:49:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:49:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:54:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:54:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:54:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:54:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:54:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:54:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:54:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:54:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:54:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:55:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:59:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:59:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:59:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:59:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-13T23:59:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:04:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:04:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:04:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:04:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:04:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:05:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:05:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:05:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:05:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:06:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:06:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:06:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:06:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:06:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:06:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:11:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:11:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:11:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:11:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:11:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:14:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:14:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:14:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:14:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:14:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:18:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:18:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:18:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:18:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:19:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:21:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:21:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:21:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:21:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:21:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:24:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:24:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:24:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:24:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:24:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:28:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:28:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:28:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:28:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:29:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:32:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:32:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:32:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:32:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:32:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:36:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:36:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:36:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:36:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:36:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:38:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:38:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:38:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:38:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:39:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:42:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:42:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:42:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:42:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:42:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:44:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:44:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:44:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:44:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:45:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:46:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:46:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:46:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:46:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:46:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:46:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:47:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:47:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:47:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:47:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:51:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:51:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:51:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:51:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:51:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:55:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:55:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:55:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:55:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:55:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:59:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:59:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:59:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T00:59:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:00:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:05:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:05:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:05:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:05:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:05:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:06:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:06:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:06:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:06:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:06:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:08:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:08:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:08:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:08:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:08:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:12:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:12:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:12:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:12:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:12:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:16:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:16:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:16:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:16:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:16:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:20:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:20:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:20:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:20:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:21:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:26:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:26:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:26:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:26:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:26:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:30:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:30:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:31:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:31:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:31:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:36:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:36:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:36:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:36:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:36:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:37:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:38:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:38:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:38:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:38:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:41:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:41:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:41:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:41:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:41:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:46:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:46:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:46:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:46:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:46:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:50:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:50:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:50:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:50:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:50:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:50:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:51:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:51:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:51:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:51:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:53:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:53:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:53:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:53:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:53:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:58:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:58:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:58:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:58:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:58:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:59:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:59:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:59:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:59:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T01:59:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:00:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:00:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:00:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:00:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:00:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:01:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:01:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:01:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:01:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:02:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:06:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:06:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:06:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:06:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:07:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:07:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:07:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:07:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:07:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:08:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:08:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:08:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:08:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:08:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:08:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:13:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:13:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:13:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:13:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:13:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:18:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:18:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:18:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:18:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:18:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:23:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:23:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:23:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:23:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:24:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:25:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:25:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:25:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:25:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:25:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:26:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:26:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:26:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:26:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:26:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:29:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:29:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:29:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:29:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:29:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:34:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:34:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:34:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:34:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:34:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:37:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:37:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:37:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:37:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:38:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:41:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:41:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:41:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:41:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:41:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:43:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:43:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:43:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:43:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:43:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:44:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:44:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:44:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:44:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:44:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:45:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:45:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:45:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:45:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:45:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:50:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:50:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:50:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:50:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:50:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:51:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:51:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:51:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:51:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:52:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:53:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:53:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:53:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:53:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:54:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:54:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:54:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:54:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:54:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:55:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:57:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:57:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:57:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:57:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T02:57:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:00:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:00:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:00:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:00:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:00:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:01:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:01:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:01:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:01:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:02:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:04:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:04:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:04:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:04:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:05:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:06:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:06:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:06:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:06:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:06:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:11:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:11:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:11:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:11:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:12:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:14:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:14:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:14:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:14:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:14:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:19:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:19:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:19:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:19:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:19:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:21:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:21:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:21:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:21:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:22:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:24:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:24:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:24:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:24:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:24:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:28:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:28:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:28:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:28:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:29:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:31:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:31:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:31:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:31:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:31:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:34:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:34:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:34:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:34:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:34:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:38:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:38:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:38:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:38:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:39:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:41:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:41:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:41:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:41:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:42:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:42:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:42:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:42:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:42:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:43:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:43:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:43:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:43:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:43:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:43:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:48:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:48:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:49:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:49:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:49:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:52:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:52:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:52:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:52:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T03:53:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:17:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:17:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:17:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:17:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:17:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:20:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:20:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:20:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:20:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:21:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:26:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:26:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:26:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:26:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:26:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:29:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:29:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:29:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:29:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:29:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:32:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:32:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:32:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:32:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:32:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:35:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:35:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:35:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:35:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:35:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:39:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:39:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:39:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:39:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:39:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:40:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:40:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:40:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:40:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T04:56:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T09:01:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T09:01:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T09:01:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T09:01:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T09:18:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T12:07:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T12:07:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T12:07:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T12:07:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T12:07:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T13:19:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T13:19:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T13:19:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T13:19:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T13:28:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T16:50:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T16:50:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T16:50:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T16:50:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T17:41:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T18:27:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026/06/15 02:43:58 http2: server: error reading preface from client 198.41.200.53:7844: read tcp 192.168.0.106:61011->198.41.200.53:7844: read: connection reset by peer
-2026-06-14T18:43:58Z INF Lost connection with the edge connIndex=0
-2026-06-14T18:43:58Z ERR Serve tunnel error error="connection with edge closed" connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T18:43:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-14T19:00:34Z ERR Connection terminated error="connection with edge closed" connIndex=0
-2026-06-15T02:14:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:14:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:14:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:14:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:15:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:18:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:18:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:18:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:18:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:18:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:22:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:22:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:22:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:22:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:22:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:23:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:23:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:23:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:23:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:23:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:25:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:25:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:25:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:25:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:25:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:26:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:26:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:26:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:26:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:26:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:30:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:30:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:30:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:30:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:30:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:34:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:34:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:34:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:34:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:35:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:35:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:35:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:35:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:35:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:36:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:40:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:40:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:40:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:40:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:41:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:41:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:41:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:41:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:41:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:42:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:43:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:43:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:43:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:43:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:43:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:44:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:44:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:44:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:44:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:44:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:45:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:45:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:45:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:45:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:45:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:47:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:47:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:47:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:47:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:48:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:49:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:49:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:49:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:49:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:49:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:50:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:50:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:50:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:50:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:51:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:55:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:55:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:55:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:55:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:56:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:56:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:56:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:56:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:56:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:56:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:59:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:59:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:59:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T02:59:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:00:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:01:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:01:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:01:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:01:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:01:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:02:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:02:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:02:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:02:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:02:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:07:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:07:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:07:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:07:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:07:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:10:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:10:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:10:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:10:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:10:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:10:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:10:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:10:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:10:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:10:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:13:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:13:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:13:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:13:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:14:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:17:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:17:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:17:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:17:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:17:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:17:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:17:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:17:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:17:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:17:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:18:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:18:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:18:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:18:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:18:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:20:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:20:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:20:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:20:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:20:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:21:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:21:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:21:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:21:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:21:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:24:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:24:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:24:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:24:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:25:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:25:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:25:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:25:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:25:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:26:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:29:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:29:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:29:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:29:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:29:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:30:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:30:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:30:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:30:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:30:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:33:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:33:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:33:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:33:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:33:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:36:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:36:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:36:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:36:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:36:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:37:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:37:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:37:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:37:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:37:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:41:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:41:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:41:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:41:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:42:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:47:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:47:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:47:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:47:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:47:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:49:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:49:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:49:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:49:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:49:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:50:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:50:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:50:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:50:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:50:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:52:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:52:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:52:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:52:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:52:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:54:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:54:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:54:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:54:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:55:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:59:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:59:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:59:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:59:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T03:59:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:01:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:01:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:01:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:01:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:01:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:03:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:03:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:03:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:03:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:03:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:05:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:05:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:05:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:05:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:05:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:07:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:07:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:07:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:07:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:08:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:11:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:11:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:11:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:11:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:11:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:13:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:13:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:13:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:13:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:13:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:16:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:16:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04: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-15T04:16:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:16:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:18:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:18:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:18:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:18:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:19:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:19:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:19:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:19:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:19:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:20:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:21:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:21:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:21:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:21:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:21:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:24:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:24:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:24:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:24:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:24:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:24:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:24:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:24:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:24:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:24:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:25:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:25:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:25:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:25:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:25:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:29:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:29:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:29:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:29:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:29:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:31:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:31:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:31:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:31:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:32:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:35:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:35:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:35:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:35:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:35:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:35:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:35:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:35:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:35:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:35:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:36:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:36:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:36:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:36:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:36:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:39:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:39:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:39:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:39:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:40:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:43:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:43:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:43:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:43:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:43:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:48:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:48:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:48:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:48:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:48:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:49:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:49:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:49:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:49:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:50:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:53:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:53:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:53:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:53:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:54:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:55:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:55:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:55:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:55:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:56:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:59:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:59:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:59:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:59:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T04:59:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:03:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:03:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:03:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:03:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:04:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:08:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:08:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:08:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:08:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:08:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:11:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:11:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:11:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:11:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:11:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:16:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:16:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:16:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:16:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:16:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:20:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:21:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:21:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:21:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:21:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:22:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:22:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:22:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:22:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:22:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:27:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:27:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:27:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:27:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:27:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:32:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:32:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:32:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:32:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:32:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:36:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:36:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:36:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:36:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:36:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:38:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:38:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:38:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:38:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:39:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:42:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:42:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:42:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:42:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:42:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:44:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:44:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:44:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:44:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:45:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:46:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:46:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:46:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:46:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:46:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:47:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:47:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:47:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:47:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:47:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:48:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:48:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:48:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:48:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:49:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:49:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:49:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:49:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:49:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:50:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:54:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:54:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:54:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:54:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T05:54:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:00:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:00:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:00:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:00:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:00:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:00:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:00:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:00:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:00:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:00:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:02:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:03:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:03:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:03:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:03:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:06:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:06:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:06:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:06:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:07:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:11:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:11:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:11:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:11:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:11:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:15:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:15:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:15:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:15:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:15:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:19:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:19:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:19:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:19:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:19:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:21:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:21:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:21:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:21:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:21:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:22:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:22:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:22:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:22:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:22:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:24:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:24:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:24:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:24:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:25:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:28:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:28:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:28:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:28:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:28:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:29:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:29:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:29:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:29:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:29:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:33:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:33:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:33:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:33:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:33:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:37:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:37:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:37:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:37:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:37:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:42:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:42:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:42:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:42:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:42:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:44:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:44:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:44:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:44:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:45:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:47:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:47:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:47:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:47:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:47:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:49:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:49:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:49:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:49:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:50:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:54:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:54:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:54:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:54:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:54:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:57:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:57:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:57:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:57:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:57:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:59:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:59:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:59:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T06:59:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:00:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:02:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:02:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:02:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:02:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:02:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:05:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:05:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:05:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:05:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:05:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:06:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:06:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:06:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:06:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:06:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:07:39Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:07:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:07:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:07:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:08:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:08:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:08:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:08:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:08:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:08:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:12:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:12:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:12:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:12:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:13:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:14:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:14:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:14: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:14:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:14:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:14:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:14:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:14: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:14:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:14:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:17:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:17:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:17:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:17:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:17:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:17:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:17:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:17: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:17:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:17:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:22:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:22:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:22:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:22:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:22:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:24:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:24:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:24:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:24:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:24:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:28:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:28:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:28:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:28:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:28:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:31:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:31:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:31: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:31:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:32:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:33:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:33:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:33:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:33:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:33:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:35:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:35:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:35:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:35:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:35:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:38:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:38:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:38:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:38:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:39:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:43:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:43:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:43:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:43:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:43:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:46:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T07:46:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-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
-2026-06-15T08:52:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T08:52:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T08:52:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T08:52:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T08:53:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T08:58:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T08:58:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T08:58:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T08:58:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T08:58:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:00:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:00:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:00:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:00:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:01:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:02:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:02:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:02:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:02:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:02:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:04:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:04:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:04:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:04:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:04:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:08:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:08:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:08:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:08:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:08:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:11:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:11:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:11:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:11:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:11:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:14:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:14:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:14:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:14:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:14:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:18:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:18:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:18:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:18:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:18:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:20:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:20:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:20:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:20:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:20:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:24:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:24:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:24:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:24:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:24:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:28:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:29:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:29:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:29:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:29:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:29:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:29:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:29:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:29:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:29:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:30:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:30:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:30:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:30:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:30:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:31:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:31:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:31:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:31:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:32:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:35:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:35:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:35:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:35:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:35:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:40:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:40:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:40:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:40:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:41:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:44:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:44:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:44:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:44:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:45:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:50:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:50:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:50:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:50:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:50:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:50:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:50:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:50:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:50:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:51:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:54:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:54:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:54:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:54:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:54:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:55:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:55:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:55:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:55:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T09:55:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:00:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:00:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:00:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:00:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:00:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:02:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:02:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:02:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:02:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:02:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:06:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:06:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:06:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:06:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:06:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:07:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:07:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:07:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:07:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:07:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:08:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:08:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:08:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:08:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:08:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:11:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:11:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:11:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:11:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:11:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:15:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:15:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:15:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:15:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:16:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:18:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:18:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:18:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:18:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:19:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:23:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:23:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:23:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:23:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:24:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:26:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:26:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:26:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:26:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:26:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:27:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:27:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:27:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:27:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:27:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:28:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:28:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:28:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:28:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:28:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:31:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:31:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:31:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:31:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:31:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:34:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:34:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:34:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:34:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:35:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:39:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:39:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:39:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:39:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:39:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:42:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:42:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:42:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:42:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:42:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:44:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:44:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:44:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:44:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:44:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:48:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:48:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:48:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:48:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:49:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:51:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:51:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:51:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:51:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:52:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:57:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:57:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:57:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:57:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T10:57:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:01:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:01:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:01:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:01:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:02:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:06:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:06:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:06:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:06:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:06:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:09:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:09:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:09:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:09:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:09:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:13:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:13:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:13:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:13:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:13:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:17:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:17:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:17:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:17:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:17:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:21:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:21:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:21:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:21:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:21:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:21:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:21:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:21:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:21:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:21:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:24:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:24:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:24:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:24:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:24:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:28:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:28:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:28:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:28:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:29:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:32:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:32:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:32:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:32:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:33:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:35:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:35:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:35:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:35:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:35:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:36:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:36:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:36:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:36:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:37:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:37:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:37:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:37:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:37:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:37:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:42:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:42:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:42:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:42:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:42:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:47:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:47:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:47:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:47:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:47:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:52:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:52:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:52:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:52:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:52:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:55:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:55:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:55:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:55:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:55:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:59:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:59:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:59:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:59:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T11:59:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:03:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:04:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:04:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:04:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:04:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:05:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:05:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:05:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:05:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:05:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:06:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:06:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:06:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:06:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:06:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:11:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:11:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:11:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:11:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:11:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:12:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:12:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:12:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:12:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:12:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:13:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:13:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:13:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:13:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:14:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:19:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:19:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:19:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:19:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:19:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:23:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:23:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:23:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:23:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:24:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:25:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:25:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:25:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:25:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:25:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:28:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:28:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:28:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:28:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:29:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:29:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:29:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:29:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:29:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:30:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:33:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:33:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:33:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:33:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:33:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:35:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:35:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:35:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:35:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:36:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:37:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:37:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:37:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:37:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.53
-2026-06-15T12:37:47Z 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-13T23:43:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T23:43:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:46:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T23:46:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:46:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T23:46:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T23:46:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:49:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T23:49:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:49:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T23:49:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T23:50:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:54:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T23:54:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:54:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T23:54:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T23:54:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:57:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T23:57:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:57:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T23:57:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T23:58:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-13T23:59:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T23:59:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-13T23:59:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-13T23:59:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:00:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:03:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:03:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:03:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:03:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:03:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:05:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:05:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:05:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:05:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:05:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:08:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:08:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:08:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:08:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:08:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:09:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:09:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:09:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:09:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:09:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:10:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:10:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:10:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:10:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:10:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:13:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:13:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:13:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:13:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:13:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:16:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:16:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:16:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:16:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:17:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:17:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:17:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:17:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:17:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:17:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:18:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:18:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:18:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:18:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:18:34Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:19:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:19:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:19:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:19:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:19:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:21:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:21:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:21:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:21:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:21:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:24:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:24:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:24:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:24:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:24:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:25:42Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:25:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:25:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:25:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:26:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:28:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:28:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:28:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:28:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:29:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:34:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:34:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:34:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:34:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:34:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:35:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:35:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:35:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:35:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:35:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:41:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:41:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:41:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:41:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:41:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:44:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:44:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:44:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:44:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:44:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:46:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:46:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:46:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:46:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:46:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:48:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:48:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:48:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:48:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:49:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:54:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:54:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:54:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:54:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:54:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T00:59:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:59:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T00:59:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:59:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T00:59:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:00:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:00:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:00:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:00:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:01:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:04:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:04:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:04:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:04:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:05:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:08:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:08:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:08:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:08:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:08:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:10:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:10:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:10:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:10:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:11:10Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:15:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:15:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:15:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:15:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:15:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:20:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:20:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:20:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:20:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:20:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:25:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:25:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:25:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:25:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:25:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:30:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:30:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:30:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:30:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:30:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:32:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:32:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:32:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:32:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:32:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:35:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:35:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:35:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:35:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:35:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:40:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:40:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:40:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:40:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:41:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:43:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:43:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:43:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:43:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:43:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:47:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:47:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:47:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:47:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:47:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:48:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:48:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:48:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:48:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:48:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:53:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:53:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:53:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:53:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:54:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:55:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:55:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:55:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:55:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:56:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T01:58:54Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:58:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T01:58:56Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:58:56Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T01:59:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:01:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:01:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:01:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:01:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:01:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:05:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:05:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:05:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:05:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:05:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:05:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:05:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:05:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:05:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:06:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:08:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:08:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:08:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:08:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:08:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:11:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:11:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:11:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:11:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:11:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:14:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:14:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:14:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:14:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:14:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:15:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:15:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:15:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:15:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:16:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:16:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:16:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:16:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:16:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:16:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:20:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:20:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:20:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:20:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:20:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:24:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:24:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:24:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:24:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:24:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:26:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:26:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:26:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:26:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:26:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:29:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:29:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:29:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:29:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:29:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:33:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:33:55Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:33:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:33:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:34:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:35:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:35:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:35:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:35:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:36:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:41:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:41:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:41:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:41:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:41:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:43:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:43:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:43:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:43:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:43:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:47:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:47:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:47:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:47:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:47:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:50:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:50:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:50:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:50:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:50:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:50:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:50:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:50:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:50:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:51:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:55:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:55:32Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:55:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:55:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:55:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T02:57:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:57:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T02:57:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:57:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T02:57:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:00:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:00:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:00:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:00:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:00:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:04:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:04:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:04:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:04:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:05:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:06:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:06:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:06:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:06:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:06:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:07:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:07:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:07:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:07:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:07:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:10:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:10:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:10:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:10:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:10:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:13:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:13:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:13:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:13:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:13:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:15:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:15:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:15:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:15:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:15:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:15:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:15:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:15:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:15:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:15:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:16:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:16:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:16:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:16:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:16:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:21:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:21:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:21:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:21:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:21:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:22:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:22:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:22:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:22:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:22:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:27:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:27:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:27:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:27:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:27:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:27:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:27:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:27:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:27:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:28:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:28:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:28:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:28:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:28:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:29:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:31:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:31:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:31:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:31:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:31:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:32:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:32:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:32:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:32:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:33:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:38:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:38:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:38:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:38:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:38:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:42:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:42:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:42:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:42:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:42:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:47:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:47:43Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:47:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:47:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:48:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:53:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:53:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:53:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:53:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:53:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T03:55:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:55:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T03:55:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:55:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T03:55:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:19:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:19:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:19:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:19:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:20:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:20:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:20:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:20:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:20:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:20:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:24:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:24:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:24:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:24:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:24:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:27:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:27:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:27:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:27:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:27:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:29:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:29:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:29:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:29:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:29:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:29:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:29:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:29:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:29:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:29:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:31:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:31:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:31:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:31:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:31:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:35:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:36:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:36:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:36:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:36:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:39:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:39:39Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04:39:39Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:39:39Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:39:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:40:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:40:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T04: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-14T04:40:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T04:41:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T04:41:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T05:06:22Z ERR Unable to establish connection with Cloudflare edge error="TLS handshake with edge error: read tcp 192.168.0.106:57168->198.41.200.63:7844: i/o timeout" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T05:06:22Z ERR Serve tunnel error error="TLS handshake with edge error: read tcp 192.168.0.106:57168->198.41.200.63:7844: i/o timeout" connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T05:06:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.63
-2026-06-14T05:38:04Z ERR Connection terminated error="TLS handshake with edge error: read tcp 192.168.0.106:57168->198.41.200.63:7844: i/o timeout" connIndex=0
-2026-06-14T09:01:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-14T09:01:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T09:01:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-14T09:01:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-14T09:01:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T12:07:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-14T12:07:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T12:07:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-14T12:07:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-14T12:41:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-14T16:33:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-14T16:33:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-14T16:33:42Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-14T16:33:42Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-14T16:33:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:13:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:13:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:13:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:13:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:14:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:18:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:18:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:18:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:18:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:19:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:21:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:21:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:21:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:21:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:21:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:26:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:26:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:26:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:26:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:26:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:27:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:27:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:27:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:27:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:27:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:30:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:30:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:30:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:30:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:30:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:34:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:34:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:34:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:34:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:35:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:37:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:37:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:37:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:37:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:38:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:41:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:41:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:41:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:41:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:42:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:45:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:45:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:45:52Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:45:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:46:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:46:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:46:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:46:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:46:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:46:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:48:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:48:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:48:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:48:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:48:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:49:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:49:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:49:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:49:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:49:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:50:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:50:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:50:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:50:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:50:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T02:54:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:54:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T02:54:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:54:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T02:54:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:00:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:00:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:00:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:00:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:00:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:04:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:04:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:04:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:04:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:04:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:08:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:08:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:08:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:08:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:08:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:08:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:08:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:08:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:08:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:08:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:13:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:13:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:13:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:13:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:13:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:17:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:17:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:17:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:17:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:17:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:19:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:19:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:19:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:19:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:19:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:23:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:23:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:23:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:23:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:23:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:26:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:26:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:26:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:26:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:27:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:29:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:29:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:29:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:29:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:29:33Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:34:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:34:25Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:34:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:34:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:34:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:35:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:35:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:35:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:35:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:35:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:40:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:40:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03: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-15T03:40:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:40:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:41:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:41:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:41:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:41:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:41:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:45:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:45:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:45:51Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:45:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:46:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:48:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:48:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:48:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:48:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:48:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:53:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:53:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:53:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:53:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:53:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T03:58:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:58:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T03:58:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:58:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T03:59:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:00:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:00:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:00:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:00:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:00:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:05:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:05:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:05:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:05:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:05:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:10:19Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:10:20Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:10:20Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:10:20Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:10:45Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:11:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:11:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:11:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:11:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:11:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:14:40Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:14:41Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:14:41Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:14:41Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:15:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:17:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:17:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:17:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:17:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:17:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:20:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:20:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:20:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:20:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:20:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:22:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:22:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:22:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:22:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:22:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:26:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:26:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:26:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:26:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:26:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:27:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:27:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:27:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:27:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:28:07Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:29:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:29:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:29:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:29:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:29:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:30:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:30:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:30:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:30:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:30:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:35:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:35:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:35:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:35:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:35:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:39:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:39:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:39:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:39:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:40:00Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:43:25Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:43:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:43:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:43:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:43:56Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:45:29Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:45:30Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:45:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:45:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:46:01Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:50:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:50:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:50:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:50:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:50:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:51:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:51:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:51:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:51:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:51:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:54:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:54:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:54:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:54:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:55:04Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T04:57:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:57:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T04:57:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:57:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T04:58:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:03:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:03:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:03:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:03:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:03:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:07:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:07:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:07:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:07:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:07:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:08:55Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:08:56Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:08:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:08:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:09:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:14:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:14:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:14:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:14:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:14:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:16:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:16:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:16:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:16:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:17:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:22:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:22:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:22:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:22:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:22:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:24:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:24:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:24:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:24:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:24:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:28:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:28:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:28:32Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:28:32Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:28:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:32:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:32:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:32:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:32:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:33:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:34:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:34:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:34:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:34:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:34:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:35:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:35:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:35:09Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:35:09Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:35:29Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:35:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:35:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:35:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:35:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:35:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:36:30Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:36:31Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:36:31Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:36:31Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:37:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:41:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:41:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:41:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:41:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:41:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:46:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:46:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:46:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:46:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:46:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:50:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:50:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:51:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:51:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:51:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:54:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:54:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:54:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:54:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:54:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:55:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:55:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:55:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:55:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:55:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:57:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:57:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:57:30Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:57:30Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:57:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T05:57:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:57:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T05:57:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:57:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T05:57:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:02:58Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:02:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:02:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:02:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:03:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:03:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:03:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:03:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:03:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:03:53Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:07:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:07:04Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:07:04Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:07:04Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:07:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:10:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:10:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:10:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:10:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:11:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:11:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:11:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:11:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:11:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:11:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:13:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:13:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:13:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:13:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:13:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:18:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:18:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:18:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:18:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:18:36Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:23:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:23:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:23:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:23:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:23:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:24:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:25:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:25:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:25:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:25:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:27:49Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:27:50Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:27:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:27:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:28:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:32:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:32:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:32:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:32:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:32:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:33:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:33:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:33:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:33:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:33:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:35:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:35:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:35:57Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:35:57Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:36:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:40:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:40:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:40:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:40:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:41:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:43:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:43:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:43:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:43:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:43:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:48:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:48:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:48:03Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:48:03Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:48:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:51:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:51:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:51:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:51:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:51:43Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:54:15Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:54:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:54:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:54:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:54:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:58:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:58:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:58:23Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:58:23Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:58:35Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:58:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:58:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:58:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:58:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:58:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T06:59:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:59:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T06:59:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:59:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T06:59:25Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:02:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:03:00Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:03:00Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:03:00Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:03:03Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:06:38Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:06:40Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:06:40Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:06:40Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:07:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:09:50Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:09:51Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:09: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:09:51Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:10:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:13:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:13:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:13:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:13:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:14:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:16:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:16:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:16:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:16:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:17:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:19:28Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:19:29Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:19:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:19:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:19:31Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:20:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:20:10Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:20:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:20:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:20:27Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:24:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:24:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:24:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:24:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:24:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:29:08Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:29:09Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:29:10Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:29:10Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:29:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:30:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:30:59Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:30:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:30:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:31:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:33:37Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:33:38Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:33:38Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:33:38Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:33:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:34:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:34:16Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:34:16Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:34:16Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:34:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:36:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:36:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:36:55Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:36:55Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:36:55Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:40:24Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:40:26Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:40:26Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:40:26Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:40:50Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:41:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:41:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T07:41:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:41:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:41:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T07:46:02Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T07:46:03Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-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
-2026-06-15T08:53:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T08:53:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T08:53: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:53:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T08:53:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T08:58:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T08:58:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T08:58:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T08:58:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T08:58:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:00:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:00:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:00:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:00:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:00:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:02:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:02:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:02:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:02:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:02:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:06:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:06:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:06:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:06:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:06:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:07:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:07:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:07:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:07:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:08:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:09:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:09:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:09:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:09:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:09:57Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:10:21Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:10:22Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:10:22Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:10:22Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:10:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:15:44Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:15:45Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:15:45Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:15:45Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:16:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:19:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:19:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:19:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:19:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:20:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:24:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:24:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:24:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:24:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:24:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:28:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:28:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:28:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:28:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:28:23Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:33:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:33:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:33:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:33:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:33:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:34:47Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:34:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:34:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:34:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:35:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:36:45Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:36:46Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:36:46Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:36:46Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:37:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:41:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:41:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09: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-15T09:41:52Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:42:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:46:56Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:46:57Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:46:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:46:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:47:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:50:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:50:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:50:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:50:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:50:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:53:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:53:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:53:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:53:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:53:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:57:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:57:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:57:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:57:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:57:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:57:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:57:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:57:59Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:57:59Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:58:05Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T09:59:05Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:59:06Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T09:59:06Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:59:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T09:59:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:04:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:04:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:04:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:04:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:04:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:05:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:05:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:05:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:05:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:06:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:06:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:06:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:06:35Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:06:35Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:06:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:11:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:11:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:11:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:11:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:11:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:16:01Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:16:02Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:16:02Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:16:02Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:16:18Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:19:34Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:19:35Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:19:36Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:19:36Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:19:37Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:23:53Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:23:54Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:23:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:23:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:23:58Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:24:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:24:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:24:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:24:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:24:49Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:25:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:25:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:25:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:25:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:25:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:30:18Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:30:19Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:30:19Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:30:19Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:30:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:33:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:33:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:33:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:33:06Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:33:06Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:37:13Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:37:14Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:37:14Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:37:14Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:37:41Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:40:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:40:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:40:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:40:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:40:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:41:36Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:41:37Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:41:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:41:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:41:48Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:46:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:46:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:46:50Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:46:50Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:47:02Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:51:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:51:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:51:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:51:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:51:21Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:53:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:53:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:53:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:53:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:53:08Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:53:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:53:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:53:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:53:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:53:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:54:06Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:54:07Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:54:07Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:54:07Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:54:20Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T10:57:22Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:57:23Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T10:57:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:57:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T10:57:24Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:02:17Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:02:18Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:02:18Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:02:18Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:02:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:03:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:03:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:03:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:03:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:03:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:05:51Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:05:52Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:05:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:05:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:05:59Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:06:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:06:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:06:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:06:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:06:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:08:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:08:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:08:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:08:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:08:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:14:00Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:14:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:14:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:14:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:14:30Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:17:31Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:17:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:17:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:17:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:17:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:18:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:18:47Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:18:47Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:18:47Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:18:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:22:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:22:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:22:28Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:22:28Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:22:51Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:25:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:25:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:25:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:25:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:25:54Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:29:57Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:29:58Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:29:58Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:29:58Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:30:14Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:30:16Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:30:17Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:30:17Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:30:17Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:30:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:31:20Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:31:21Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:31:21Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:31:21Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:31:52Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:33:11Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:33:12Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:33:12Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:33:12Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:33:42Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:35:10Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:35:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:35:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:35:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:35:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:37:35Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:37:36Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:37:37Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:37:37Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:37:46Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:39:26Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:39:27Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:39:27Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:39:27Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:39:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:39:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:39:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:39:53Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:39:53Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:40:15Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:43:04Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:43:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:43:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:43:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:43:26Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:47:03Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:47:05Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:47:05Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:47:05Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:47:16Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:50:32Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:50:33Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:50:33Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:50:33Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:50:40Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:52:07Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:52:08Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:52:08Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:52:08Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:52:09Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T11:56:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:56:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T11:56:25Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:56:25Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T11:56:44Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:01:33Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:01:34Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:01:34Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:01:34Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:01:38Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:02:27Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:02:28Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:02:29Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:02:29Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:02:32Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:05:59Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:06:01Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:06:01Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:06:01Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:06:12Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:08:09Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:08:11Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:08:11Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:08:11Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:08:28Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:10:41Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:10:42Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:10:43Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:10:43Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:10:47Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:14:23Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:14:24Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:14:24Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:14:24Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:14:39Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:19:12Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:19:13Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:19:13Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:19:13Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:19:19Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:21:52Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:21:53Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:21:54Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:21:54Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:22:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:23:48Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:23:49Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:23:49Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:23:49Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:24:17Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:29:14Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:29:15Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:29:15Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:29:15Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:29:22Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:33:46Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:33:48Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:33:48Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:33:48Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:34:13Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0
-2026-06-15T12:36:43Z INF Tunnel connection curve preferences: [X25519MLKEM768 CurveID(65074) CurveP256] connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:36:44Z ERR failed to serve incoming request error="Unauthorized: Tunnel not found"
-2026-06-15T12:36:44Z ERR Register tunnel error from server side error="Unauthorized: Tunnel not found" connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:36:44Z INF Retrying connection in up to 1m4s connIndex=0 event=0 ip=198.41.200.73
-2026-06-15T12:37:11Z ERR Connection terminated error="Unauthorized: Tunnel not found" connIndex=0

+ 0 - 1
examples/process_pipeline/script/search_eval/mode_procedure/.cloudflared.pid

@@ -1 +0,0 @@
-86090