File: README

package info (click to toggle)
wakeonlan 0.41-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 60 kB
  • ctags: 5
  • sloc: perl: 76; makefile: 47
file content (101 lines) | stat: -rw-r--r-- 3,353 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101

This is some premature documentation for this project. Feel free to contact
with comments or additions. (good or bad)

	Jose Pedro Oliveira <jpo[at]di.uminho.pt>
	Ico Doornekamp <ico[at]edd.dhs.org>



1. What is wakeonlan
2. How does it work ?
3. How is it implemented here ?
4. Known to work hardware 



1. What is wakeonlan

This script sends 'magic packets' to wake-on-lan enabled ethernet
adapters, in order to switch on the called PC. 



2. How does WOL work ?

WOL is based on the following principle : 

When the PC shuts down, the NIC still gets power, and keeps listening on
the network for a 'magic' packet to arrive. This packet must contain a
certain byte-sequence, but can be encapsulated in any kind of packet
(IPX, IP, anything). Take a look at the code for the magic sequence.

This program uses UDP for sending the packet. The complete UDP packet, sent
over an ethernet interface, looks something like this

[ethernet header][IP header][UDP header][Magic sequence][CRCS] 

The only goal of the script is to send this packet over the network. It
expects no returning data, since the NIC only listens, and does not reply
anything.

For a more detailed description of the protocol, see the whitepaper
available in the followin AMD web page:
	http://www.amd.com/products/npd/overview/20212.html




3. How is it implemented here ? 
 
The scripts takes 2 arguments, the MAC-address of the NIC, and an IP
address. The IP-address is tricky :

For a NIC on your local subnet, use the broadcast-address of this subnet.
(e.g. subnet 192.168.10.0 with netmask 255.255.255.0, use 192.168.10.255)

For waking up a PC on a network behind one or more routers, some tricks must
be used. When the routers forward directed subnet broadcasts, it is possible
to use the broadcast address of the destination network. The problem is that
many routers dont forward broadcast packets, so the packet will never arrive
at the network.

It is possible to send the packet to the remote net however, by sending it
to the IP address of another host on that network that's alive at that
moment. The remote hosts will probably ignore the packet, but it has been
seen by the listening NIC that's also on the same subnet, and it will turn
on the computer... Feel free to experiment on this.



4. Known-to-work hardware :


- 3Com 3c905B Cyclone 100baseTx on an Abit BP6 Motherboard (Ico Doornekamp)

- Intel EtherExpress Pro (i82557 with management chip built onto an IBM
  IntelliStation motherboard (Sean-Paul Rees)

- Intel EtherExpress PRO/100+ (chipset 82559) with a PXE boot agent on 
  an ASUS P2B motherboard (Jose Pedro Oliveira)

- Motherboard: ASUS TUSL2-C 
  BIOS: Award BIOS / Power / Power Up Control / Wake On LAN or PCI Modem [Enable]
  Network card: Intel Pro/100 S Desktop Adapter (chipset 82550)
	with PXE boot agent v4.0.22
  (Jos Pedro Oliveira)

- Motherboard: ASUS TUSL2-C 
  BIOS: Award BIOS / Power / Power Up Control / Wake On LAN or PCI Modem [Enable]
  Network card: 3Com Fast Etherlink TX 10/100 PCI (3C905C-TXM)
	with Managed PC Boot Agent (MBA) v4.30 (build 3)
	Pre-boot eXecution Environment (PXE) v2.20
  (Jos Pedro Oliveira)

- nVidia Corporation nForce2 Ethernet Controller on ASUS and EPOX motherboards. 
  (Antoniu-George)

- Macs: Al Powerbook.
  Energy Prefs: Wake on ethernet network Administrator access
  (Denis Ahrens)