Questions tagged [wake-on-lan]

Wake-on-LAN is an Ethernet computer networking standard that allows a computer to be turned on or woken up by a network message

Wake-on-LAN is a protocol intended for waking computers up from a very low power mode in a remote fashion.

Wake-on-LAN is mainly used by system administrators, who perform computer maintenance tasks remotely. The computer receiving the special data packet, which is sometimes referred to as the "Magic Packet", must have a motherboard, network adapter, adapter driver and computer basic input/output system (BIOS) that work with Wake-on-LAN.

The protocol also allows for a supplementary Wake-on-Wireless-LAN ability as well.

128 questions
4
votes
2 answers

Magic packet for Wake on Wireless LAN?

How to construct & send the magic packet for Wake on Wireless LAN? The Wikipedia article on the subject only describes the standard Wake-on-LAN magic packet. However the same article describes that a supplementary standard would need to be used for…
adib
  • 8,285
  • 6
  • 52
  • 91
4
votes
1 answer

How to do Wake On LAN by Qt 5?

I found this tutorial for wake on LAN,but I can not understand it completely. It is implemented in Qt3. I want the wake on LAN functionality which could be compiled with Qt5. How can I use the mentioned code to wake a computer through LAN using Qt5?
flybird
  • 53
  • 1
  • 6
3
votes
2 answers

WOL from outside WAN

A while ago, I wrote [with some help from Google] a small WOL script to switch on the computers in my network. Here is the script: exec /usr/bin/python -x "$0" "$@" # node_lst = [ 'srv1 0a:1b:8c:0d:2e:7f', 'srv2…
MacUsers
  • 2,091
  • 3
  • 35
  • 56
3
votes
2 answers

How to wake a PC with a PHP script?

By enabling Wake-on-LAN on my PC, I can remotely power it on. Suppose I want to send the "magic packet" from a PHP script. How would I do this? Would I need to use the cURL functions?
Nathan Osman
  • 71,149
  • 71
  • 256
  • 361
3
votes
7 answers

Get mac address from IP using DHCP?

I am trying to create scripts/services that allow for waking PCs in a windows domain via WOL. Now i want to give the user the option to select an AD container as a starting point for the waking of PCs contained within. My initial thought is using…
Matt Kocaj
  • 11,278
  • 6
  • 51
  • 79
3
votes
3 answers

How to make Wake On Lan for Android?

can you please tell me, how to make Wake On Lan app for Android? I am searching two weeks on Google, tried everything, downloaded source code from another wake on lan app and tried to find code for making and sending magic packet. It looks like…
StfgMccx
  • 98
  • 2
  • 9
3
votes
2 answers

Configuring PC to Wake on LAN

I'm trying to configure my Windows 7 PC to wake on lan (S4 and S5), but it just doesn't work. I have followed all the steps. Changed my network adapter settings to wake on magic packet Opened UDP port 7 on my windows firewall Port forwarded my…
sharath.g
  • 311
  • 5
  • 17
2
votes
4 answers

How to Enable Wake on LAN programmatically

Is there a way to programmatically reach into the BIOS and turn on the Wake on LAN capability for those machines that support it? Ideally, the solution would be cross-BIOS, but hitting each of the major vendors with separate solutions would be okay,…
TALlama
  • 16,017
  • 8
  • 38
  • 47
2
votes
0 answers

Samsung TV doesn't react to Wake on LAN

I am trying to setup a NodeJs app that will control my Samsung SmartTv. So far I succeeded in controlling everything except switching it ON. For that I want to use Wake on LAN. The problem is, when I send the TV the magic packet, the TV doesn't…
Clement Da
  • 51
  • 1
  • 4
2
votes
2 answers

Please explain how this wake-on-LAN script works

I found this PowerShell code on a blog a couple months ago. It sends wake-on-LAN signals to the MAC address of your choice without using external programs. I commented on the blog post and asked the author to describe the logic behind the script…
Josh
  • 23
  • 1
  • 3
2
votes
1 answer

Wake on LAN Powershell script not working

I've been trying to wake a computer on LAN from a shutdown state. The computer that is sending the WOL request is a windows 10 machine and the machine i'm trying to wake is a Windows 10 machine. I've tried a few scripts that I've found on the…
a walter
  • 59
  • 8
2
votes
0 answers

Trigger a script using Wake-on-LAN on Windows 10

I have recently enabled wake-on-LAN on my PC running the latest version of Windows 10. Can a script (or any other means of automation) be set up so that each time my PC wakes from LAN (and only on wake from LAN), it will automatically open a…
2
votes
1 answer

Can send normal UDP packet with VB.net - But how do you send a WOL packet?

I can send a packet with this: Public Class Form1 Dim publisher As New Sockets.UdpClient(0) Dim subscriber As New Sockets.UdpClient(2000) Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click …
Bitten Fleax
  • 262
  • 4
  • 20
2
votes
0 answers

Xamarin - Turn on PC from Android phone by Wake on LAN (WOL)

I am a newbie in Xamarin. Now, I am developing an application to turn on PC from Android phone by Wake on LAN. My PC and phone are both in a LAN connection. But when I execute code to turn on WOL, nothing is happen, my PC still not…
Neo
  • 1,469
  • 3
  • 23
  • 40
2
votes
0 answers

Debian [Squeeze] Server - wake on lan not working

I am searching for some help on the following issue: Problem Summary Debian Server should wake on lan. Utilities installed, BIOS adjusted, startup scripts adjusted. Trying to wake up from state of hibernation/suspense/halt from linux mint client…
1
2
3
8 9