Explore >> Select a destination


You are here

blog.goodstuff.im
| | blog.anantshri.info
13.2 parsecs away

Travel
| | Quick notes on how to setup wireguard on 20..04 Best guide i could find : https://www.linuxbabe.com/ubuntu/wireguard-vpn-server-ubuntu But still pieces missing so trying to write this and make those pieces sorted Base OS : ubuntu 20.04 Install software sudo apt-get install wireguard wireguard-tools Configure Wireguard Server side 2.1. Configure Public / Private Key pair for server...
| | learn.pimoroni.com
13.8 parsecs away

Travel
| | No display, keyboard, or mouse? No problem! - Pimoroni Learning Portal
| | chrismcleod.dev
13.6 parsecs away

Travel
| | Chris McLeod is a software developer with over 20 years of experience. Sometimes he writes about it.
| | jo-m.ch
42.3 parsecs away

Travel
| Shell Snippets SSH # SSH Keygen # ssh-keygen -o -a 100 -t ed25519 SSH Tunnel # ssh -N -L2001:localhost:80 somemachine Now you can access the website by going to http://localhost:2001/ SSH Proxy # ssh -q -N -D 5001 user@host # e.g. ssh -q -N -D 5001 pi4 You can now set localhost:5001 as a socks proxy in Firefox and it will appear as connecting from host. SSH port forwarding # ssh -R 12345:localhost:22 example.org "sleep 1000; exit" Forwards example.org's port 12345 to your local ssh port, even if your machine is not externally visible on the net. Now you can ssh localhost -p 12345 from example.org and you will log into your machine.