Outils du site

J'ai une annonce faire aux fumeurs : pendez-vous, ça va plus vite ! [Coluche]

04-linux:10-administration:wakeonlan

Wake on LAN

Installation

  • sudo apt install etherwake -y
  • sudo apt install wakeonlan -y

Configuration

https://www.techrepublic.com/article/how-to-enable-wake-on-lan-in-ubuntu-server-18-04/

  • pi a # pour voir l'INTERFAC réseau cible
  • sudo ethtool -s <INTERFACE> wol g
  • sudo vi /etc/systemd/system/wol.service

In that file, paste the following:

[Unit]
Description=Configure Wake On LAN

[Service]
Type=oneshot
ExecStart=/sbin/ethtool -s INTERFACE wol g

[Install]
WantedBy=basic.target

Save and close the file. Make systemd aware of the new script with the command:

  • sudo systemctl daemon-reload

Enable the new service with the command: *

  • sudo systemctl enable wol.service

Finally, start the service with the command:

  • sudo systemctl start wol.service

Réveil

  • wakeonlan <@MAC>
Dernière modification : 2021/01/16 13:20