| 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.18.36" | 10 "addr" : "172.22.18.50" |
| 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.18.66", # NB: not reachable | 14 "addr" : "172.22.18.66", # NB: not reachable |
| 15 "wifi_addr" : "192.168.2.254" | 15 "wifi_addr" : "192.168.2.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.18.102", | 19 "addr" : "172.22.18.102", |
| 20 "phydev2" : "phy0", | 20 "phydev2" : "phy0", |
| 21 "phydev5" : "phy1", | 21 "phydev5" : "phy1", |
| 22 "wiredev" : "eth0", | 22 "wiredev" : "eth0", |
| 23 } | 23 } |
| 24 } | 24 } |
| OLD | NEW |