Computers are generally started with the power on/off buttons. But in some cases, we may need to boot or start the computer from remote by using different techniques. Wake On LAN is a method that can start the computer from the network.
What Is Wake On LAN?
Wake On Lan (WOL) is ea feature provided the network interface card and motherboard in order to boot a system over a network connection by sending special package which is called as Magic Packet
. The magic packets contains the remote system NIC MAC address where the remote system NIC is only listening to the network in low-power mode even the system is powered down. When the NIC receives the magical packet the NIC will signal the computer power supply or motherboard to wake-up or boot the system like pressing the power button.
Wake On LAN Expressions
Magical Packet
Magic Packet will trigger the start of a system remotely. Magical packet is a broadcast frame which works on OSI Layer 2 where it contains the remote system MAC address and FF
or 255 values for data.The first 6 bytes contains “FF FF FF FF FF FF” value and then the MAC address of the target system by repeating 16 times.
In order to trigger the Wake On LAN features the following requirements should be met by a Magical Packet.
- Requires the destination or target system/computer MAC address.
- May require the SecureOn password.
- As broadcast mechanisms there is no confirmation about the Magical Packet delivery by the remote target system.
- The magical packet is only transmitted inside the Local Area Network and can not be routed outside of the current network
- The NIC should support the Wake On LAN to boot a computer remotely.
What On LAN Software List
As a simple and useful protocol there are a lot of software which can trigger Wake On LAN. Below you can sing some of them. Also Wake On LAN can be easily implemented with some programming and scripting languages with the help of low level library support.
- SolarWinds Wake On LAN
- Teamviewer Wake On LAN Feature
- Depicus Wake On LAN Magic Packet Tool
- Wake-on-LAN tool by OpUtils
- WakeMeOnLan by NirSoft
- Wake On LAN (Magic Packet) HM Software
- Windows System Management Software By PointDev
- Wakeup Tool
- Wake On LAN Mike Webb (Android)
Wake On LAN Support
Wake On LAN features is supported by the network interface card which is generally a ethernet card and motherboard. If the NIC and motherboard is manufactured in the past decade or so they will support the Wake On LAN features. The Wake On LAN is configured through the BIOS menu or the NIC firmware configuration.
Configure Wake On LAN On BIOS
BIOS is the basic operating system for the computer or system hardware. The Wake On LAN features can be configured from the BIOS menu. In order to enter the BIOS menu use keys like “Delete”, “Escape”, “F2”, “F10” etc. in the power-on phase of the computer which will open the BIOS Setup Utility like below. Wae On LAN generally located in the “Power” options menu with names like “Wake Up on LAN”, “WOL”, “Power On By PCI” etc. The “Wake Up on LAN” features should be enabled like below.

On computers like HP, and ASUS the BIOS menu or tool can be a bit different like below.

But there are different type of BIOS software where the Wake On LAN configuration can be set from different menus or pages. So for more preciese and detailed information please take a look to the manuals.
Configure Wake On LAN On Windows
In order to run Wake On LAN feature properly also the operating system should be configured via the Network interface card configuration like below. We will use the “Start Menu” in order to open “Device Manager” where we will access to the “Network Adapters”section. From the “Network Adapters” section we will right-click the NIC we want to configure which and select “Properties”.

The NIC properties window will be listed like below. There we will select the “Advanced” tab which provides detailed configuration about the NIC firmware. On the down the “Wake on Magic Packet” feature will be selected and the value will be set to the “Enabled”.

Configure Wake On LAN On Linux
Linux operating systems and distributions provide different tools to configure Wake On LAN feature. Ubuntu and other Linux distributions provides the “ethtool” to configure NIC firmware. “ethtool” can be installed with the following commands.
$sudo apt install ethtool
Or for RPM based distributions:
$ sudo yum install ethtool
Current configuration about the Wake On LAN can be listed with the following command. In this example the network interface card is named as “eth0” but it can be also “eht1”, “ens1” etc.
$ sudo ethtool eht0
We can enable the Wake On LAN feature with the -s
and wol
options like below.
$ sud ethtool -s eth0 wol g
Configure Wake On LAN On MacOSX
Apple operating system MacOSX provides the Wake On LAN feature configuration too. The Wake On LAN configuration is located in the “Energy Saver” section. First open the “System Preferences” and then select “Energy Saver”. There the configuration named “Wake for Network Access” is location which will be enabled by check checkbox.

Wake On LAN From Windows
Windows operating system has a lot of alternative tools for the “Wake On LAN” tool. One of them which is very simple is “Wake On LAN – Magic Packet”. This tool requires the remote system MAC address and optional information like Internet Address, Subnet Mask, Send Options, and Remote Port Number. By clicking the “Wake Me Up” button the magic packet will be sent to the remote system.

Alternatively following software can be used as a Wake On LAN tool or client.
- SolarWinds Wake On LAN

- Teamviewer Wake On LAN Feature
- Depicus Wake On LAN Magic Packet Tool
- Wake-on-LAN tool by OpUtils
- WakeMeOnLan by NirSoft

- Wake On LAN (Magic Packet) HM Software
- Windows System Management Software By PointDev

- Wakeup Tool
Wake On LAN From Linux
Linux operating system and distributions provides different tools to trigger Wake On LAN feature. One of the most popular one if “ethernetwake” tool which can be installed for Ubuntu, Debian, Mint and Kali like below.
$ sudo apt install ehterwake
Following commands can be used for remote wake up with the “ether-wake” or “wakeonlan” command.
$ wakeonlan xx:yy:zz:11:22:33
OR
$ ether-wake xx:yy:zz:11:22:33
OR
$ ether-wake -D xx:yy:zz:11:22:33
Alternative tools for Wake On LAN from Linux are like below.
- gWakeOnLAN
- wol
- wol_qt
Wake On LAN From MacOSX
MacOS.X provides different tools as a Wake On LAN client. “WakeOnLAN” is the most popular one which provides GUI and some extra features. Similar to the Linux “wakeonlan” can be also used for MacOSX too. This tool can list information about LAN computers and current status and network information. Also scheduled wake up calls can be set up easily with GUI.

Wake On LAN From Android
Android provides the tools named “Wake On LAN by Mike Webb” and “Wol0n – Wake on LAN” tools which can be used to boot a computer from an Android smartphone easily. They provide features like Grouping, Network Search, SecureOn, CSV Import/Export etc.


Wake On LAN From iPhone/iOS/iPad
iPhone and iOS platforms provides the “RemoteBoot WOL” tool in order to turn on remote system. As an alternative the “Wake Me Up – Wake-on-LAN” tool can be used too.
Wake On LAN From Python Script
Python provides low level libraries which can be used for Wake On LAN magic packet creation. “wakeonlan” package can be installed with the following command which provides the “send_magic_packet”.
$ pip install wakeonlan
and then magic packets can be sent with the send_magic_packet() function by providing the remote system MAC address or IP address like below.
send_magic_packet('ff.ff.ff.ff.ff.ff' , 'aa-bb-cc-11-22-33')
Can we block this please I didn’t authorize it thank you