Chromium Code Reviews| 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 # A python dictionary that describes the wifi testbed setup. | 5 # A python dictionary that describes the wifi testbed setup. |
| 6 # | 6 # |
| 7 { | 7 { |
| 8 # client/netbook running Chrome OS | 8 # client/netbook running Chrome OS |
| 9 "client" : { | 9 "client" : { |
| 10 "addr" : "172.22.71.93" | 10 "addr" : "172.22.71.93" |
| 11 }, | 11 }, |
| 12 # machine on router net for ping/netperf | 12 # machine on router net for ping/netperf |
| 13 "server" : { | 13 "server" : { |
| 14 # "addr" : "172.22.71.221", # NB: not reachable | 14 # "addr" : "172.22.71.221", # NB: not reachable |
| 15 "wifi_addr" : "192.168.1.254" | 15 "wifi_addr" : "192.168.1.254" |
| 16 }, | 16 }, |
| 17 # configurable wifi/router that can reached by ssh | 17 # configurable wifi/router that can reached by ssh |
| 18 "router" : { | 18 "router" : { |
| 19 "addr" : "172.22.71.78", | 19 "addr" : "172.22.71.64", |
|
neb
2010/04/10 00:04:24
Address change shouldn't be a part of the commit.
Sam Leffler
2010/04/12 15:52:55
Done.
| |
| 20 "phydev" : "ath0" , # wireless device | 20 # "phydev" : "ath0" , # wireless device |
| 21 "wiredev" : "npe0" # wired ifnet to bridge wifi traffic | 21 # "wiredev" : "npe0" # wired ifnet to bridge wifi traffic |
| 22 } | 22 } |
| 23 } | 23 } |
| OLD | NEW |