Outils du site

Dans un certain nombre de cas, l'anticipation révèle les problèmes représentatifs du potentiel. [http://www.bellamyjc.org/fr/logomachie.html]

04-linux:10-administration:wakeonlan

Ceci est une ancienne révision du document !


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/15 21:02