linux系统网络唤醒,Linux系统与Windows系统下的网络唤醒

Wake on Lan with Linux and Windows

Linux系统与Windows系统下的网络唤醒

Motivation

问题起因

I have 3 computers. My laptop a Thinkpad X30, another Thinkpad which acts as server and a desktop computer. I have all my main data on my server and use the files on my laptop and desktop by sshfs and NFS.

我有3台计算机。我的笔记本电脑是Thinkpad X30,另一个Thinkpad充当服务器还有台桌面用电脑。我的最主要的数据存储在服务器中,我使用笔记本电脑或桌面用电脑通过sshfs和NFS来访问它们。

The only files I don’t store on my server is media files, such as movies and music – these are stored on my desktop. This was the problem – if I was out I couldn’t access my files since my desktop was turned off when I am not home. I need something to turn on my desktop when I wasn’t home.

媒体文件是我唯一不存储在服务器的文件,诸如电影和音乐——这些都储存在桌面用电脑中。问题是——当我外出时,桌面用电脑处于关闭状态,我是我无法访问所需要的文件的。当我不在家时,我希望能够有某种方式可以远程启动我的桌面用电脑。

f0479fff99036915da42c4aa5f4e7bce.png

Wake on Lan

网络唤醒

Wake on Lan (WOL) is a technology to turn on a computer by sending it a specific network package. When a WOL-enabled computer is turned off the network port will stay active and listen for a certain packages and in if it receives such a package it will boot the computer.

网络唤醒(WOL)是一种技术,通过向一台计算机发送一个特定的网络包来启动它。当一个设置为允许网络唤醒的计算机处于关闭状态时其网络端口将保持活跃并里监听了某些特定的包,如果收到则会启动电脑。

Two things are needed:

两个必需条件:

Enable WOL on my Desktop.

设置计算机为允许网络唤醒。

Installing a program to send the magical network package on my server.

在服务器上安装一个可以用于发送魔术包(使电脑自动开机的数据包)的软件。

BIOS

BIOS设置

Somewhere in the BIOS there will hopefully be some setting to enable WOL. I didn’t find it in the BIOS of my ASUS PW5 DH motherboard, but it works fine. A good indicator is to check whether the lights around the network cable is turned on or not on the back of the computer when the computer has been shutdown.

我希望可以在BIOS中有某些关于WOL的设置。只是在我的华硕PW5 DH主板BIOS中没有找到,但是它确实是运行着的。一个很好的验证方式,就是当你的计算机关机后,且保持网线插入了网卡接口,且在关机前机器可以顺利上网。如果此时网卡上的指示灯亮着表示支持WOL了。

Enabling WOL in Windows

在Windows系统中设置WOL

It always takes more screenshots to explain anything in Windows, but there is not really any way around it. In Windows I need to go to the network setting and choose my network adapter. After selecting “configure” as in the screenshot:

很多时候如果有截图会更好的说明问题,只是有时候却是无法抓取屏幕的。在Windows系统中打开网络设置,然后再弹出属性窗口。在选取“configure”选项后的截图如下:

译者注:所有的设定没有标准的固定的模式,如果你的计算机无法照做,并不说明你的机器无法设置wol,这里只是提供了一种实现而已。译者本人所管理的计算机中有的可以在主板BIOS上设置实现,而有的用的是此种方式。或许还有其他。

22deb02e99eda2b6274e61731e4129b8.png

I selected the fan called “advanced” where I found to settings I need to turn on:

我选取了“advanced(高级)”选项卡,在这里找到了我需要的选项:

Wake from shutdown(从关机状态下唤醒):

41a29f51c01c97c09a5f3c14cd998b63.png

Wake up capabilities(唤醒功能):

5db05b7e905a5db26855be913bdb1eef.png

That’s it.

icon_smile.gif很好。

Enabling WOL in Linux

使Linux实现WOL

To enable WOL from Linux the option has to be set before shutting Linux down. First I see what is supported by network driver

WOL需要在未关闭Linux系统时进行设置。首先查看网络驱动支持的内容是什么

root@bohr:/home/tjansson# ethtool eth1

Settings for eth1:

...

Supports Wake-on: pg

Wake-on: d

...

译者机器上显示内容为:

Supports Wake-on: pumbg

Wake-on: g

So it supports pg which means (from man ethtool):

pg选项的含义(源自ethtool命令的man手册):

p  Wake on phy activity

g  Wake on MagicPacket(tm)

在译者的系统中还有三项设置:

u   Wake on unicast messages

m   Wake on multicast messages

b   Wake on broadcast messages

The g option is the interesting part. So I set the option on the my network driver:

这个g参数是一个有趣的部分。所有我在网络驱动上设置了这个选项。

root@bohr:~# ethtool -s eth1 wol g

but I don’t want to do this every time I shut down the computer, so I will make a script in /etc/init.d/ named wol.sh containg the lines:

我并不想在每次关机时都重复此设置,所以我将写一个名为wol.sh的脚本放入到/etc/init.d/文件夹中,其内容如下:

#!/bin/bash

ethtool -s eth1 wol g

and make it executable:

并且使之可执行:

root@bohr:/etc/init.d# chmod +x wol.sh

and finally tell Linux to execute the script on every runlevel, which I quite a overkill, but it doesn’t really mater – it works:

最后通知所有运行级别均自动运行此脚本,我的特别操作并非废话-操作如下:

root@bohr:/etc/init.d# update-rc.d -f wol.sh defaults

Now WOL is enabled under Linux as well.

现在WOL在Linux被允许了。

Sending the magical package from Linux

从Linux系统是发送魔术包

The last thing I need to do is to wake the computer after it has been shut down. I do this from my Linux server on the same local network. The only information needed is the hardware adress of network interface on the desktop machine. I can find this by running ifconfig under Linux or some networkgui on Windows on the desktop machine:

最后我要做的是唤醒已经关闭的计算机。我是在服务器上做这件事情的,它与被唤醒机器处于同一局域网中。唯一所需的信息就是被唤醒机器的网卡硬件地址。可以在Linux执行ifconfig命令或在Windows系统中通过网络设置的图形界面进行查看。(译者注:在Windows中运行ipconfig命令查看)

tjansson@bohr:~$ /sbin/ifconfig

...

eth1      Link encap:Ethernet  HWaddr 00:18:F3:CD:78:A0

...

Now I can start the desktop computer by running wakeonlan from my server:

现在,可以通过在服务器上运行“wakeonlan”命令来唤醒目标机器。

root@nobel:/home/tjansson# wakeonlan 00:18:F3:CD:78:A0

Sending magic packet to 255.255.255.255:9 with 00:18:F3:CD:78:A0

Waking the computer from other OS’s

在其它类型的系统时实现计算机唤醒

In the bottom of the wikipediaentry on WOL there is a long list of other programs to send the magical network package but I haven’t tried any of these my self.

在wikipediaentry on WOL 的底部,有很长的可以发送魔术包的程序列表,只是我没有进行相关的测试。

[翻译完,于2012年04月24日 星期二 09时26分25秒 ]

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值