|
You are here |
vninja.net | ||
| | | | |
blog.cavelab.dev
|
|
| | | | | I stumbled onto NextDNS recently - it's like a cloud hosted Pi-hole. I tried it for a few days, but this post isn't about that. Reading about the different block lists in NextDNS, and digging deeper into DNS ad blocking gave me motivation to change my current setup - and that is what this post is about ?? | |
| | | | |
blog.christophersmart.com
|
|
| | | | | ||
| | | | |
djanes.xyz
|
|
| | | | | (This was a blog post that I originally wrote on my good friend tek's blog which can be found here: http://teklordz.net/piholeI decided to move this over to my blog to consolidate and preserve it here.) Ads... whether they are necessary/good or pure evil is outside the scope of this article. One thing that can be ... | |
| | | | |
jo-m.ch
|
|
| | | 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. | ||