-
I want to add an application in teleport.
Can I configure Teleport to acces this application ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
This isn't a supported use case directly via Teleport at the moment. However, if you could configure something which will keep a persistent SSH tunnel running from On |
Beta Was this translation helpful? Give feedback.
-
ok, thanks |
Beta Was this translation helpful? Give feedback.
This isn't a supported use case directly via Teleport at the moment. However, if you could configure something which will keep a persistent SSH tunnel running from
server1
toserver2
(say on local port 3000) you could theoretically configure the Teleportapp_service
onserver1
and add an app running onhttp://localhost:3000
. When someone attempts to access the app, it should send the traffic to port 3000 which would then be sent over the SSH tunnel.On
server1
:ssh -L 3000:127.0.0.1:<remote app port> server2