Wake On LAN for ASUS EeePC 1000H on Linux

# Activate WOL on NIC
/usr/sbin/ethtool -s eth0 wol g

# Allow eth0 to wake up machine
echo enabled > /sys/class/net/eth0/device/power/wakeup

# Configure ACPI
grep `lspci -tv | grep -i ethernet | cut -d- -f2` \
    /proc/acpi/wakeup | cut -d' ' -f1 > /proc/acpi/wakeup

Use etherwake or wakeonlan instead of wol.

wakeonlan <mac-addr of target>