]> git.wh0rd.org - chrome-ext/wake-on-lan.git/blame - main.html
initial commit
[chrome-ext/wake-on-lan.git] / main.html
CommitLineData
5b4622f6
MF
1<!-- Written by Mike Frysinger <vapier@gmail.com>. Released into the public domain. -->
2<!doctype html>
3<html>
4
5<head>
6<title>Wake-On-Lan (WOL)</title>
7<script src='js/net_error_list.js'></script>
8<script src='js/common.js'></script>
9<script src='js/main.js'></script>
10<style>
11body {
12 background-color: black;
13 color: white;
14 font-family: monospace;
15 white-space: nowrap;
16}
17
18input.mac {
19 text-align: center;
20}
21
22input[name=port] {
23 text-align: center;
24}
25
26a {
27 color: grey;
28}
29</style>
30</head>
31
32<body>
33
34<p class='header' style='text-align:center'>
35 <a href='https://en.wikipedia.org/wiki/Wake-on-LAN' target='_blank'>
36 Wake-On-Lan (WOL) Magic Packet Generator
37 </a>
38</p>
39
40<div class='settings'>
41 <form name='settings'>
42 <table width='100%'>
43 <tr>
44 <td>
45 <a href='https://en.wikipedia.org/wiki/IP_address' target='_blank'>IP</a>
46 /
47 <a href='https://en.wikipedia.org/wiki/Hostname' target='_blank'>Hostname</a>:
48 </td>
49 <td><input tabindex='1' name='host' value='255.255.255.255' size='40' autofocus></td>
50 </tr>
51 <tr>
52 <td><a href='https://en.wikipedia.org/wiki/MAC_address' target='_blank'>MAC address</a>:</td>
53 <td>
54 <span name='mac-many'>
55 <input tabindex='2' class='mac' name='mac0' value='20' size='1' maxlength='2'>
56 <input tabindex='3' class='mac' name='mac1' value='00' size='1' maxlength='2'>
57 <input tabindex='4' class='mac' name='mac2' value='00' size='1' maxlength='2'>
58 <input tabindex='5' class='mac' name='mac3' value='00' size='1' maxlength='2'>
59 <input tabindex='6' class='mac' name='mac4' value='00' size='1' maxlength='2'>
60 <input tabindex='7' class='mac' name='mac5' value='00' size='1' maxlength='2'>
61 </span>
62 <span name='mac-one' hidden>
63 <input tabindex='8' class='mac' name='mac' size='39' maxlength='20'>
64 </span>
65 <a tabindex='9' name='mac-paste' href=''>Paste</a>
66 </td>
67 </tr>
68 <tr>
69 <td><a href='https://en.wikipedia.org/wiki/Port_(computer_networking)' target='_blank'>Port</a>:</td>
70 <td><input tabindex='10' type='number' name='port' min='1' max='65535' step='1' value='9'></td>
71 </tr>
72 <tr>
73 <td><a href='https://en.wikipedia.org/wiki/Wake-on-LAN#Security_considerations' target='_blank'>SecureOn</a>:</td>
74 <td>
75 <span name='pass-many'>
76 <input tabindex='11' class='mac' name='pass0' value='00' size='1' maxlength='2'>
77 <input tabindex='12' class='mac' name='pass1' value='00' size='1' maxlength='2'>
78 <input tabindex='13' class='mac' name='pass2' value='00' size='1' maxlength='2'>
79 <input tabindex='14' class='mac' name='pass3' value='00' size='1' maxlength='2'>
80 <input tabindex='15' class='mac' name='pass4' value='00' size='1' maxlength='2'>
81 <input tabindex='16' class='mac' name='pass5' value='00' size='1' maxlength='2'>
82 </span>
83 <span name='pass-one' hidden>
84 <input tabindex='17' class='mac' name='pass' size='39' maxlength='20'>
85 </span>
86 <a tabindex='18' name='pass-paste' href=''>Paste</a>
87 </td>
88 </tr>
89 <tr>
90 <td colspan=2 align='middle'>
91 <input tabindex='19' type='submit' name='send' value='Send'>
92 </td>
93 </tr>
94 </table>
95 </form>
96</div>
97
98<p class='status'>Status: <span name='status'>idle</span></p>
99
100<br>
101
102<p>
103Problems? Try
104<a href='https://en.wikipedia.org/wiki/Wake-on-LAN#Troubleshooting_magic_packets' target='_blank'>troubleshooting</a>.<br>
105<br>
106Random tips (applies to all WOL and is not specific to this app):<br>
107<ul>
108 <li>You have to be on the same local network as the target</li>
109 <li>i.e. You cannot wake up computers over the internet</li>
110 <li>WiFi computers often cannot be woken up remotely</li>
111 <li>WOL support has to be turned on in the BIOS/OS</li>
112 <li>Make sure the MAC address matches the computer</li>
113 <li>The SecureOn (password) is not supported by many devices;<br>feel free to leave the default value</li>
114</ul>
115</p>
116
117</body>
118</html>