wake on lan mini tutorial

5
Wake On Lan Mini Tutorial BIOS Activating Wake On Lan is a two step process. First you must enable WOL in your motherboard's BIOS, which is accessed by pressing either Del or F2 during boot. The options I've found to be required are most often found in the Power section. On my Asus motherboard, the following features needed to be enabled: ACPI 2.0 Power Management/APM (Advanced Power Management) Resume on LAN (or similar) The second step is ensuring that your operating system doesn't turn off your network card when the computer is shutdown. Windows NB: these instructions will vary from computer to computer, use your intuition, Google is your friend. Head for your computer's Device Manager. Start by right-clicking My Computer and selecting Properties.. In the System Properties dialog, select the Hardware tab and click the Device Manager button. mafro.net - Wake On Lan Mini Tutorial http://android.mafro.net/wol_tutorial.ht m 1 of 5 1/16/2010 10:58 PM

Upload: projectsquirt

Post on 09-Apr-2015

397 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: Wake on Lan Mini Tutorial

Wake On Lan Mini Tutorial

BIOS

Activating Wake On Lan is a two step process. First you must enable WOL in your motherboard's BIOS, which isaccessed by pressing either Del or F2 during boot.

The options I've found to be required are most often found in the Power section. On my Asus motherboard, thefollowing features needed to be enabled:

ACPI 2.0Power Management/APM (Advanced Power Management)Resume on LAN (or similar)

The second step is ensuring that your operating system doesn't turn off your network card when the computer isshutdown.

Windows

NB: these instructions will vary from computer to computer, use your intuition, Google is your friend.

Head for your computer's Device Manager. Start by right-clicking My Computer and selecting Properties..

In the System Properties dialog, select the Hardware tab and click the Device Manager button.

mafro.net - Wake On Lan Mini Tutorial http://android.mafro.net/wol_tutorial.htm

1 of 5 1/16/2010 10:58 PM

Page 2: Wake on Lan Mini Tutorial

Now in Device Manager, open the section of the tree called Network adapters. Right-click your network card fromthe items which appear, and select Properties.

mafro.net - Wake On Lan Mini Tutorial http://android.mafro.net/wol_tutorial.htm

2 of 5 1/16/2010 10:58 PM

Page 3: Wake on Lan Mini Tutorial

This is dialog is now specific to your network hardware. The image below may not be the same as what you see!Select the Advanced tab, and choose Wake Up Capabilities from the list. Switch the right-hand drop down toMagic Packet.

mafro.net - Wake On Lan Mini Tutorial http://android.mafro.net/wol_tutorial.htm

3 of 5 1/16/2010 10:58 PM

Page 4: Wake on Lan Mini Tutorial

Debian

Edit /etc/init.d/halt setting this line at the top of the file, to prevent network interface being disabled atpoweroff.

NETDOWN=no

Use this command to check the status of eth0

$ ethtool eth0

If the output of this command displays the following, your network card is set up already.

Wake-on: g

In some cases, this hasn't been set, so you can fix with the following. Run ethtool setting the wol status ofeth0 to 'g':

$ ethtool -s eth0 wol g

This setting is lost at reboot, so add the following to /etc/rc.local:

# set network card to listen for Magic Packets ethtool -s eth0 wol g

This is the list of options for waking with WOL:

p Wake on phy activity

mafro.net - Wake On Lan Mini Tutorial http://android.mafro.net/wol_tutorial.htm

4 of 5 1/16/2010 10:58 PM

Page 5: Wake on Lan Mini Tutorial

u Wake on unicast messages m Wake on multicast messages b Wake on broadcast messages a Wake on ARP g Wake on MagicPacket(tm) s Enable SecureOn(tm) password for MagicPacket(tm) d Disable (wake on nothing). This option clears all previous options.

Debian system will need a reboot after this has been configured.

Disclamier

All the information contained in this tutorial is provided for the convenience of its readers. All information isaccurate as well as can be reasonably verified. There are no guarantees or warranties stated or implied bythe distribution of this information. Use of the information in this document is at the reader's own risk, andno liability shall be given to the author. Any damage or loss is the sole responsibility of the reader.

Copyright mafro 2009 - [email protected]

mafro.net - Wake On Lan Mini Tutorial http://android.mafro.net/wol_tutorial.htm

5 of 5 1/16/2010 10:58 PM