Hi, I’m wondering if any thought’s been given to having a single instance of pomerium-cli that could handle multiple TCP connections at a time.
For example, if you have an internal development server with services on a few different ports (database, SSH, etc.), it’d be handy to give users a single command they can run to open those ports all at once, and CTRL+C when they’re done.
pomerium-cli tcp host1.internal.example.com:22 --listen :2022 \
host1.internal.example.com:5432 --listen :55432 \
host2.internal.example.com:12345 --listen :12345
As a single process, theoretically it could even cache authentication across the services so the user would only need to authenticate once.
As it stands now I’d have to give them a script that launches a couple of instances of pomerium-cli in the background, which will look confusing and make it harder for them to shut them all down.
What’s your environment like?
- Pomerium version (retrieve with
pomerium --version
): 0.17.2 - Server Operating System/Architecture/Cloud: Ubuntu 20.04