

The same as the pink ribbon for breast cancer: awareness. “Why is everyone praising Clippy?” becomes “Who the hell is Louis Rossman?” becomes “Why is Rossman so angry at tech?”.
But beyond a certain point, I think it just adds noise. Rossman’s original intention is to educate people about anti-consumer practices, and more importantly, to call people to action. Many people will stop at Clippy because it feels like they did something without any real effect. It becomes a feel-good pretend non-activism, like Kony 2012, or that one time David Guetta ended racism.

If you have IPv4 addresses, I guarantee you’re behind at least one NAT gateway. What you need is a Tailscale subnet router, or something equivalent from another service.
In the most basic configuration, the Tailscale client facilitates communication (by using some UDP black magic fuckery) between one host it is running on and another host it is running on that are both connected to the same tailnet (the virtual network between Tailscale hosts). For this purpose, it uses addresses from the 100.64.0.0/10 “shared address space” subnet. These addresses will only be reachable from within your tailnet.
If you want an entire subnet (e.g. your LAN) to be accessible within your tailnet, you need to set up a subnet router. This involves configuring the Tailscale client on a device within the target subnet to advertise routes (
tailscale set --advertise-routes=192.168.1.0/24), allowing the host to advertise routes in the admin page (Machines -> … -> Edit routes), and configuring the Tailscale client on external hosts to accept advertised routes (tailscale set --accept-routes).If you want your servers to be accessible from anywhere on the internet, you’ll need Tailscale Funnel. I don’t use it personally, but it seems to work. Make sure you understand the risks and challenges involved with exposing a service to the public if you want to choose this route.