←back to thread

319 points SpaghettiX | 1 comments | | HN request time: 0.531s | source
Show context
throw3838 ◴[] No.30285168[source]
You can get virtual server for $4/month. Installing proprietary software and registering to some service, that may "upgrade" to premium tier anytime, is pretty off-putting.
replies(6): >>30285205 #>>30285236 #>>30285281 #>>30287874 #>>30288393 #>>30288484 #
lizknope ◴[] No.30287874[source]
My virtual server is $1.67 a month (buyvm.net)

My home firewall blocks all traffic except for incoming SSH from 3 IP addresses in the world. One of those is my virtual server.

If I'm in a hotel with my laptop I run the first command to set up an SSH tunnel to my "home" computer through the cloud virtual server. That listens on my laptop to port 8888 and forwards it through the cloud virtual server to my home computer's SSH daemon listening on port 22

ssh -X -f -C -L 8888:home.mydomain.com:22 -N user@cloud.mydomain.com

ssh -p 8888 user@localhost

replies(1): >>30295545 #
1. freedomben ◴[] No.30295545[source]
I do the same thing! I'm hoping that some day hotels won't send every wireguard packet they see straight to the bit bucket. Until then I'm really grateful for ssh.
replies(1): >>30302095 #