wake on lan はBIOS設定だけでは動かない LINUX CentOS
ethtoolがインストールされていないとだめ。
[text]
# yum install ethtool
[/text]
エラーがでないか確認する
[text]
# ethtool -s eth0 wol g
[/text]
設定ファイルを修正する。
[text]
# vi /etc/sysconfig/network-scripts/ifcfg-eth0
~~ 追加 ~~
ETHTOOL_OPTS=”wol g”
[/text]
ネットワークを再起動する
[text]
# service network restart
[/text]
wakeonlanするか試験する。
[text]
# wakeonlan 50:45:20:12:23:f6
[/text]
確認する
[text]
# ethtool eth0
~~~~
Wake-on: g <-ここが「g」になっていればOK
[/text]