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

Side by Side Diff: server/site_tests/network_WiFiSecMat/000StaticKeyWEP40

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_WEP40",
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 # 10 digits : 0123456789
12 "wep_key0": "0123456789",
13 "wep_key1": "89abcdef01",
14 "wep_key2": "9876543210",
15 "wep_key3": "fedcba9876"
16 }
17 ],
18
19 # key index 0, 40-bit WEP
20 [ "config", { "deftxkey":"0" } ],
21 [ "connect", { "security":"wep", "psk":"0:0123456789" } ],
22 [ "client_ping", { "count":"10" } ],
23 [ "deconfig" ],
24
25 # key index 1, 40-bit WEP
26 [ "config", { "deftxkey":"1" } ],
27 [ "connect", { "security":"wep", "psk":"1:89abcdef01" } ],
28 [ "client_ping", { "count":"10" } ],
29 [ "deconfig" ],
30
31 # key index 2, 40-bit WEP
32 [ "config", { "deftxkey":"2" } ],
33 [ "connect", { "security":"wep", "psk":"2:9876543210" } ],
34 [ "client_ping", { "count":"10" } ],
35 [ "deconfig" ],
36
37 # key index 3, 40-bit WEP
38 [ "config", { "deftxkey":"3" } ],
39 [ "connect", { "security":"wep", "psk":"3:fedcba9876" } ],
40 [ "client_ping", { "count":"10" } ],
41
42 [ "destroy" ],
43 ],
44 }
OLDNEW
« no previous file with comments | « server/site_tests/network_WiFiMatFunc/control ('k') | server/site_tests/network_WiFiSecMat/001StaticKeyWEP104 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698