This was my first thought.
Next in line is ssh -D 9999 remotehost
which opens a socks5 proxy on localhost:9999 that tunnels all connections through the remote host. This is especially rad with proxy.pac …mozilla.org/…/Proxy_Auto-Configuration_PAC_file
And next in line is ssh -L 9999:target_host:80
(or whatever) which tunnels 127.0.0.1:9999 to target_host:80.
nixcamic@lemmy.world 3 days ago
Oh man this looks so much simpler than having to Google/man page how to ssh tunnel every 8-10 months.