centos ether-wake
必要なツールをインストール
[root@falcon21 ~]# yum -y install net-tools
wakeonlan を受け付けるかを確認
[root@falcon21 ~]# ethtool eth0
Settings for eth0:
Supported ports: [ MII ]
Supported link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Full
Supported pause frame use: No
Supports auto-negotiation: Yes
Advertised link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Full
Advertised pause frame use: No
Advertised auto-negotiation: Yes
Speed: 100Mb/s
Duplex: Full
Port: MII
PHYAD: 1
Transceiver: external
Auto-negotiation: on
Supports Wake-on: g
Wake-on: d // dは無効 gで有効
Link detected: yes
受付設定
[root@falcon21 ~]# ethtool -s eth0 wol g
[root@falcon21 ~]# ethtool eth0 | grep Wake
Supports Wake-on: g // gで有効
Wake-on: g
****************************************
ラン内PCの電源投入LinuxOS起動
[root@falcon21 ~]# ether-wake -i eth0 00:00:e2:73:47:94
成功
**************************************************************