Explore >> Select a destination


You are here

jwillmer.de
| | vninja.net
2.4 parsecs away

Travel
| | I've recently standardized on Ubiquiti equipment in the new house, and so far I am very happy with it. Wireless is working flawlessly, which is more than I could say for my old setup. A part of the new setup is a UniFi® Security Gateway (USG) that I am using as my gateway/firewall for my fiber connection, so I thought why not use that a my VPN termination as well?
| | blog.nightfox.tech
2.8 parsecs away

Travel
| | [AI summary] The post explains how to route IPv6 traffic over a Wireguard tunnel to extend IPv6 connectivity to private networks and servers.
| | blog.cavelab.dev
3.2 parsecs away

Travel
| | The Unifi UAP-AC-M access point in my garage stopped working a few weeks ago. Or, the device didn't stop working, it still showed up in the Unifi controller and I could ping it. But it stopped providing Wi-Fi connectivity - my phone connected, but got no network access... I remembered experiencing this before - the VLANs for user and guest Wi-Fi wasn't allowed through the D-Link switch. I had simply not configured them, but why was it failing now? Trying to log into the switch - I found that it no longer...
| | jo-m.ch
19.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.