Comment on Remote access in a country with heavy cencorship

atzanteol@sh.itjust.works ⁨6⁩ ⁨months⁩ ago

Can you ssh out? You could setup a VPS somewhere and use remote port forwarding to tunnel back home.

ssh -R 80:localhost:80 user@vps # forward HTTP traffic from remote host to the local host

You can even run ssh over an ssh tunnel for inceptiony goodness.

ssh -R 2222:localhost:22 user@vps  # your home system
ssh --port 2222 homeuser@vps  # From your remote system

source
Sort:hotnewtop