1
I've been tasked with a weird problem, sending a server into sleep mode when a certain core temperature is reached, and then waking it when it cools back down to a different temperature.
I can handle a script to send the server to sleep, but how would I wake it based on a temperature change? Is that even possible?
Well there's something called Wake On Lan (WOL) where the Ethernet port is looking for a certain packet ("magic packet") that will wake it on.
So you could remotely trigger the awakening. Question is how are you going to monitor the core temp. of a server that is already asleep? Seems hard but might be possible because when my laptop goes to sleep mode keyboard / mouse movement can still awakening. So obviously some sort of sub-system interrupt tracking is still possible. It'd be interesting to track the core temp. sensor in a similar way. – curious_cat – 2015-03-12T17:37:23.333