OS/Linux
CentOS 6 WOL
깐따삐아님
2011. 12. 9. 13:18
구글링을 통해 찾아낸 링크 : http://www.server-world.info/en/note?os=CentOS_6&p=wakeonlan
Wake on Lan
2011/07/12
Start a computer from a remote machine by Wake on Lan. | |
[1] | Configuration of the computer you'd like to turn on from remote machine. |
[root@dlp ~]# yum -y install ethtool [root@dlp ~]# ethtool -s eth0 wol g [root@dlp ~]# vi /etc/sysconfig/network-scripts/ifcfg-eth0
# add at the last line ETHTOOL_OPTS="wol g" |
[2] | Operation on the computer at a remore place. |
[root@wol ~]# yum -y install net-tools
# ether-wake [MAC address of the computer you'd like to turn on] [root@wol ~]# ether-wake 00:22:68:5E:34:06 # send magick packets |