| OLD | NEW |
| (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 # Test performance of a WEP-encrypted 802.11a connection |
| 6 # w/ power save disabled. |
| 7 |
| 8 { "name":"Perf11a_WEP", |
| 9 "steps":[ # Channel 48 |
| 10 [ "create", { "type":"hostap" } ], |
| 11 [ "config", { "channel":"5240", "mode":"11a", |
| 12 "wepmode":"on", |
| 13 # 26 digits : 01234567890123456789012345 |
| 14 "wep_key0" :"0123456789abcdef0123456789", |
| 15 "deftxkey":"0" |
| 16 } |
| 17 ], |
| 18 [ "connect", { "security":"wep", |
| 19 "psk":"0:0123456789abcdef0123456789" } ], |
| 20 |
| 21 [ "client_powersave_off" ], |
| 22 |
| 23 [ "client_iperf", { "tcp":None, "test_time":"60" } ], |
| 24 [ "server_iperf", { "tcp":None, "test_time":"60" } ], |
| 25 |
| 26 [ "client_iperf", { "udp":None, "bandwidth":"10m" } ], |
| 27 [ "server_iperf", { "udp":None, "bandwidth":"10m" } ], |
| 28 |
| 29 [ "client_iperf", { "udp":None, "bandwidth":"15m" } ], |
| 30 [ "server_iperf", { "udp":None, "bandwidth":"15m" } ], |
| 31 |
| 32 [ "client_iperf", { "udp":None, "bandwidth":"20m" } ], |
| 33 [ "server_iperf", { "udp":None, "bandwidth":"20m" } ], |
| 34 |
| 35 [ "client_iperf", { "udp":None, "bandwidth":"25m" } ], |
| 36 [ "server_iperf", { "udp":None, "bandwidth":"25m" } ], |
| 37 |
| 38 [ "client_iperf", { "udp":None, "bandwidth":"30m" } ], |
| 39 [ "server_iperf", { "udp":None, "bandwidth":"30m" } ], |
| 40 |
| 41 [ "client_iperf", { "udp":None, "bandwidth":"36m" } ], |
| 42 [ "server_iperf", { "udp":None, "bandwidth":"36m" } ], |
| 43 |
| 44 [ "client_iperf", { "udp":None, "bandwidth":"40m" } ], |
| 45 [ "server_iperf", { "udp":None, "bandwidth":"40m" } ], |
| 46 |
| 47 # TODO(sleffler) multiple streams |
| 48 # TODO(sleffler) mixed streams |
| 49 |
| 50 [ "destroy" ], |
| 51 ], |
| 52 } |
| OLD | NEW |