Skip to content

Bad wireguard inbound design #4760

@alexbarotur

Description

@alexbarotur

Integrity requirements

  • I confirm that I have read the documentation, understand the meaning of all the configuration items I wrote, and did not pile up seemingly useful options or default values.
  • I provided the complete config and logs, rather than just providing the truncated parts based on my own judgment.
  • I searched issues and did not find any similar issues.
  • The problem can be successfully reproduced in the latest Release

Description

Domain based routing not working. I already asked this question in the forum #4653

Hello. I installed and configured X-ray by x-ui. I have following scheme:
router connected by wireguard (inbound named as inbound-26675) to local X-ray installed on raspberry pi. X-ray on that raspberry should route my ru-traffic to the direct outbound and all other traffic to remote x-ray installed on vps (named in config as is_vmess). This scheme worked for some time but has been broken a months ago after upgrading xray. Now all traffic included ru from wireguard (and from other inbounds I tested as in this config) routed to one destination (is_vmess) and ignore domain routing. I waited for a months by upgrading xray for a fix, but it still not working. May be you can help me what wrong with my config or so.

But no one replied with the solution, but several people confirmed this issue.

Reproduction Method

At the time of report, it was tested on version v2.6.0, but it remains event on master branch
Steps:

  1. Load Config.
  2. Connect to inbound-13044 by wireguard from any client
  3. than go to any russian website, for example myip.ru.

Expected: it should be blocked (routed to blocked outbound)
Actual: it successfully opens (routed to direct outbound)

Client config


I connect from the router, so no client config here

Server config

Minimal config where all Russian websites should be blocked


{
  "log": {
    "access": "./access.log",
    "dnsLog": false,
    "error": "./error.log",
    "loglevel": "debug",
    "maskAddress": ""
  },
  "routing": {
    "domainStrategy": "AsIs",
    "rules": [
      {
        "inboundTag": [
          "api"
        ],
        "outboundTag": "api",
        "type": "field"
      },
      {
        "ip": [
          "geoip:private"
        ],
        "outboundTag": "blocked",
        "type": "field"
      },
      {
        "outboundTag": "blocked",
        "protocol": [
          "bittorrent"
        ],
        "type": "field"
      },
      {
        "type": "field",
        "domain": [
          "ext:geosite_RU.dat:ru-available-only-inside",
          "regexp:.*\\.ru$"
        ],
        "outboundTag": "blocked"
      }
    ]
  },
  "dns": null,
  "inbounds": [
    {
      "listen": "127.0.0.1",
      "port": 62789,
      "protocol": "dokodemo-door",
      "settings": {
        "address": "127.0.0.1"
      },
      "streamSettings": null,
      "tag": "api",
      "sniffing": null,
      "allocate": null
    },
    {
      "listen": null,
      "port": 13044,
      "protocol": "wireguard",
      "settings": {
        "mtu": 1420,
        "secretKey": "AElLMb4dCd0orkMpTFtFBi9AhRs6GA8cRI4oXW+RpEc=",
        "peers": [
          {
            "privateKey": "KHHU1TIKrRSN6x7odPybpSLnFmsHUkTn027C/PVFing=",
            "publicKey": "cr7yYVJkQomcLMhDpChfDqBTPYnimiN6bn0gMRnSOFc=",
            "allowedIPs": [
              "10.0.0.2/32"
            ],
            "keepAlive": 0
          }
        ],
        "noKernelTun": false
      },
      "streamSettings": null,
      "tag": "inbound-13044",
      "sniffing": {
        "enabled": true,
        "destOverride": [
          "http",
          "tls",
          "quic",
          "fakedns"
        ],
        "metadataOnly": false,
        "routeOnly": false
      },
      "allocate": {
        "strategy": "always",
        "refresh": 5,
        "concurrency": 3
      }
    }
  ],
  "outbounds": [
    {
      "protocol": "freedom",
      "settings": {
        "domainStrategy": "AsIs",
        "noises": [],
        "redirect": ""
      },
      "tag": "direct"
    },
    {
      "protocol": "blackhole",
      "settings": {},
      "tag": "blocked"
    }
  ],
  "transport": null,
  "policy": {
    "levels": {
      "0": {
        "statsUserDownlink": true,
        "statsUserUplink": true
      }
    },
    "system": {
      "statsInboundDownlink": true,
      "statsInboundUplink": true,
      "statsOutboundDownlink": false,
      "statsOutboundUplink": false
    }
  },
  "api": {
    "services": [
      "HandlerService",
      "LoggerService",
      "StatsService"
    ],
    "tag": "api"
  },
  "stats": {},
  "reverse": null,
  "fakedns": null,
  "observatory": null,
  "burstObservatory": null
}

Client log


Server log

access.log:


2025/05/25 16:20:47.004364 from 127.0.0.1:39946 accepted tcp:127.0.0.1:0 [api -> api]
2025/05/25 16:20:50.912111 from tcp:0.0.0.0:0 accepted udp:1.1.1.1:53 [inbound-13044 >> direct]
2025/05/25 16:20:50.913360 from tcp:0.0.0.0:0 accepted udp:1.1.1.1:53 [inbound-13044 >> direct]
2025/05/25 16:20:50.913999 from tcp:0.0.0.0:0 accepted udp:74.125.131.104:443 [inbound-13044 >> direct]
2025/05/25 16:20:50.917668 from tcp:0.0.0.0:0 accepted udp:64.233.161.113:443 [inbound-13044 >> direct]
2025/05/25 16:20:50.922036 from tcp:0.0.0.0:0 accepted udp:1.1.1.1:53 [inbound-13044 >> direct]
2025/05/25 16:20:50.931525 from tcp:0.0.0.0:0 accepted udp:172.224.38.133:443 [inbound-13044 >> direct]
2025/05/25 16:20:50.942663 from tcp:0.0.0.0:0 accepted udp:108.177.14.156:443 [inbound-13044 >> direct]
2025/05/25 16:20:50.985828 from tcp:0.0.0.0:0 accepted udp:1.1.1.1:53 [inbound-13044 >> direct]
2025/05/25 16:20:50.987183 from tcp:0.0.0.0:0 accepted udp:1.1.1.1:53 [inbound-13044 >> direct]
2025/05/25 16:20:51.000790 from tcp:0.0.0.0:0 accepted tcp:74.125.131.156:443 [inbound-13044 >> direct]
2025/05/25 16:20:51.000854 from tcp:0.0.0.0:0 accepted tcp:74.125.131.157:443 [inbound-13044 >> direct]
2025/05/25 16:20:51.000886 from tcp:0.0.0.0:0 accepted tcp:74.125.131.157:443 [inbound-13044 >> direct]
2025/05/25 16:20:51.008508 from tcp:0.0.0.0:0 accepted tcp:74.125.131.154:443 [inbound-13044 >> direct]
2025/05/25 16:20:51.009133 from tcp:0.0.0.0:0 accepted tcp:74.125.131.156:443 [inbound-13044 >> direct]
2025/05/25 16:20:51.009222 from tcp:0.0.0.0:0 accepted udp:64.233.165.157:443 [inbound-13044 >> direct]
2025/05/25 16:20:51.009245 from tcp:0.0.0.0:0 accepted tcp:74.125.131.155:443 [inbound-13044 >> direct]
2025/05/25 16:20:51.152530 from tcp:0.0.0.0:0 accepted udp:64.233.161.95:443 [inbound-13044 >> direct]
2025/05/25 16:20:51.152570 from tcp:0.0.0.0:0 accepted udp:173.194.221.157:443 [inbound-13044 >> direct]
2025/05/25 16:20:51.153456 from tcp:0.0.0.0:0 accepted udp:64.233.164.132:443 [inbound-13044 >> direct]
2025/05/25 16:20:51.153502 from tcp:0.0.0.0:0 accepted udp:173.194.221.94:443 [inbound-13044 >> direct]
2025/05/25 16:20:51.153528 from tcp:0.0.0.0:0 accepted udp:64.233.164.97:443 [inbound-13044 >> direct]
2025/05/25 16:20:51.157141 from tcp:0.0.0.0:0 accepted udp:64.233.165.154:443 [inbound-13044 >> direct]
2025/05/25 16:20:51.161225 from tcp:0.0.0.0:0 accepted tcp:64.233.165.157:443 [inbound-13044 >> direct]
2025/05/25 16:20:51.311818 from tcp:0.0.0.0:0 accepted udp:64.233.165.155:443 [inbound-13044 >> direct]
2025/05/25 16:20:51.506461 from tcp:0.0.0.0:0 accepted udp:64.233.165.156:443 [inbound-13044 >> direct]
2025/05/25 16:20:51.905255 from tcp:0.0.0.0:0 accepted udp:74.125.131.156:443 [inbound-13044 >> direct]
2025/05/25 16:20:51.907618 from tcp:0.0.0.0:0 accepted udp:1.1.1.1:53 [inbound-13044 >> direct]
2025/05/25 16:20:51.907662 from tcp:0.0.0.0:0 accepted udp:1.1.1.1:53 [inbound-13044 >> direct]
2025/05/25 16:20:51.907693 from tcp:0.0.0.0:0 accepted udp:74.125.131.156:443 [inbound-13044 >> direct]
2025/05/25 16:20:51.907719 from tcp:0.0.0.0:0 accepted udp:1.1.1.1:53 [inbound-13044 >> direct]
2025/05/25 16:20:51.912520 from tcp:0.0.0.0:0 accepted tcp:74.125.131.154:443 [inbound-13044 >> direct]
2025/05/25 16:20:51.913773 from tcp:0.0.0.0:0 accepted tcp:74.125.131.155:443 [inbound-13044 >> direct]
2025/05/25 16:20:51.925666 from tcp:0.0.0.0:0 accepted tcp:17.57.146.138:5223 [inbound-13044 >> direct]
2025/05/25 16:20:51.953438 from tcp:0.0.0.0:0 accepted udp:1.1.1.1:53 [inbound-13044 >> direct]
2025/05/25 16:20:51.954518 from tcp:0.0.0.0:0 accepted udp:1.1.1.1:53 [inbound-13044 >> direct]
2025/05/25 16:20:51.954954 from tcp:0.0.0.0:0 accepted udp:1.1.1.1:53 [inbound-13044 >> direct]
2025/05/25 16:20:51.972710 from tcp:0.0.0.0:0 accepted tcp:1.1.1.1:443 [inbound-13044 >> direct]
2025/05/25 16:20:52.027453 from tcp:0.0.0.0:0 accepted tcp:1.1.1.1:853 [inbound-13044 >> direct]
2025/05/25 16:20:52.028645 from tcp:0.0.0.0:0 accepted tcp:1.1.1.1:443 [inbound-13044 >> direct]
2025/05/25 16:20:52.031251 from tcp:0.0.0.0:0 accepted tcp:1.1.1.1:853 [inbound-13044 >> direct]
2025/05/25 16:20:52.748553 from tcp:0.0.0.0:0 accepted tcp:1.1.1.1:853 [inbound-13044 >> direct]
2025/05/25 16:20:52.893518 from tcp:0.0.0.0:0 accepted tcp:142.250.150.108:993 [inbound-13044 >> direct]
2025/05/25 16:20:53.217340 from tcp:0.0.0.0:0 accepted tcp:64.233.165.154:443 [inbound-13044 >> direct]
2025/05/25 16:20:55.224642 from tcp:0.0.0.0:0 accepted tcp:64.233.165.155:443 [inbound-13044 >> direct]
2025/05/25 16:20:56.355239 from tcp:0.0.0.0:0 accepted tcp:213.180.193.234:443 [inbound-13044 >> direct]
2025/05/25 16:20:57.004000 from 127.0.0.1:37110 accepted tcp:127.0.0.1:0 [api -> api]
2025/05/25 16:20:57.177084 from tcp:0.0.0.0:0 accepted tcp:178.62.9.171:443 [inbound-13044 >> direct]
2025/05/25 16:20:57.229862 from tcp:0.0.0.0:0 accepted tcp:64.233.165.156:443 [inbound-13044 >> direct]
2025/05/25 16:20:57.820871 from tcp:0.0.0.0:0 accepted udp:64.233.164.132:443 [inbound-13044 >> direct]
2025/05/25 16:21:01.579672 from tcp:0.0.0.0:0 accepted tcp:17.248.214.69:443 [inbound-13044 >> direct]
2025/05/25 16:21:01.612500 from tcp:0.0.0.0:0 accepted udp:17.248.214.69:443 [inbound-13044 >> direct]
2025/05/25 16:21:01.767257 from tcp:0.0.0.0:0 accepted tcp:17.248.214.69:443 [inbound-13044 >> direct]
2025/05/25 16:21:07.003944 from 127.0.0.1:45832 accepted tcp:127.0.0.1:0 [api -> api]
2025/05/25 16:21:17.003869 from 127.0.0.1:53154 accepted tcp:127.0.0.1:0 [api -> api]
2025/05/25 16:21:27.003842 from 127.0.0.1:33598 accepted tcp:127.0.0.1:0 [api -> api]
2025/05/25 16:21:37.004212 from 127.0.0.1:43886 accepted tcp:127.0.0.1:0 [api -> api]
2025/05/25 16:21:47.003934 from 127.0.0.1:54908 accepted tcp:127.0.0.1:0 [api -> api]
2025/05/25 16:21:57.004833 from 127.0.0.1:36946 accepted tcp:127.0.0.1:0 [api -> api]
2025/05/25 16:22:07.003549 from 127.0.0.1:55916 accepted tcp:127.0.0.1:0 [api -> api]

