| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { "name":"CheckSharedKey_WEP104", | 5 { "name":"CheckSharedKey_WEP104", |
| 6 "steps":[ # Channel [1,6,11] | 6 "steps":[ # Channel [1,6,11] |
| 7 [ "create", { "type":"hostap" } ], | 7 [ "create", { "type":"hostap" } ], |
| 8 [ "config", { "channel":"2412", "mode":"11g", | 8 [ "config", { "channel":"2412", "mode":"11g", |
| 9 "authmode":"shared", "wepmode":"on", | 9 "authmode":"shared", "wepmode":"on", |
| 10 # 26 digits : 01234567890123456789012345 | 10 # 26 digits : 01234567890123456789012345 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 [ "config", { "deftxkey":"2" } ], | 35 [ "config", { "deftxkey":"2" } ], |
| 36 [ "connect", { "security":"wep", | 36 [ "connect", { "security":"wep", |
| 37 "psk":"2:fedcba9876543210fedcba9876" } ], | 37 "psk":"2:fedcba9876543210fedcba9876" } ], |
| 38 [ "client_ping", { "count":"10" } ], | 38 [ "client_ping", { "count":"10" } ], |
| 39 [ "disconnect" ], | 39 [ "disconnect" ], |
| 40 [ "deconfig" ], | 40 [ "deconfig" ], |
| 41 | 41 |
| 42 # key index 3, 104-bit WEP | 42 # key index 3, 104-bit WEP |
| 43 [ "config", { "deftxkey":"3" } ], | 43 [ "config", { "deftxkey":"3" } ], |
| 44 [ "connect", { "security":"wep", | 44 [ "connect", { "security":"wep", |
| 45 "psk":"3:109fedcba9876544321fedcba98" } ], | 45 "psk":"3:109fedcba987654321fedcba98" } ], |
| 46 [ "client_ping", { "count":"10" } ], | 46 [ "client_ping", { "count":"10" } ], |
| 47 [ "disconnect" ], | 47 [ "disconnect" ], |
| 48 | 48 |
| 49 [ "destroy" ], | 49 [ "destroy" ], |
| 50 ], | 50 ], |
| 51 } | 51 } |
| OLD | NEW |