/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

homebrewserver.club
| | blog.leifmadsen.com
2.9 parsecs away

Travel
| | Leif Madsen's Blog
| | xn--blgg-hra.no
3.3 parsecs away

Travel
| | [AI summary] A detailed guide on setting up home network security monitoring by streaming traffic from a MikroTik router to a Raspberry Pi for Suricata and Elastic Stack analysis using systemd and dummy network interfaces.
| | debianaddict.com
2.3 parsecs away

Travel
| | [AI summary] This article explains how to configure a Debian-based Linux system as a router using iptables, bind9, and dhcpd for network management and services.
| | jo-m.ch
18.6 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.