Explore >> Select a destination


You are here

paperstack.com
| | blog.mbrt.dev
7.1 parsecs away

Travel
| | Over the last year, at work I had multiple chances to debug how containers work. Recently we had to solve some networking problems a customer had with Kubernetes, and I decided I wanted to know more. Once the problem was solved, I spent more time on investigating what is actually going on under the hood. After seeing the wonderful Eric Chiang and Laurent Bernaille talks, and reading through the very informative posts by Lizzie Dixon and Julia Evans (that I really really recommend), I got enough informati...
| | ops.tips
6.3 parsecs away

Travel
| | Yet another blog post on how to create a virtual network that connects network namespaces using a brdige, veth pairs and iptables.
| | jo-m.ch
7.7 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.
| | nelsonslog.wordpress.com
41.5 parsecs away

Travel
| I want to be able to remotely access my PC Linux box even if Linux is down. Ie: just like you'd do with a keyboard and monitor plugged in locally, but via the Internet. There's a zillion ways to do this but they are all fiddly and the simplest ways are expensive or unobtanium. This...