Outils pour utilisateurs

Outils du site


welcome:ubuntu:wake-on-lan

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Prochaine révision
Révision précédente
welcome:ubuntu:wake-on-lan [2021/03/23 19:06]
127.0.0.1 modification externe
welcome:ubuntu:wake-on-lan [2023/01/02 17:34] (Version actuelle)
arnaud
Ligne 27: Ligne 27:
 On a server without GUI = with "Netplan" and without "Network-manager" \\ On a server without GUI = with "Netplan" and without "Network-manager" \\
 https://askubuntu.com/questions/1053302/wake-on-lan-not-working-if-i-turn-of-with-ubuntu https://askubuntu.com/questions/1053302/wake-on-lan-not-working-if-i-turn-of-with-ubuntu
 +
 +<color #22b14c>**Send a Magic Packet at startup for Ubuntu 20**</color> \\
 +Useful to wakeup a server when the client starts.
 +<code>$ sudo nano /etc/systemd/system/wol-omv.service
 +[Unit]
 +After=network-online.target
 +Wants=network-online.target
 +
 +[Service]
 +ExecStart=/usr/local/bin/wol-omv.sh
 +
 +[Install]
 +WantedBy=default.target </code>
 +<code>sudo nano /usr/local/bin/wol-omv.sh
 +#!/bin/bash
 +
 +/usr/sbin/etherwake -i enp34s0 69:70:BC:AD:4B:A2    ///// use your correct interface name and the correct mac address!!</code>
 +
 +<code>sudo chmod 744 /usr/local/bin/wol-omv.sh
 +sudo chmod 664 /etc/systemd/system/wol-omv.service </code>
 +<code>sudo systemctl start wol-omv.service
 +sudo systemctl enable wol-omv.service
 +sudo systemctl daemon-reload </code> 
 +
 +Script pour contrôler que la machine qui a recu le paquet magique s'est bien lancée - peut être ajouté au script de WOL:
 +<code># enter le suffixe de l'adresses de la machine à surveiller - sur réseau: 192.168.20.0
 +ip=(69)
 +
 +for i in `seq 1 10`; do
 +
 +        echo "test ping sur IP 192.168.20."$ip":";
 +        if  $(ping -c 1 192.168.20.$ip &> /dev/null) ; then
 +                echo "machine 192.168.20."$ip" en ligne"
 +                beep -f 1000 -n -f 2000 -n -f 1500
 +                exit 
 +
 +        else
 +                echo "machine 192.168.20."$ip" pas présente"
 +                sleep 10s;
 +        fi
 +done
 +
 +echo "machine 192.168.20."$ip" pas présente"
 +beep -f 300.7 -r 2 -d 100 -l 400 </code>
 +
 +
welcome/ubuntu/wake-on-lan.1616526383.txt.gz · Dernière modification: 2021/03/23 19:06 de 127.0.0.1

DokuWiki Appliance - Powered by TurnKey Linux