Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Side by Side Diff: server/site_tests/network_WiFiSecMat/005SharedKeyWEP40

Issue 669118: automated WiFi test framework and start of tests (Closed)
Patch Set: revert correctly Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 { "name":"CheckSharedKey_WEP40",
6 "steps":[ # Channel [1,6,11]
7 [ "create", { "type":"hostap" } ],
8 [ "config", { "channel":"2412", "mode":"11g",
9 "authmode":"shared", "wepmode":"on",
10 # 10 digits : 0123456789
11 "wep_key0": "0123456789",
12 "wep_key1": "89abcdef01",
13 "wep_key2": "9876543210",
14 "wep_key3": "fedcba9876"
15 }
16 ],
17
18 # key index 0, 40-bit WEP
19 [ "config", { "deftxkey":"0" } ],
20 [ "connect", { "security":"wep", "psk":"0:0123456789" } ],
21 [ "client_ping", { "count":"10" } ],
22 [ "deconfig" ],
23
24 # key index 2, 40-bit WEP
25 [ "config", { "deftxkey":"1" } ],
26 [ "connect", { "security":"wep", "psk":"1:89abcdef01" } ],
27 [ "client_ping", { "count":"10" } ],
28 [ "deconfig" ],
29
30 # key index 3, 40-bit WEP
31 [ "config", { "deftxkey":"2" } ],
32 [ "connect", { "security":"wep", "psk":"2:9876543210" } ],
33 [ "client_ping", { "count":"10" } ],
34 [ "deconfig" ],
35
36 # key index 4, 40-bit WEP
37 [ "config", { "deftxkey":"3" } ],
38 [ "connect", { "security":"wep", "psk":"3:fedcba9876" } ],
39 [ "client_ping", { "count":"10" } ],
40
41 [ "destroy" ],
42 ],
43 }
OLDNEW
« no previous file with comments | « server/site_tests/network_WiFiSecMat/002StaticKeyWEP128 ('k') | server/site_tests/network_WiFiSecMat/006SharedKeyWEP104 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698