Is wake on LAN any good these days? I remember it being flaky in the late 90s early 00s...
Show HN: rallyup – Lightweight Wake-on-LAN Scheduler
21–28 of 28 posts
Re: Show HN: rallyup – Lightweight Wake-on-LAN Scheduler
#22Is wake on LAN any good these days? I remember it being flaky in the late 90s early 00s...
the issue that I discovered after many hours of debugging is that 10gbe port is powered down completely on suspend/power off. so it have no way to work.
because I had limited number of ethernet ports available I set up system to use wake up over WiFi (with wake also on key rotation or disconnect)
Re: Show HN: rallyup – Lightweight Wake-on-LAN Scheduler
#23Earlier quoted context omitted.
I only had one problem with it, and that was that it isn't enough to enable it in the BIOS, but I needed to flip a switch on Windows and set up a systemd service on Linux (I dual boot). For Linux set it to "g": https://wiki.archlinux.org/title/Wake-on-LAN#Make_it_persist... For Windows you need to enable "Wake on Magic Packet": https://www.windowscentral.com/how-enable-and-use-wake-lan-w...
I always wondered: why make it so difficult to turn on? Is it a security issue? I mean, an off-by-default OS setting and an off-by-default BIOS setting? How dangerous is this thing??
That it is defaulted off I feel is motivated, but to make it so hard to turn it on is pretty pathetic.
The fury Microsoft generated by turning it off in a Windows update still fuels me. I had a remote PC that I need to access remotely during holiday season. And Microsoft turns off my ability to power it on, with me left trying to figure out why I can't access the machine anymore.
Re: Show HN: rallyup – Lightweight Wake-on-LAN Scheduler
#24Would love to see exactly this but running on an ESP style board (with Ethernet). As well as an API or web interface to trigger manual WoL calls. Nice project, thanks for sharing!
What type of API are you thinking of? It already runs on a YAML config, so maybe a web server that takes the config as a JSON body instead?
Re: Show HN: rallyup – Lightweight Wake-on-LAN Scheduler
#25Earlier quoted context omitted.
I only had one problem with it, and that was that it isn't enough to enable it in the BIOS, but I needed to flip a switch on Windows and set up a systemd service on Linux (I dual boot). For Linux set it to "g": https://wiki.archlinux.org/title/Wake-on-LAN#Make_it_persist... For Windows you need to enable "Wake on Magic Packet": https://www.windowscentral.com/how-enable-and-use-wake-lan-w...
"set it to 'g'". Awesome. G for maGic, I presume?
Re: Show HN: rallyup – Lightweight Wake-on-LAN Scheduler
#26Is the project named spinup or rallyup? The HN post title differs from the GitHub repo
Thanks for catching that! Updated to match. The names I liked was already taken on crates.io but never got it out of my head
Never sorted out a reliable enough system for it to be practically useful, but this gives me some ideas...
Re: Show HN: rallyup – Lightweight Wake-on-LAN Scheduler
#27Re: Show HN: rallyup – Lightweight Wake-on-LAN Scheduler
#28Isn't it bad design in the first place if you require "right order" of boot up? What if some, but not all, servers crash and reboot? How do you ensure the correct order in that case?
We’ve also noticed that, in practice, for many data-critical production systems, many of our customers prefer to manually control the boot process to confirm data integrity.
The scenario of partial crashes is interesting. I need to think about how to handle that a bit more. Thanks for the feedback!