We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm using apisix on K8S and i'm trying to do stream proxy via TCP with TLS I've done the following (via helm):
proxy_mode: http&stream stream_proxy: tcp: - addr: 636 tls: true service: stream: enabled: true tcp: - addr: 636 tls: true
And create the tls and the route:
--- apiVersion: apisix.apache.org/v2 kind: ApisixTls metadata: name: vldap-tls spec: hosts: - vldap.test.com secret: name: secret namespace: apisix --- apiVersion: apisix.apache.org/v2 kind: ApisixRoute metadata: name: vldap spec: stream: - name: vldap protocol: TCP match: ingressPort: 636 host: vldap.test.com backend: serviceName: vldap servicePort: 636
If i do the request direct to the service i get the response, but via apisix i don't:
ldap_err2string ldap_result: Can't contact LDAP server (-1) ldap_do_free_request: asked to free lr 0x55f921e8f3e0 msgid 1 refcnt 0 ldap_free_connection 1 1 ldap_free_connection: actually freed
Am i missing something?
apisix version
uname -a
The text was updated successfully, but these errors were encountered:
Problem solved It was the enable_tcp_pp_to_upstream, i needed to set it to false
Sorry, something went wrong.
No branches or pull requests
Description
I'm using apisix on K8S and i'm trying to do stream proxy via TCP with TLS
I've done the following (via helm):
And create the tls and the route:
If i do the request direct to the service i get the response, but via apisix i don't:
Am i missing something?
Environment
apisix version
): 3.9.0uname -a
): EKS kubernetes amazon linuxThe text was updated successfully, but these errors were encountered: