> Is there a way to boot a cpu server such that it will just accept > connections from anyone, without authentication? Sort of like how you > can connect to sources as "none", except for cpu.
It is already implemented, but not enabled by default. In /sys/src/cmd/cpu.c, uncomment the following line: // { "none", noauth, srvnoauth,}, Then, you can: aux/listen1 tcp!*!17010 cpu -R -a none And: cpu -h 127.1 -a none -- David du Colombier