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

Side by Side Diff: server/site_tests/network_WiFiSecMat/001StaticKeyWEP104

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":"CheckStaticKey_WEP104",
6 "steps":[ # Channel [1,6,11]
7 [ "create", { "type":"hostap" } ],
8 [ "config", { "channel":"2412", "mode":"11g",
9 # "authmode":"open", "wepmode":"on",
10 "wepmode":"on",
11 # 26 digits : 01234567890123456789012345
12 "wep_key0": "0123456789abcdef0123456789",
13 "wep_key1": "89abcdef0123456789abcdef01",
14 "wep_key2": "fedcba9876543210fedcba9876",
15 "wep_key3": "109fedcba987654321fedcba98"
16 }
17 ],
18
19 # key index 0, 104-bit WEP
20 [ "config", { "deftxkey":"0" } ],
21 [ "connect", { "security":"wep",
22 "psk":"0:0123456789abcdef0123456789" } ],
23 [ "client_ping", { "count":"10" } ],
24 [ "deconfig" ],
25
26 # key index 1, 104-bit WEP
27 [ "config", { "deftxkey":"1" } ],
28 [ "connect", { "security":"wep",
29 "psk":"1:89abcdef0123456789abcdef01" } ],
30 [ "client_ping", { "count":"10" } ],
31 [ "deconfig" ],
32
33 # key index 2, 104-bit WEP
34 [ "config", { "deftxkey":"2" } ],
35 [ "connect", { "security":"wep",
36 "psk":"2:fedcba9876543210fedcba9876" } ],
37 [ "client_ping", { "count":"10" } ],
38 [ "deconfig" ],
39
40 # key index 3, 104-bit WEP
41 [ "config", { "deftxkey":"3" } ],
42 [ "connect", { "security":"wep",
43 "psk":"3:109fedcba9876544321fedcba98" } ],
44 [ "client_ping", { "count":"10" } ],
45
46 [ "destroy" ],
47 ],
48 }
OLDNEW
« no previous file with comments | « server/site_tests/network_WiFiSecMat/000StaticKeyWEP40 ('k') | server/site_tests/network_WiFiSecMat/002StaticKeyWEP128 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698