Hey, I need to expose my RCS outside of the local network, in order to add remote workstations from outside my network. My RCS is configured to use TLS with a certificate and a password, and HTTPS requests from 4433 port. I want to expose this port, using SSH tunneling.
I’m not very familiar with this service, but I tried pinggy.io , with different settings (HTTPS tunnel, TCP tunnel, TLS tunnel, differents args) but wasn’t able to make it work : Here’s an example of one of my commands, using HTTPS :
ssh -p 443 -R0:localhost:4433 -o StrictHostKeyChecking=no -o ServerAliveInterval=30 -t <MyPrivateToken>@a.pinggy.io x:localServerTls:localhost
What do I miss ? Is it a firewall issue ?