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

Side by Side Diff: client/config/wifi_router_list

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
« no previous file with comments | « no previous file | client/config/wifi_testbed_config » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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.
1 # 4 #
2 # A python dictionary that describes the wifi testbed setup. 5 # A python dictionary that describes the fixed wifi testbed setup.
3 # 6 #
4 # security "none", "wpa", "rsn", "wep" 7 # security "none", "wpa", "rsn", "wep"
5 # psk wpa/rsn passphrase or wep key 8 # psk wpa/rsn passphrase or wep key
6 # assoc_timeout timeout (secs) for association 9 # assoc_timeout timeout (secs) for association
7 # config_timeout timeout (secs) for L3 setup (e.g. dhcp lease) 10 # config_timeout timeout (secs) for L3 setup (e.g. dhcp lease)
8 # ping_args arguments to invoke ping with on successful config 11 # ping_args arguments to invoke ping with on successful config
9 # 12 #
10 { 13 {
11 "apple-express" : { "security":"rsn", "psk":"chromeos" }, 14 "apple-express" : { "security":"rsn", "psk":"chromeos" },
12 "apple-extreme" : { "security":"rsn", "psk":"chromeos" }, 15 "apple-extreme" : { "security":"rsn", "psk":"chromeos" },
13 "Belkin_N+_A23B08" : { "security":"rsn", "psk":"chromeos" }, 16 "Belkin_N+_A23B08" : { "security":"rsn", "psk":"chromeos" },
14 # "dap-1522" : { "security":"rsn", "psk":"chromeos" }, 17 # "dap-1522" : { "security":"rsn", "psk":"chromeos" },
15 "dir-825G" : { "security":"rsn", "psk":"chromeos", "config_timeout":10 }, 18 "dir-825G" : { "security":"rsn", "psk":"chromeos", "config_timeout":10 },
16 "dir-825N" : { "security":"rsn", "psk":"chromeos" }, 19 "dir-825N" : { "security":"rsn", "psk":"chromeos" },
17 "RangeMaxG" : { "security":"rsn", "psk":"chromeos" }, 20 "RangeMaxG" : { "security":"rsn", "psk":"chromeos" },
18 "RangeMaxN" : { "security":"rsn", "psk":"chromeos" }, 21 "RangeMaxN" : { "security":"rsn", "psk":"chromeos" },
19 "TRENDNet639" : { "security":"rsn", "psk":"chromeos" }, 22 "TRENDNet639" : { "security":"rsn", "psk":"chromeos" },
20 "wbr-1310" : { "security":"rsn", "psk":"chromeos" }, 23 "wbr-1310" : { "security":"rsn", "psk":"chromeos" },
21 "wgr614" : { "security":"rsn", "psk":"chromeos", 24 "wgr614" : { "security":"rsn", "psk":"chromeos",
22 "ping_args":"-c 10 192.158.2.254" }, 25 "ping_args":"-c 10 192.158.2.254" },
23 "wrt54g" : { "security":"rsn", "psk":"chromeos", "assoc_timeout":30 }, 26 "wrt54g" : { "security":"rsn", "psk":"chromeos", "assoc_timeout":30 },
24 "wrt54g2" : { "security":"none", 27 "wrt54g2" : { "security":"none",
25 "ping_args":"-c 10 192.168.2.254" }, 28 "ping_args":"-c 10 192.168.2.254" },
26 } 29 }
OLDNEW
« no previous file with comments | « no previous file | client/config/wifi_testbed_config » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698