> The design of Chaosnet was greatly simplified by ignoring problems irrelevant to local networks. Chaosnet contains no special provisions for things such as low-speed links, noisy (very high error-rate) links, multiple paths, and long-distance links with significant transit time.

Apologies for going off-topic but it's interesting reading this carefully optimized <1 mile local network compared to how difficult it has been for so long to do basic file transfers and interaction between devices on a local network. ie, transferring photos from a phone or DSLR camera to a laptop and interacting with annoying printers.

I understand the security barriers and some of the legacy reasons why with NAT and whatnot but even modern solutions like Airdrop still have a less-than-desired UX and performance. It's randomly slow, regardless of how fast our network is capable of being.

I just want a cross platform rsync style program built directly into the OS as a first-class citizen, that doesn't require complex setups or configuration, with watching/syncing, while being something a non-technical person can use.

I still default to using HTTP cloud services like Mega/Firefox Send to send basic files as I at least know it will have predictable and reliable performance. And on linux I always set up local SSH servers on everything which comes with its own maintenance baggage.

Admittedly I haven't dug into solving this problem in recent times and tried to find modern solutions (other than Bittorrent Sync) so this may be a dated critique. But just looking at OS level stuff.

> And on linux I always set up local SSH servers on everything which comes with its own maintenance baggage.

It sounds like you need to invest a little time in automating basic networking stuff (shell scripts do fine). I do not think there is a royal road with effortless magically secure configuration and authentication for random devices, but once you have IPv6 with dynamic DNS for all your machines on your own domain with SSH public keys (this all gets automated by the shell scripts), things get really nice. rsync, Unison, TRAMP, remote shells, SSH port forwarding/SOCKS proxies, whatever else you can think of, just works.

The Internet is a surprisingly nice place when you get rid of NATs and VPNs.

No IPv6 from your ISP? Start looking for a new one, but in the meantime grab a unique local IPv6 prefix for your home network (I find that useful to have anyway; and with IPv6 there are no worries about having multiple addresses on an interface) and use that shell script automation to take advantage of /etc/hosts (and put a blocklist in there while you are at it: https://github.com/StevenBlack/hosts).