Hello!
I am trying to use routing to passthrough SSH connections to an external service. We are using Traefik successfully with other HTTPS and TCP, but SSH seems to be not working at all. I believe it is probably a misconfiguration, or a missing detail within the configurations I am using, so here they are.
We have the entrypoint configured to listen on port 2222 and see it successfully expose, but when testing netcat to the entrypoint, it times out. I have verified network policies allow connectivity, and we can successfully connect to the external service from inside the cluster. But it seems that I am unable to port-forward with the service, or use it as a passthrough.
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRouteTCP
metadata:
name: sftp
namespace: my-ns
spec:
entryPoints:
- sftp
routes:
- match: HostSNI(`*`)
priority: 1
services:
- name: sftp-server-external
port: 2222
tls:
passthrough: true
---
apiVersion: v1
kind: Service
metadata:
name: sftp-server-external
namespace: my-ns
labels:
kubernetes.io/service-name: sftp-server-external
spec:
ports:
- name: sftp-server-external
port: 2222
targetPort: 22
protocol: TCP
---
apiVersion: v1
kind: Endpoints
metadata:
name: sftp-server-external
namespace: my-ns
labels:
kubernetes.io/service-name: sftp-server-external
subsets:
- addresses:
- ip: XXX.XXX.XXX.XXX
ports:
- name: sftp-server-external
port: 22
I see no errors in the logs, and show that it creates the entrypoint and passthrough:
traefik-6b59798dfd-9nz7z traefik time="2023-09-26T08:42:32Z" level=debug msg="Creating TCP server 0 at XXX.XXX.XXX.XXX:22" entryPointName=sftp routerName=sftp-673acf455cb2dab0b43a@kubernetescrd serviceName=sftp-673acf455cb2dab0b43a serverName=0
traefik-6b59798dfd-9nz7z traefik time="2023-09-26T08:42:32Z" level=debug msg="Adding Passthrough route for \"HostSNI(`*`)\"" entryPointName=sftp routerName=sftp-673acf455cb2dab0b43a@kubernetescrd
I have been trying ever possible combination of using ExternalName service (but we need to remap the target port to the destination 2222 -> 22). I have looked through all different posts and nothing seems to specifically address this type of setup. None of the documentation has this either.
Any guidance or help would be greatly appreciated.