XX-net/XX-Net · warning

not support

Error message

not support

What it means

check_ip returned a result but res.ok is False: the connection/handshake succeeded enough to return, but the response did not validate (host not supported on that IP).

Source

Thrown at code/default/x_tunnel/local/cloudflare_front/check_ip.py:184

    wait_time = 0

    ca_certs = os.path.join(current_path, "cacert.pem")
    openssl_context = SSLContext(logger, ca_certs=ca_certs)
    host_manager = HostManagerBase()
    connect_creator = ConnectCreator(logger, config, openssl_context, host_manager, debug=True)
    check_ip = CheckIp(logger, config, connect_creator)

    #check_all_domain(check_ip)
    #check_all_ip(check_ip)

    res = check_ip.check_ip(ip, sni=sni, host=host, wait_time=wait_time)
    if not res:
        xlog.warn("connect fail")
    elif res.ok:
        xlog.info("success, domain:%s handshake:%d", res.host, res.handshake_time)
    else:
        xlog.warn("not support")

    front.stop()
    sys.exit(0)

View on GitHub (pinned to cfa5bc17b6)

Solutions

  1. Try a different SNI/host
  2. Use a known-good domain for probing
  3. Remove this IP from the usable pool
Defensive patterns

Strategy: fallback

Prevention

When it happens

Trigger: Script mode check where TLS connects but the expected domain response check fails.

Common situations: IP is CloudFlare but does not serve the requested host; wrong SNI.

Related errors


AI-assisted analysis of XX-net/XX-Net@cfa5bc17b6 (2026-08-27). Data as JSON: /api/errors/d4842b69d1457ddc. Report an issue: GitHub.