logoalt Hacker News

panteliskyesterday at 8:51 PM1 replyview on HN

There are also solutions for sharing your homelab with others (basically tunneling from your machine->server (internet accessible) <-> client. Though, if your machine would go to sleep that whole chain would fall apart. A few good automatic solutions out there that solve the problem (no "just replace dropbox with ftp" type of argument).

However, I see the appeal of this. Kind of surprised it hasn't happened yet to be honest.


Replies

inigyoutoday at 1:22 AM

SSH remote port forwarding. ssh -R 0.0.0.0:80:127.0.0.1:80

Requires the server's sshd config to have GatewayPorts yes, or the server will bind to 127.0.0.1 instead