You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think that would be better resolved with something like etherwake and a cron job to execute it when you need it. You can also write a little script that runs multiple etherwake commands to wake multiple machines and do a cron job for the script.
Something like:
#!/bin/bash# MAC addresses of the devices you want to wake up
device1_mac="00:11:22:33:44:55"
device2_mac="66:77:88:99:AA:BB"# Function to wake up a devicewake_device() {
mac_address=$1
etherwake -i eth0 $mac_address
}
# Wake up the first device
wake_device $device1_mac# Wait for a moment between waking up devices
sleep 2
# Wake up the second device
wake_device $device2_mac
Requesting a schedule feature so that devices can be woke up daily at XX:XX time.
The text was updated successfully, but these errors were encountered: