I used to have my computer set to wake on lan. Recently (well, sometime within the past few months. For a while I was using a laptop to bridge wifi to ethernet and assumed that was the issue, but now I'm plugged into an orbi satellite) the wake on lan has gotten disabled. I checked BIOS, and there is nothing there to enable/disable it. Some googling led me to
Code: Select all
myles@Myles-PC:~$ sudo ethtool enp3s0 | grep Wake-on
Supports Wake-on: pumbg
Wake-on: d
so I run this:
Code: Select all
myles@Myles-PC:~$ ethtool -s enp3s0 wol g
And then I get this:
Code: Select all
myles@Myles-PC:~$ sudo ethtool enp3s0 | grep Wake-on
Supports Wake-on: pumbg
Wake-on: g
It works then, until I reboot. Then it goes back to how it was before. So I tried "sudo nano /etc/network/interfaces" and adding the "ethtool enp3s0 | grep Wake-on" as the last line in that file. That didn't work. How do I enable WOL to be enabled after every reboot?