This error is the TCP equivalent of “no Route matched with those values,” indicating that no suitable route was found for the connection. In the same log, you should see an entry just before the error showing a connection established to confirm port connectivity to the Gateway.
2025/10/31 13:41:03 [info] 2135#0: *702 client 192.168.59.51:48836 connected to 0.0.0.0:9000
Provided the connection was established, this error occurs when the source, destination, or SNI does not match any configured route. For example, a route may require a host header like example.com, as with TLS SNI-based routing in TCPIngress.
When using TCPIngress on Kubernetes, ensure the TCPIngress resource has been successfully created and is associated with the correct IngressClass. Reviewing the ingress controller logs can provide additional insight.
</content>