Comment on What's up, selfhosters? It's self hosting Sunday!
e8d79@discuss.tchncs.de 18 hours agoAccording to the Pangolin docs it supports raw TCP and UDP connections.
For SSH you can also try to use the VPS as a jump host like this:
$ ssh user@vpn-homelab-ip -J user@vps-ip
bergetfew@sopuli.xyz 14 hours ago
I would never have found this on my own otherwise. I feel any amount of gratitude would fall short of compensating for how much time and effort it has saved me. Thank you regardless.
If possible, can you share how I can achieve the same effect with SFTP?
e8d79@discuss.tchncs.de 12 hours ago
Either use the
sftp
command it also supports the-J
option or use SSH tunneling. For example here I bind the port 4533 to my local port 8080.I can now open a new shell and run:
You could also do it this way:
bergetfew@sopuli.xyz 11 hours ago
Thanks a ton!