
Enabled both PCI and PCIE in BIOS, but still get no response for sending a Magic Packet.
I also see this in the manual, re: ACPI 2.0: I can try enabling that to see if it does anything.
Any further thoughts?

Code: Select all
sudo ethtool eth0
I think the issue was that I was using "wakeonlan", which wasn't working.towwire wrote: ↑Tue Jun 21, 2022 10:36 pm Suggestion for you if you had not made any changes to any files. This is what I would have done, since I know it works MX21.
1. Edit TLP WOL_DISABLE=N
2. sudo ethtool interface | grep Wake-on
to see if Wake-on: d
3. sudo ethtool -s interface wol g
4. sudo ethtool interface | grep Wake-on
should show Wake-on: g
5. Now suspend or hibernate the machine then
6. run your magic packet from other machine to see if it wakes up.
7. if not try this one 'sudo etherwake <mac address here>'
8. If it woke up now you need to make command 'ethtool -s interface wol g' last beyond the next reboot
9. You can work you way thru all the setting to find what works or
10. for me the way to go was to create a cron that ran on (re)boot. This is what you need to do, edit a crontab for the root user that contains the following line:
@reboot /usr/bin/ethtool -s interface wol g
You can do a search for 'crontab e' that is run in a terminal.
Code: Select all
sudo crontab -e