Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>For the WOL problem you have to clarify three problems to get it to work:</p> <ol> <li>Send a WOL over the ethernet cable</li> <li>Configure your PC to listen for such a packet and wake up</li> <li>Make sure the packet will come from sender to receiver (firewall, gateways, etc.)</li> </ol> <p>As you already found on the net there are existing several solutions for the first problem programmed in C# (and after skim your links i would start with the first one).</p> <p>The second one is something you can only achieve by configuring your network adapter. Just open the device manager and take a look into the properties of your network adapter, if such an option exists and if you can enable it. This can't be programmed, due to the fact that every network adapter has another implementation of that function and how it can be enabled.</p> <p>The third problem can't also be solved by C#. It is a pure network problem, where you have to configure your router, gateways, ids-systems, etc. to allow such a packet and let it flow from sender to receiver. Due to the fact, that a WOL packet is always a broadcast packet (dest-ip 255.255.255.255) it won't leave your local network and will always be dropped from router, gateways or any other bridge between to networks (e.g. vpns, etc.).</p> <p>Last but not least i will just remind you, that the first problem can be divided into some smaller packets but as far as i could see these problems are all capped by the links you provided.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload