published under license CC-BY-SA
posted in category Systems Software / SSH
posted at 27. Jun '20
SOCKS SSH Tunnel
ssh -D 1337 -q -C -N you@yourserver
Opens tunnel to the server and stays open. Local port, quiet (no output), compress, only port forward (no remote command execution).
Point a browser or any other app to SOCKS server to be localhost:1337
and check query DNS through SOCKS. Or connect to VPN through it.
No more childish blocking.
Add Comment