• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Kazso
    3. Best
    K
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 5
    • Best 1
    • Controversial 0
    • Groups 0

    Best posts made by Kazso

    • RE: Wake on LAN not working after deploying with shutdown

      Thanks for clarifying it.
      The default bzImage kernel already had the network drivers needed for my setup (onboard Realtek NIC). I checked the WoL status of the ethernet adapter with ethtool. It showed:

      Supports Wake-on: pumbg
      Wake-on: d
      

      So WoL was supported, but disabled.
      Then I followed this guide to enable WoL on boot: https://wiki.archlinux.org/title/Wake-on-LAN
      I created the /etc/udev/rules.d/81-wol.rules file in init.xz and init_32.xz, and added this rule:

      ACTION=="add", SUBSYSTEM=="net", ATTR{address}!="00:00:00:00:00:00", RUN+="/usr/sbin/ethtool -s $name wol g"
      

      I use ATTR{address} instead of NAME, so this rule would apply to any network interface (except loopback), regardless of the interface name.
      With this rule in place I can wake up computers after a shutdown task (deploy with shutdown or capture with shutdown).

      TLDR; I only needed to add an udev rule to the pre-built init.xz and init_32.xz (https://github.com/FOGProject/fos/releases/latest) to enable WoL.

      posted in FOG Problems
      K
      Kazso
    • 1 / 1