/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

blog.benjojo.co.uk
| | iosoft.blog
6.1 parsecs away

Travel
| | In part 5, we joined a WiFi network, and used 'ping' to contact another unit on that network, but this was achieved by setting the IP address manually, which is generally known as using a 'static' IP. The alternative is to use a 'dynamic' IP, that a central server (such as the WiFi Access Point)...
| | vincent.bernat.ch
5.2 parsecs away

Travel
| | On Linux, a network bridge without any IP address configured will still process IP packets. How to disable such a feature?
| | www.saminiir.com
2.9 parsecs away

Travel
| | This time in our tutorial userspace TCP/IP stack we will implement a minimum viable IP layer and test it with ICMP echo requests. We will take a look at the ...
| | jo-m.ch
24.1 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.