I just picked up this board and ran into the same issue. Before moving my Unraid server over to this new board I'm putting it through it's paces with vanilla Ubuntu 26.04. Bios version: 4801 Network Stack: Disabled APM Configuration...Power On By PCI-E/PCI: Enabled I used Claude to help diagnose the issue. It turns out that it'a a configuration issue and that magic packet support is disabled. To enable (verify your interface name): sudo ethtool -s enp179s0f0 wol g My AI overlord informed me that this would survive poweroff but be reset again on the next boot and to make it persistent via a systemd service sudo nano /etc/systemd/system/wol.service [Unit]
Description=Enable Wake-on-LAN
After=network.target
[Service]
Type=oneshot
ExecStart=/usr/sbin/ethtool -s enp179s0f0 wol g
[Install]
WantedBy=multi-user.target then: sudo systemctl enable wol.service
sudo systemctl start wol.service I can confirm this works on Ubuntu 26.04 and I can successfully wake the device after multiple shutdowns. This will likely be a user script on boot when I move my Unraid server to this new machine.