error.log:


2025/05/25 16:20:43.082751 [Debug] app/log: Logger started
2025/05/25 16:20:43.083554 [Debug] app/router: MphDomainMatcher is enabled for 145 domain rule(s)
2025/05/25 16:20:43.083588 [Debug] app/stats: create new counter inbound>>>api>>>traffic>>>uplink
2025/05/25 16:20:43.083598 [Debug] app/stats: create new counter inbound>>>api>>>traffic>>>downlink
2025/05/25 16:20:43.083613 [Debug] app/proxyman/inbound: creating stream worker on 127.0.0.1:62789
2025/05/25 16:20:43.083758 [Warning] proxy/wireguard: Using gVisor TUN. WG inbound doesn't support kernel TUN yet.
2025/05/25 16:20:43.084629 [Debug] Routine: decryption worker 1 - started
2025/05/25 16:20:43.084660 [Debug] Routine: encryption worker 2 - started
2025/05/25 16:20:43.084667 [Debug] UAPI: Updating private key
2025/05/25 16:20:43.084675 [Debug] Routine: handshake worker 1 - started
2025/05/25 16:20:43.084682 [Debug] Routine: encryption worker 1 - started
2025/05/25 16:20:43.084688 [Debug] Routine: handshake worker 3 - started
2025/05/25 16:20:43.084694 [Debug] Routine: decryption worker 2 - started
2025/05/25 16:20:43.084701 [Debug] Routine: handshake worker 2 - started
2025/05/25 16:20:43.084707 [Debug] Routine: encryption worker 3 - started
2025/05/25 16:20:43.084714 [Debug] Routine: decryption worker 3 - started
2025/05/25 16:20:43.084720 [Debug] Routine: decryption worker 4 - started
2025/05/25 16:20:43.084727 [Debug] Routine: encryption worker 4 - started
2025/05/25 16:20:43.084733 [Debug] Routine: handshake worker 4 - started
2025/05/25 16:20:43.084795 [Debug] Routine: TUN reader - started
2025/05/25 16:20:43.084811 [Debug] Routine: event worker - started
2025/05/25 16:20:43.084819 [Debug] Interface up requested
2025/05/25 16:20:43.085052 [Debug] UAPI: Updating listen port
2025/05/25 16:20:43.085094 [Debug] UDP bind has been updated
2025/05/25 16:20:43.085230 [Debug] Routine: receive incoming Open - started
2025/05/25 16:20:43.085248 [Debug] Failed to receive Open packet: channel closed
2025/05/25 16:20:43.418767 [Debug] Failed to receive Open packet: channel closed
2025/05/25 16:20:43.752212 [Debug] Failed to receive Open packet: channel closed
2025/05/25 16:20:44.085840 [Debug] Failed to receive Open packet: channel closed
2025/05/25 16:20:44.419272 [Debug] Failed to receive Open packet: channel closed
2025/05/25 16:20:44.752713 [Debug] Failed to receive Open packet: channel closed
2025/05/25 16:20:45.086108 [Debug] Failed to receive Open packet: channel closed
2025/05/25 16:20:45.419482 [Debug] Failed to receive Open packet: channel closed
2025/05/25 16:20:45.752873 [Debug] Failed to receive Open packet: channel closed
2025/05/25 16:20:46.086273 [Debug] Failed to receive Open packet: channel closed
2025/05/25 16:20:46.421107 [Debug] Failed to receive Open packet: channel closed
2025/05/25 16:20:46.421171 [Debug] Routine: receive incoming Open - stopped
2025/05/25 16:20:46.421179 [Debug] UDP bind has been updated
2025/05/25 16:20:46.421186 [Debug] peer(cr7y…SOFc) - UAPI: Created
2025/05/25 16:20:46.421193 [Debug] peer(cr7y…SOFc) - UAPI: Adding allowedip
2025/05/25 16:20:46.421199 [Debug] peer(cr7y…SOFc) - Starting
2025/05/25 16:20:46.421206 [Debug] Interface state was Down, requested Up, now Up
2025/05/25 16:20:46.421216 [Debug] app/stats: create new counter inbound>>>inbound-13044>>>traffic>>>uplink
2025/05/25 16:20:46.421223 [Debug] app/stats: create new counter inbound>>>inbound-13044>>>traffic>>>downlink
2025/05/25 16:20:46.421230 [Debug] Routine: receive incoming Open - started
2025/05/25 16:20:46.421236 [Debug] peer(cr7y…SOFc) - Routine: sequential sender - started
2025/05/25 16:20:46.421243 [Debug] peer(cr7y…SOFc) - Routine: sequential receiver - started
2025/05/25 16:20:46.421329 [Info] transport/internet/tcp: listening TCP on 127.0.0.1:62789
2025/05/25 16:20:46.421484 [Info] transport/internet/udp: listening UDP on 0.0.0.0:13044
2025/05/25 16:20:46.422164 [Warning] core: Xray 25.5.16 started
2025/05/25 16:20:47.003690 [Debug] [1537329240] proxy/dokodemo: processing connection from: 127.0.0.1:39946
2025/05/25 16:20:47.003843 [Info] [1537329240] proxy/dokodemo: received request for 127.0.0.1:39946
2025/05/25 16:20:47.003943 [Info] [1537329240] app/dispatcher: taking detour [api] for [tcp:127.0.0.1:0]
2025/05/25 16:20:50.902151 [Debug] peer(cr7y…SOFc) - Received handshake initiation
2025/05/25 16:20:50.902275 [Debug] peer(cr7y…SOFc) - Sending handshake response
2025/05/25 16:20:50.911836 [Info] app/dispatcher: default route for udp:1.1.1.1:53
2025/05/25 16:20:50.911958 [Debug] transport/internet: dialing to udp:1.1.1.1:53
2025/05/25 16:20:50.912426 [Info] proxy/freedom: connection opened to udp:1.1.1.1:53, local endpoint [::]:48164, remote endpoint 1.1.1.1:53
2025/05/25 16:20:50.913150 [Info] app/dispatcher: default route for udp:1.1.1.1:53
2025/05/25 16:20:50.913265 [Debug] transport/internet: dialing to udp:1.1.1.1:53
2025/05/25 16:20:50.913311 [Info] proxy/freedom: connection opened to udp:1.1.1.1:53, local endpoint [::]:40777, remote endpoint 1.1.1.1:53
2025/05/25 16:20:50.913897 [Info] app/dispatcher: default route for udp:74.125.131.104:443
2025/05/25 16:20:50.913964 [Debug] transport/internet: dialing to udp:74.125.131.104:443
2025/05/25 16:20:50.914324 [Info] proxy/freedom: connection opened to udp:74.125.131.104:443, local endpoint [::]:42370, remote endpoint 74.125.131.104:443
2025/05/25 16:20:50.917449 [Info] app/dispatcher: default route for udp:64.233.161.113:443
2025/05/25 16:20:50.917571 [Debug] transport/internet: dialing to udp:64.233.161.113:443
2025/05/25 16:20:50.917976 [Info] proxy/freedom: connection opened to udp:64.233.161.113:443, local endpoint [::]:53919, remote endpoint 64.233.161.113:443
2025/05/25 16:20:50.918913 [Debug] peer(cr7y…SOFc) - Receiving keepalive packet
2025/05/25 16:20:50.921846 [Info] app/dispatcher: default route for udp:1.1.1.1:53
2025/05/25 16:20:50.922176 [Debug] transport/internet: dialing to udp:1.1.1.1:53
2025/05/25 16:20:50.922249 [Info] proxy/freedom: connection opened to udp:1.1.1.1:53, local endpoint [::]:44500, remote endpoint 1.1.1.1:53
2025/05/25 16:20:50.931368 [Info] app/dispatcher: default route for udp:172.224.38.133:443
2025/05/25 16:20:50.931485 [Debug] transport/internet: dialing to udp:172.224.38.133:443
2025/05/25 16:20:50.931858 [Info] proxy/freedom: connection opened to udp:172.224.38.133:443, local endpoint [::]:43163, remote endpoint 172.224.38.133:443
2025/05/25 16:20:50.942578 [Info] app/dispatcher: default route for udp:108.177.14.156:443
2025/05/25 16:20:50.942690 [Debug] transport/internet: dialing to udp:108.177.14.156:443
2025/05/25 16:20:50.943073 [Info] proxy/freedom: connection opened to udp:108.177.14.156:443, local endpoint [::]:34224, remote endpoint 108.177.14.156:443
2025/05/25 16:20:50.985573 [Info] app/dispatcher: default route for udp:1.1.1.1:53
2025/05/25 16:20:50.986192 [Debug] transport/internet: dialing to udp:1.1.1.1:53
2025/05/25 16:20:50.986833 [Info] proxy/freedom: connection opened to udp:1.1.1.1:53, local endpoint [::]:50447, remote endpoint 1.1.1.1:53
2025/05/25 16:20:50.986887 [Info] app/dispatcher: default route for udp:1.1.1.1:53
2025/05/25 16:20:50.987242 [Debug] transport/internet: dialing to udp:1.1.1.1:53
2025/05/25 16:20:50.987284 [Info] proxy/freedom: connection opened to udp:1.1.1.1:53, local endpoint [::]:37688, remote endpoint 1.1.1.1:53
2025/05/25 16:20:51.000345 [Info] app/dispatcher: default route for tcp:74.125.131.156:443
2025/05/25 16:20:51.000478 [Info] app/dispatcher: default route for tcp:74.125.131.157:443
2025/05/25 16:20:51.000515 [Info] transport/internet/tcp: dialing TCP to tcp:74.125.131.156:443
2025/05/25 16:20:51.000542 [Debug] transport/internet: dialing to tcp:74.125.131.156:443
2025/05/25 16:20:51.000571 [Info] transport/internet/tcp: dialing TCP to tcp:74.125.131.157:443
2025/05/25 16:20:51.000595 [Debug] transport/internet: dialing to tcp:74.125.131.157:443
2025/05/25 16:20:51.000623 [Info] app/dispatcher: default route for tcp:74.125.131.157:443
2025/05/25 16:20:51.000652 [Info] transport/internet/tcp: dialing TCP to tcp:74.125.131.157:443
2025/05/25 16:20:51.000690 [Debug] transport/internet: dialing to tcp:74.125.131.157:443
2025/05/25 16:20:51.006690 [Error] proxy/wireguard: connection was refused
2025/05/25 16:20:51.006871 [Error] proxy/wireguard: connection was refused
2025/05/25 16:20:51.008457 [Info] app/dispatcher: default route for tcp:74.125.131.154:443
2025/05/25 16:20:51.008537 [Info] transport/internet/tcp: dialing TCP to tcp:74.125.131.154:443
2025/05/25 16:20:51.008557 [Debug] transport/internet: dialing to tcp:74.125.131.154:443
2025/05/25 16:20:51.009278 [Error] proxy/wireguard: connection was refused
2025/05/25 16:20:51.009335 [Info] app/dispatcher: default route for tcp:74.125.131.156:443
2025/05/25 16:20:51.009358 [Info] app/dispatcher: default route for udp:64.233.165.157:443
2025/05/25 16:20:51.009384 [Info] transport/internet/tcp: dialing TCP to tcp:74.125.131.156:443
2025/05/25 16:20:51.009404 [Debug] transport/internet: dialing to udp:64.233.165.157:443
2025/05/25 16:20:51.009420 [Debug] transport/internet: dialing to tcp:74.125.131.156:443
2025/05/25 16:20:51.009439 [Info] app/dispatcher: default route for tcp:74.125.131.155:443
2025/05/25 16:20:51.009476 [Info] proxy/freedom: connection opened to udp:64.233.165.157:443, local endpoint [::]:55594, remote endpoint 64.233.165.157:443
2025/05/25 16:20:51.009497 [Info] transport/internet/tcp: dialing TCP to tcp:74.125.131.155:443
2025/05/25 16:20:51.009513 [Debug] transport/internet: dialing to tcp:74.125.131.155:443
2025/05/25 16:20:51.017023 [Info] proxy/freedom: connection opened to tcp:74.125.131.157:443, local endpoint 192.168.8.151:45600, remote endpoint 74.125.131.157:443
2025/05/25 16:20:51.017110 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:51.018537 [Info] proxy/freedom: connection opened to tcp:74.125.131.157:443, local endpoint 192.168.8.151:45604, remote endpoint 74.125.131.157:443
2025/05/25 16:20:51.018573 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:51.022436 [Info] proxy/freedom: connection opened to tcp:74.125.131.156:443, local endpoint 192.168.8.151:57848, remote endpoint 74.125.131.156:443
2025/05/25 16:20:51.022520 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:51.024243 [Info] proxy/freedom: connection opened to tcp:74.125.131.156:443, local endpoint 192.168.8.151:57862, remote endpoint 74.125.131.156:443
2025/05/25 16:20:51.024278 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:51.027653 [Info] proxy/freedom: connection opened to tcp:74.125.131.155:443, local endpoint 192.168.8.151:37610, remote endpoint 74.125.131.155:443
2025/05/25 16:20:51.027724 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:51.029695 [Info] proxy/freedom: connection opened to tcp:74.125.131.154:443, local endpoint 192.168.8.151:50270, remote endpoint 74.125.131.154:443
2025/05/25 16:20:51.029772 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:51.152295 [Info] app/dispatcher: default route for udp:64.233.161.95:443
2025/05/25 16:20:51.152402 [Debug] transport/internet: dialing to udp:64.233.161.95:443
2025/05/25 16:20:51.152443 [Info] proxy/freedom: connection opened to udp:64.233.161.95:443, local endpoint [::]:37379, remote endpoint 64.233.161.95:443
2025/05/25 16:20:51.152472 [Info] app/dispatcher: default route for udp:173.194.221.157:443
2025/05/25 16:20:51.152493 [Debug] transport/internet: dialing to udp:173.194.221.157:443
2025/05/25 16:20:51.152954 [Info] app/dispatcher: default route for udp:64.233.164.132:443
2025/05/25 16:20:51.153138 [Info] proxy/freedom: connection opened to udp:173.194.221.157:443, local endpoint [::]:59422, remote endpoint 173.194.221.157:443
2025/05/25 16:20:51.153176 [Debug] transport/internet: dialing to udp:64.233.164.132:443
2025/05/25 16:20:51.153209 [Info] proxy/freedom: connection opened to udp:64.233.164.132:443, local endpoint [::]:46319, remote endpoint 64.233.164.132:443
2025/05/25 16:20:51.153234 [Info] app/dispatcher: default route for udp:173.194.221.94:443
2025/05/25 16:20:51.153259 [Info] app/dispatcher: default route for udp:64.233.164.97:443
2025/05/25 16:20:51.153281 [Debug] transport/internet: dialing to udp:173.194.221.94:443
2025/05/25 16:20:51.153299 [Debug] transport/internet: dialing to udp:64.233.164.97:443
2025/05/25 16:20:51.153379 [Info] proxy/freedom: connection opened to udp:173.194.221.94:443, local endpoint [::]:59310, remote endpoint 173.194.221.94:443
2025/05/25 16:20:51.153415 [Info] proxy/freedom: connection opened to udp:64.233.164.97:443, local endpoint [::]:40672, remote endpoint 64.233.164.97:443
2025/05/25 16:20:51.156948 [Info] app/dispatcher: default route for udp:64.233.165.154:443
2025/05/25 16:20:51.157089 [Debug] transport/internet: dialing to udp:64.233.165.154:443
2025/05/25 16:20:51.157381 [Info] proxy/freedom: connection opened to udp:64.233.165.154:443, local endpoint [::]:54155, remote endpoint 64.233.165.154:443
2025/05/25 16:20:51.161139 [Info] app/dispatcher: default route for tcp:64.233.165.157:443
2025/05/25 16:20:51.161250 [Info] transport/internet/tcp: dialing TCP to tcp:64.233.165.157:443
2025/05/25 16:20:51.161277 [Debug] transport/internet: dialing to tcp:64.233.165.157:443
2025/05/25 16:20:51.175799 [Info] proxy/freedom: connection opened to tcp:64.233.165.157:443, local endpoint 192.168.8.151:35976, remote endpoint 64.233.165.157:443
2025/05/25 16:20:51.175909 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:51.311751 [Info] app/dispatcher: default route for udp:64.233.165.155:443
2025/05/25 16:20:51.311873 [Debug] transport/internet: dialing to udp:64.233.165.155:443
2025/05/25 16:20:51.312156 [Info] proxy/freedom: connection opened to udp:64.233.165.155:443, local endpoint [::]:36910, remote endpoint 64.233.165.155:443
2025/05/25 16:20:51.506386 [Info] app/dispatcher: default route for udp:64.233.165.156:443
2025/05/25 16:20:51.506486 [Debug] transport/internet: dialing to udp:64.233.165.156:443
2025/05/25 16:20:51.506821 [Info] proxy/freedom: connection opened to udp:64.233.165.156:443, local endpoint [::]:38299, remote endpoint 64.233.165.156:443
2025/05/25 16:20:51.905180 [Info] app/dispatcher: default route for udp:74.125.131.156:443
2025/05/25 16:20:51.905299 [Debug] transport/internet: dialing to udp:74.125.131.156:443
2025/05/25 16:20:51.905348 [Info] proxy/freedom: connection opened to udp:74.125.131.156:443, local endpoint [::]:34976, remote endpoint 74.125.131.156:443
2025/05/25 16:20:51.907059 [Info] app/dispatcher: default route for udp:1.1.1.1:53
2025/05/25 16:20:51.907150 [Info] app/dispatcher: default route for udp:1.1.1.1:53
2025/05/25 16:20:51.907184 [Info] app/dispatcher: default route for udp:74.125.131.156:443
2025/05/25 16:20:51.907210 [Debug] transport/internet: dialing to udp:1.1.1.1:53
2025/05/25 16:20:51.907235 [Debug] transport/internet: dialing to udp:1.1.1.1:53
2025/05/25 16:20:51.907258 [Debug] transport/internet: dialing to udp:74.125.131.156:443
2025/05/25 16:20:51.907302 [Info] proxy/freedom: connection opened to udp:1.1.1.1:53, local endpoint [::]:45018, remote endpoint 1.1.1.1:53
2025/05/25 16:20:51.907379 [Info] proxy/freedom: connection opened to udp:74.125.131.156:443, local endpoint [::]:56729, remote endpoint 74.125.131.156:443
2025/05/25 16:20:51.907423 [Info] proxy/freedom: connection opened to udp:1.1.1.1:53, local endpoint [::]:34858, remote endpoint 1.1.1.1:53
2025/05/25 16:20:51.907451 [Info] app/dispatcher: default route for udp:1.1.1.1:53
2025/05/25 16:20:51.907475 [Debug] transport/internet: dialing to udp:1.1.1.1:53
2025/05/25 16:20:51.907778 [Info] proxy/freedom: connection opened to udp:1.1.1.1:53, local endpoint [::]:55243, remote endpoint 1.1.1.1:53
2025/05/25 16:20:51.912306 [Info] app/dispatcher: default route for tcp:74.125.131.154:443
2025/05/25 16:20:51.912424 [Info] transport/internet/tcp: dialing TCP to tcp:74.125.131.154:443
2025/05/25 16:20:51.912452 [Debug] transport/internet: dialing to tcp:74.125.131.154:443
2025/05/25 16:20:51.913677 [Info] app/dispatcher: default route for tcp:74.125.131.155:443
2025/05/25 16:20:51.913782 [Info] transport/internet/tcp: dialing TCP to tcp:74.125.131.155:443
2025/05/25 16:20:51.913813 [Debug] transport/internet: dialing to tcp:74.125.131.155:443
2025/05/25 16:20:51.925562 [Info] app/dispatcher: default route for tcp:17.57.146.138:5223
2025/05/25 16:20:51.925674 [Info] transport/internet/tcp: dialing TCP to tcp:17.57.146.138:5223
2025/05/25 16:20:51.925748 [Debug] transport/internet: dialing to tcp:17.57.146.138:5223
2025/05/25 16:20:51.928941 [Info] proxy/freedom: connection opened to tcp:74.125.131.154:443, local endpoint 192.168.8.151:50272, remote endpoint 74.125.131.154:443
2025/05/25 16:20:51.929095 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:51.930352 [Info] proxy/freedom: connection opened to tcp:74.125.131.155:443, local endpoint 192.168.8.151:37612, remote endpoint 74.125.131.155:443
2025/05/25 16:20:51.930402 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:51.948514 [Info] proxy/freedom: connection opened to tcp:17.57.146.138:5223, local endpoint 192.168.8.151:34090, remote endpoint 17.57.146.138:5223
2025/05/25 16:20:51.948589 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:51.953250 [Info] app/dispatcher: default route for udp:1.1.1.1:53
2025/05/25 16:20:51.953351 [Debug] transport/internet: dialing to udp:1.1.1.1:53
2025/05/25 16:20:51.953685 [Info] proxy/freedom: connection opened to udp:1.1.1.1:53, local endpoint [::]:52239, remote endpoint 1.1.1.1:53
2025/05/25 16:20:51.954328 [Info] app/dispatcher: default route for udp:1.1.1.1:53
2025/05/25 16:20:51.954404 [Info] app/dispatcher: default route for udp:1.1.1.1:53
2025/05/25 16:20:51.954430 [Debug] transport/internet: dialing to udp:1.1.1.1:53
2025/05/25 16:20:51.954453 [Debug] transport/internet: dialing to udp:1.1.1.1:53
2025/05/25 16:20:51.954614 [Info] proxy/freedom: connection opened to udp:1.1.1.1:53, local endpoint [::]:57956, remote endpoint 1.1.1.1:53
2025/05/25 16:20:51.955031 [Info] proxy/freedom: connection opened to udp:1.1.1.1:53, local endpoint [::]:37940, remote endpoint 1.1.1.1:53
2025/05/25 16:20:51.972544 [Info] app/dispatcher: default route for tcp:1.1.1.1:443
2025/05/25 16:20:51.972668 [Info] transport/internet/tcp: dialing TCP to tcp:1.1.1.1:443
2025/05/25 16:20:51.972699 [Debug] transport/internet: dialing to tcp:1.1.1.1:443
2025/05/25 16:20:51.976454 [Info] proxy/freedom: connection opened to tcp:1.1.1.1:443, local endpoint 192.168.8.151:33356, remote endpoint 1.1.1.1:443
2025/05/25 16:20:51.976552 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:52.027548 [Info] proxy/wireguard: connection ends > proxy/wireguard: failed to transport all TCP request > read tcp 1.1.1.1:443: connection reset by peer
2025/05/25 16:20:52.027611 [Info] app/dispatcher: default route for tcp:1.1.1.1:853
2025/05/25 16:20:52.027642 [Info] transport/internet/tcp: dialing TCP to tcp:1.1.1.1:853
2025/05/25 16:20:52.027702 [Debug] transport/internet: dialing to tcp:1.1.1.1:853
2025/05/25 16:20:52.028773 [Info] app/dispatcher: default route for tcp:1.1.1.1:443
2025/05/25 16:20:52.028810 [Info] transport/internet/tcp: dialing TCP to tcp:1.1.1.1:443
2025/05/25 16:20:52.028835 [Debug] transport/internet: dialing to tcp:1.1.1.1:443
2025/05/25 16:20:52.030785 [Info] proxy/freedom: connection opened to tcp:1.1.1.1:853, local endpoint 192.168.8.151:57782, remote endpoint 1.1.1.1:853
2025/05/25 16:20:52.030897 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:52.031129 [Info] app/dispatcher: default route for tcp:1.1.1.1:853
2025/05/25 16:20:52.031191 [Info] transport/internet/tcp: dialing TCP to tcp:1.1.1.1:853
2025/05/25 16:20:52.031212 [Debug] transport/internet: dialing to tcp:1.1.1.1:853
2025/05/25 16:20:52.031761 [Info] proxy/freedom: connection opened to tcp:1.1.1.1:443, local endpoint 192.168.8.151:33362, remote endpoint 1.1.1.1:443
2025/05/25 16:20:52.031806 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:52.034815 [Info] proxy/freedom: connection opened to tcp:1.1.1.1:853, local endpoint 192.168.8.151:57786, remote endpoint 1.1.1.1:853
2025/05/25 16:20:52.034908 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:52.748328 [Info] app/dispatcher: default route for tcp:1.1.1.1:853
2025/05/25 16:20:52.748450 [Info] transport/internet/tcp: dialing TCP to tcp:1.1.1.1:853
2025/05/25 16:20:52.748479 [Debug] transport/internet: dialing to tcp:1.1.1.1:853
2025/05/25 16:20:52.751889 [Info] proxy/freedom: connection opened to tcp:1.1.1.1:853, local endpoint 192.168.8.151:57802, remote endpoint 1.1.1.1:853
2025/05/25 16:20:52.752017 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:52.893448 [Info] app/dispatcher: default route for tcp:142.250.150.108:993
2025/05/25 16:20:52.893567 [Info] transport/internet/tcp: dialing TCP to tcp:142.250.150.108:993
2025/05/25 16:20:52.893593 [Debug] transport/internet: dialing to tcp:142.250.150.108:993
2025/05/25 16:20:52.912467 [Info] proxy/freedom: connection opened to tcp:142.250.150.108:993, local endpoint 192.168.8.151:42048, remote endpoint 142.250.150.108:993
2025/05/25 16:20:52.912555 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:53.217188 [Info] app/dispatcher: default route for tcp:64.233.165.154:443
2025/05/25 16:20:53.217312 [Info] transport/internet/tcp: dialing TCP to tcp:64.233.165.154:443
2025/05/25 16:20:53.217344 [Debug] transport/internet: dialing to tcp:64.233.165.154:443
2025/05/25 16:20:53.239066 [Info] proxy/freedom: connection opened to tcp:64.233.165.154:443, local endpoint 192.168.8.151:50024, remote endpoint 64.233.165.154:443
2025/05/25 16:20:53.239130 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:55.224533 [Info] app/dispatcher: default route for tcp:64.233.165.155:443
2025/05/25 16:20:55.224664 [Info] transport/internet/tcp: dialing TCP to tcp:64.233.165.155:443
2025/05/25 16:20:55.224694 [Debug] transport/internet: dialing to tcp:64.233.165.155:443
2025/05/25 16:20:55.240547 [Info] proxy/freedom: connection opened to tcp:64.233.165.155:443, local endpoint 192.168.8.151:35790, remote endpoint 64.233.165.155:443
2025/05/25 16:20:55.240662 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:56.355163 [Info] app/dispatcher: default route for tcp:213.180.193.234:443
2025/05/25 16:20:56.355301 [Info] transport/internet/tcp: dialing TCP to tcp:213.180.193.234:443
2025/05/25 16:20:56.355334 [Debug] transport/internet: dialing to tcp:213.180.193.234:443
2025/05/25 16:20:56.361132 [Info] proxy/freedom: connection opened to tcp:213.180.193.234:443, local endpoint 192.168.8.151:43578, remote endpoint 213.180.193.234:443
2025/05/25 16:20:56.361237 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:57.003803 [Debug] [1442780719] proxy/dokodemo: processing connection from: 127.0.0.1:37110
2025/05/25 16:20:57.003941 [Info] [1442780719] proxy/dokodemo: received request for 127.0.0.1:37110
2025/05/25 16:20:57.003988 [Info] [1442780719] app/dispatcher: taking detour [api] for [tcp:127.0.0.1:0]
2025/05/25 16:20:57.177009 [Info] app/dispatcher: default route for tcp:178.62.9.171:443
2025/05/25 16:20:57.177311 [Info] transport/internet/tcp: dialing TCP to tcp:178.62.9.171:443
2025/05/25 16:20:57.177343 [Debug] transport/internet: dialing to tcp:178.62.9.171:443
2025/05/25 16:20:57.229737 [Info] app/dispatcher: default route for tcp:64.233.165.156:443
2025/05/25 16:20:57.229845 [Info] transport/internet/tcp: dialing TCP to tcp:64.233.165.156:443
2025/05/25 16:20:57.229872 [Debug] transport/internet: dialing to tcp:64.233.165.156:443
2025/05/25 16:20:57.235186 [Info] proxy/freedom: connection opened to tcp:178.62.9.171:443, local endpoint 192.168.8.151:48854, remote endpoint 178.62.9.171:443
2025/05/25 16:20:57.235257 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:57.245384 [Info] proxy/freedom: connection opened to tcp:64.233.165.156:443, local endpoint 192.168.8.151:57300, remote endpoint 64.233.165.156:443
2025/05/25 16:20:57.245438 [Info] proxy: CopyRawConn readv
2025/05/25 16:20:57.820669 [Info] app/dispatcher: default route for udp:64.233.164.132:443
2025/05/25 16:20:57.820795 [Debug] transport/internet: dialing to udp:64.233.164.132:443
2025/05/25 16:20:57.821114 [Info] proxy/freedom: connection opened to udp:64.233.164.132:443, local endpoint [::]:45994, remote endpoint 64.233.164.132:443
2025/05/25 16:21:01.579592 [Info] app/dispatcher: default route for tcp:17.248.214.69:443
2025/05/25 16:21:01.579723 [Info] transport/internet/tcp: dialing TCP to tcp:17.248.214.69:443
2025/05/25 16:21:01.579754 [Debug] transport/internet: dialing to tcp:17.248.214.69:443
2025/05/25 16:21:01.602471 [Info] proxy/freedom: connection opened to tcp:17.248.214.69:443, local endpoint 192.168.8.151:58846, remote endpoint 17.248.214.69:443
2025/05/25 16:21:01.602614 [Info] proxy: CopyRawConn readv
2025/05/25 16:21:01.608149 [Info] proxy/wireguard: connection ends > proxy/wireguard: failed to transport all TCP request > read tcp 17.248.214.69:443: connection reset by peer
2025/05/25 16:21:01.612427 [Info] app/dispatcher: default route for udp:17.248.214.69:443
2025/05/25 16:21:01.612495 [Debug] transport/internet: dialing to udp:17.248.214.69:443
2025/05/25 16:21:01.612890 [Info] proxy/freedom: connection opened to udp:17.248.214.69:443, local endpoint [::]:54767, remote endpoint 17.248.214.69:443
2025/05/25 16:21:01.767160 [Info] app/dispatcher: default route for tcp:17.248.214.69:443
2025/05/25 16:21:01.767283 [Info] transport/internet/tcp: dialing TCP to tcp:17.248.214.69:443
2025/05/25 16:21:01.767314 [Debug] transport/internet: dialing to tcp:17.248.214.69:443
2025/05/25 16:21:01.790857 [Info] proxy/freedom: connection opened to tcp:17.248.214.69:443, local endpoint 192.168.8.151:58852, remote endpoint 17.248.214.69:443
2025/05/25 16:21:01.790938 [Info] proxy: CopyRawConn readv
2025/05/25 16:21:02.670996 [Debug] peer(cr7y…SOFc) - Receiving keepalive packet
2025/05/25 16:21:03.556937 [Debug] proxy/wireguard: connection ends > context canceled
2025/05/25 16:21:03.955118 [Debug] proxy/wireguard: connection ends > context canceled
2025/05/25 16:21:07.003760 [Debug] [409914051] proxy/dokodemo: processing connection from: 127.0.0.1:45832
2025/05/25 16:21:07.003895 [Info] [409914051] proxy/dokodemo: received request for 127.0.0.1:45832
2025/05/25 16:21:07.003942 [Info] [409914051] app/dispatcher: taking detour [api] for [tcp:127.0.0.1:0]
2025/05/25 16:21:17.003721 [Debug] [1170620481] proxy/dokodemo: processing connection from: 127.0.0.1:53154
2025/05/25 16:21:17.003879 [Info] [1170620481] proxy/dokodemo: received request for 127.0.0.1:53154
2025/05/25 16:21:17.003935 [Info] [1170620481] app/dispatcher: taking detour [api] for [tcp:127.0.0.1:0]
2025/05/25 16:21:17.008026 [Info] [1170620481] app/proxyman/inbound: connection ends > proxy/dokodemo: connection ends > proxy/dokodemo: failed to transport request > read tcp 127.0.0.1:62789->127.0.0.1:53154: read: connection reset by peer
2025/05/25 16:21:17.960806 [Debug] peer(cr7y…SOFc) - Retrying handshake because we stopped hearing back after 15 seconds
2025/05/25 16:21:17.960925 [Debug] peer(cr7y…SOFc) - Sending handshake initiation
2025/05/25 16:21:23.149645 [Debug] peer(cr7y…SOFc) - Handshake did not complete after 5 seconds, retrying (try 2)
2025/05/25 16:21:23.149770 [Debug] peer(cr7y…SOFc) - Sending handshake initiation
2025/05/25 16:21:27.003682 [Debug] [833864453] proxy/dokodemo: processing connection from: 127.0.0.1:33598
2025/05/25 16:21:27.003821 [Info] [833864453] proxy/dokodemo: received request for 127.0.0.1:33598
2025/05/25 16:21:27.003875 [Info] [833864453] app/dispatcher: taking detour [api] for [tcp:127.0.0.1:0]
2025/05/25 16:21:28.449856 [Debug] peer(cr7y…SOFc) - Handshake did not complete after 5 seconds, retrying (try 3)
2025/05/25 16:21:28.449996 [Debug] peer(cr7y…SOFc) - Sending handshake initiation
2025/05/25 16:21:33.052387 [Debug] proxy/wireguard: connection ends > context canceled
2025/05/25 16:21:33.614390 [Debug] peer(cr7y…SOFc) - Handshake did not complete after 5 seconds, retrying (try 4)
2025/05/25 16:21:33.614497 [Debug] peer(cr7y…SOFc) - Sending handshake initiation
2025/05/25 16:21:35.704329 [Debug] peer(cr7y…SOFc) - Retrying handshake because we stopped hearing back after 15 seconds
2025/05/25 16:21:37.003968 [Debug] [1645541048] proxy/dokodemo: processing connection from: 127.0.0.1:43886
2025/05/25 16:21:37.004100 [Info] [1645541048] proxy/dokodemo: received request for 127.0.0.1:43886
2025/05/25 16:21:37.004154 [Info] [1645541048] app/dispatcher: taking detour [api] for [tcp:127.0.0.1:0]
2025/05/25 16:21:38.742935 [Debug] peer(cr7y…SOFc) - Handshake did not complete after 5 seconds, retrying (try 2)
2025/05/25 16:21:38.743061 [Debug] peer(cr7y…SOFc) - Sending handshake initiation
2025/05/25 16:21:38.819118 [Debug] proxy/wireguard: connection ends > context canceled
2025/05/25 16:21:43.845183 [Debug] peer(cr7y…SOFc) - Handshake did not complete after 5 seconds, retrying (try 3)
2025/05/25 16:21:43.845302 [Debug] peer(cr7y…SOFc) - Sending handshake initiation
2025/05/25 16:21:47.003707 [Debug] [2698277945] proxy/dokodemo: processing connection from: 127.0.0.1:54908
2025/05/25 16:21:47.003843 [Info] [2698277945] proxy/dokodemo: received request for 127.0.0.1:54908
2025/05/25 16:21:47.003885 [Info] [2698277945] app/dispatcher: taking detour [api] for [tcp:127.0.0.1:0]
2025/05/25 16:21:48.909176 [Debug] peer(cr7y…SOFc) - Handshake did not complete after 5 seconds, retrying (try 4)
2025/05/25 16:21:48.909303 [Debug] peer(cr7y…SOFc) - Sending handshake initiation
2025/05/25 16:21:53.307138 [Debug] peer(cr7y…SOFc) - Retrying handshake because we stopped hearing back after 15 seconds
2025/05/25 16:21:54.088138 [Debug] peer(cr7y…SOFc) - Handshake did not complete after 5 seconds, retrying (try 2)
2025/05/25 16:21:54.088246 [Debug] peer(cr7y…SOFc) - Sending handshake initiation
2025/05/25 16:21:57.005189 [Debug] [4260653713] proxy/dokodemo: processing connection from: 127.0.0.1:36946
2025/05/25 16:21:57.005283 [Info] [4260653713] proxy/dokodemo: received request for 127.0.0.1:36946
2025/05/25 16:21:57.005335 [Info] [4260653713] app/dispatcher: taking detour [api] for [tcp:127.0.0.1:0]
2025/05/25 16:21:59.400831 [Debug] peer(cr7y…SOFc) - Handshake did not complete after 5 seconds, retrying (try 3)
2025/05/25 16:21:59.400956 [Debug] peer(cr7y…SOFc) - Sending handshake initiation
2025/05/25 16:22:04.693176 [Debug] peer(cr7y…SOFc) - Handshake did not complete after 5 seconds, retrying (try 4)
2025/05/25 16:22:04.693310 [Debug] peer(cr7y…SOFc) - Sending handshake initiation
2025/05/25 16:22:07.003545 [Debug] [2239298237] proxy/dokodemo: processing connection from: 127.0.0.1:55916
2025/05/25 16:22:07.003686 [Info] [2239298237] proxy/dokodemo: received request for 127.0.0.1:55916
2025/05/25 16:22:07.003741 [Info] [2239298237] app/dispatcher: taking detour [api] for [tcp:127.0.0.1:0]
2025/05/25 16:22:09.302627 [Debug] peer(cr7y…SOFc) - Retrying handshake because we stopped hearing back after 15 seconds
2025/05/25 16:22:09.873272 [Debug] peer(cr7y…SOFc) - Handshake did not complete after 5 seconds, retrying (try 2)
2025/05/25 16:22:09.873376 [Debug] peer(cr7y…SOFc) - Sending handshake initiation
2025/05/25 16:22:15.056715 [Debug] peer(cr7y…SOFc) - Handshake did not complete after 5 seconds, retrying (try 3)
2025/05/25 16:22:15.057036 [Debug] peer(cr7y…SOFc) - Sending handshake initiation

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions