4
2011
Wake on LAN through Internet
I write this tutorial to show how it is simple wakup a PC through Internet using WOL feature.
What is WOL feature?
Wake-on-LAN (WOL) is an Ethernet computer networking standard that allows a computer to be turned on or woken up by a network message.
The message is usually sent by a program executed on another computer on the same local area network. It is also possible to initiate the message from another network by using Subnet directed broadcasts or a WOL gateway service. Wake-on-LAN is implemented using a special network message called a magic packet. The magic packet contains the MAC address of the destination computer. The listening computer waits for a magic packet addressed to it and then initiates system wake-up.
To enable WOL feature, you need:
Step #1: Enable WOL feature in your Bios. To more details check your guide.
Step #2: Download WOL software.
There are many WOL software (search with google…), but in this tutorial I use the Magic packet sender software (http://magicpacket.free.fr/).
Step #3: Find the Mac address of your PC
Step #4: Configure Cisco router
- Define a static arp entry
- Define a Port address translation (PAT)
Example

First of all, on the Ciscozine router define the entry:
arp 192.168.1.10 0020.cd3d.17c4 ARPA
Where 192.168.1.10 and 0020.cd3d.17c4 are the IP address and the MAC address of the PC to wake up.
Define a static pat translation:
ip nat inside source static udp 192.168.1.10 65535 interface Dialer1 7010
Now you can test the WOL feature: shutdown the WOL-host, open the magic sender software on the other host and configure it as you can see below:

Then… press the “Send” button and your pc will wake up
Note: The switch does not required any additional configuration.
References:
Related Posts
2 Comments + Add Comment
Leave a comment
Archives
- February 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008

An article by






Static ARP, of course!
I knew how to trigger it in the same subnet, but not from another network. Thanks for the information.
Greetings!
Or you could enable directed broadcast on the vlan the PC is on and just do a port forward to the broadcast address.
That way you don’t have to add static arps for every PC.