若是咱們的服務器沒有部署在本地(一般都會把服務器託管到IDC機房),並且服務器在機房中不止一臺,其中一臺被關閉時,則咱們能夠遠程鏈接一臺沒有關機的服務器上,而後進行遠程開機。linux
用yum命令安裝遠程開機須要的軟件:yum install wol服務器
如何進行遠程開機?ide
第一步:首先要肯定你的linux服務器是否支持遠程開機?登陸到目標服務器,用ethtool這個命令打印出網卡的信息部署
[root@localhost lhd]# ethtool eth0it
Settings for eth0:io
Supported ports: [ TP MII ]class
Supported link modes: 10baseT/Half 10baseT/Full登錄
100baseT/Half 100baseT/Fullsed
Supports auto-negotiation: Yes軟件
Advertised link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
Advertised auto-negotiation: Yes
Speed: 100Mb/s
Duplex: Full
Port: MII
PHYAD: 32
Transceiver: internal
Auto-negotiation: on
Supports Wake-on: pumbg
Wake-on: d
Current message level: 0x00000007 (7)
Link detected: yes
能夠看到,ethtool把網卡的信息所有列出,咱們只關心其中的這兩項:
Supports Wake-on: pumbg
Wake-on: d
若是 wake-on 一項值爲 d,表示禁用wake on lan
值爲 g,表示啓用 wake on lan
由於此機器禁用了 wake on lan,因此用下面的命令來啓用它:
[root@localhost lhd]# ethtool -s eth0 wol g
再用 ethtool命令進行查看,會發現:
Wake-on: g
OK,目標機器的網卡已經支持了遠程開機,下面咱們獲得它的本地MAC地址:
[root@localhost lhd]# ifconfig
eth0 Link encap:Ethernet HWaddr 00:03:0D:1D:1F:97
inet addr:192.168.6.101 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:34470 errors:0 dropped:0 overruns:0 frame:0
TX packets:35377 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:31559763 (30.0 MiB) TX bytes:5340032 (5.0 MiB)
Interrupt:5 Base address:0x2c00
把HWaddr 00:03:0D:1D:1F:97這一項記錄下來便可,如今你能夠試着把目標機器關閉。
第二步:開機
如今咱們須要登陸到已安裝了wakeonlan軟件的機器上,在上面執行開機命令:
wol 00:03:0D:1D:1F:97
稍後就會發現,目標機器已開機能夠登陸了。