기존방법기존방법대로 시도했는데, "enable_wol" 옵션을 via-rhine 에선 지원하지 않는다고 한다.
google 을 돌아다니면서
새방법을 찾았는데
간단하게 "ethtool -s eth0 wol g" 한줄만 시작 스크립트에 넣어주면 된다.
home ~ # cat /etc/conf.d/local.start
# /etc/conf.d/local.start
# This is a good place to load any misc programs
# on startup ( use 1>&2 to hide output)
ethtool -s eth0 wol g
home ~ #