add added files
[bcm963xx.git] / userapps / broadcom / cfm / html / setup_sec.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2 <!--
3    (c) 2004-2005 U.S. Robotics Corporation.
4 -->
5 <html>
6 <head>
7         <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
8         <title>Setup</title>
9         <link href="usr_main.css" rel="stylesheet" type="text/css">
10         <script src="usr_common.js" type="text/javascript"></script>
11 <script type="text/javascript">
12 function validatePage()
13 {
14         if (document.idForm.chkEncrypt.checked)
15         {
16                 if (!minLength("Pass phrase", document.idForm.wlWpaPsk, 8))
17                         return false;
18         }
19         else
20                 document.idForm.wlWpaPsk.value = "";
21         
22         return true;
23 }
24 </script>
25 </head>
26
27 <body onload="setVisibility('idEncrypt', document.idForm.chkEncrypt.checked); setVisibility('idEncryptNo', !document.idForm.chkEncrypt.checked);">
28
29 <script type="text/javascript">
30         setPageTitle("<%ejGetWl(wlInterface)%>");
31         writeHeaderSetup(2, 3);
32 </script>
33
34
35 <form name="idForm" action="setup_login.wl" method="post">
36
37 <!-- This code is similar to the code on the index-wireless.html -->
38 <h3>Network Name (SSID)</h3>
39
40 <p>This is the name of your wireless network. Wireless devices will need to know the
41 network name (also known as an SSID) of your router in order to communicate with it.</p>
42
43 <p id="lblSSID"><label for="wlSsid">Network name:</label>
44         <input type="text" size="30" maxlength="30" name="wlSsid" id="wlSsid" class="clsTextfield" value="<%ejGetWl(wlSsid)%>"></p>
45
46 <p>U.S.&nbsp;Robotics recommends that you change the <b>network name</b>
47 and treat it like a password. Use a combination of more than eight alphanumeric
48 characters that is not easy to guess (such as &ldquo;MyHomeOffice&rdquo;
49 or &ldquo;Fish81Tree&rdquo;).</p>
50
51
52 <!-- This code is similar to the code on the wireless.htm page but MUCH simpler -->
53 <h3>Security</h3>
54
55 <p>U.S.&nbsp;Robotics recommends securing your router from unauthorized
56 wireless devices by using WPA encryption.
57 If you want to use a different method, you can change it on the
58 router&rsquo;s <b>Security</b> page after the setup is complete.
59 </p>
60
61 <p><input type="checkbox" name="chkEncrypt" id="chkEncrypt" checked
62         onclick="toggleVisibility('idEncrypt'); toggleVisibility('idEncryptNo');">
63         <label for="chkEncrypt">Secure the router against unauthorized access (recommended)</label></p>
64
65 <div id="idEncrypt">
66
67 <table border="0">
68         <tr>
69                 <td id="lblMethod" valign="top"><label>Method:</label></td>
70                 <td>
71                         <span class="clsStatic">WPA2 and WPA (PSK)</span>
72                 </td>
73         </tr>
74
75         <tr>
76                 <td valign="top"><label for="wlWpaPsk">Pass&nbsp;phrase:</label></td>
77                 <!-- either 32 hex digits or ASCII that WPA hashes to a 256-bit key -->
78                 <td><input type="text" size="40" maxlength="63" name="wlWpaPsk" id="wlWpaPsk" class="clsTextfield" value="<%ejGetWl(wlWpaPsk)%>"><br/>
79                         <span class="clsNote">(The pass phrase must be between eight and sixty-three characters long.)</span>
80                         </td>
81         </tr>
82 </table>
83
84 <p>U.S.&nbsp;Robotics recommends that you treat your <b>WPA pass phrase</b> like
85 a password and use a combination of alphanumeric characters that is not
86 easy to guess (such as &ldquo;5Rock2Fish9Sand&rdquo; or &ldquo;20Dogs933Trot&rdquo;).</p>
87
88 </div>
89 <div id="idEncryptNo" style="display: none;" class="clsNotice">
90         <p>Please note that you have disabled encryption on the router and your
91         wireless network will be insecure. Unauthorized wireless devices may be
92         able to connect to your network, use your Internet connection, and access
93         your computers.
94         You can enable encryption later on the router&rsquo;s <b>Security</b> page.</p>
95 </div>
96
97
98 <p class="clsSave">You will need to enter these values when you configure a wireless client.
99 After setup is complete, these values will be displayed on the
100 router&rsquo;s <b>Status</b> page,
101 and you can write them down or print them.
102 </p>
103
104 <p>When you&rsquo;re finished and ready to go to the next step, press <b>Next</b>.</p>
105 <p><input type="submit" class="clsBtnSave" name="btnSubmit" value="Next -->" onclick="if (!validatePage()) return false;"></p>
106 <!-- If all entries are valid, Setup-Login is displayed. An error keeps the user here. -->
107
108 </form>
109
110 <script type="text/javascript">
111         writeFooter();
112 </script>
113
114 </body>
115 </html>