[wifi interop lab] Get interop lab up and going

Wifi interop lab will allow for testing ChromeOS DUTs against 50+
commercially sold APs across different channels/frequencies. All the APs
are statically configured and this configuration is reflected in
chaos_ap_list.conf.

Due to the time it takes to test a given DUT against all APs (~3hrs) and
the fact that we can only run the test on 1 DUT at a time (due to
current design limitations), the plan is to split the test runs across
different days such that the test(s) will be run on each DUT once per
week.

Old design docs:
https://docs.google.com/document/d/1tnp0JbL6Z9kxNsrBKeh2ZoTFxiH2WzFK49LsGZRGLd0/edit#
https://docs.google.com/document/d/1BxwqwTZ7c84nXyiJPpyzSX1hDvZTch4kWtPpIBluNa4/edit

AP configurations:
https://go/chaos-ap-configs

DUT setups:
http://go/wifi-device-life-cycle-chaos

Test run flow chart:
https://go/chaos-test-run-flow-chart

We also plan to continue adding newer APs to the interop lab as needed.

BUG=chromium:906277
TEST=Tested using kevin against all APs in chaos lab; unit tests (e.g.,
     `utils/unittest_suite.py -r server/cros/ap_configurators/`)

Change-Id: Ief141529fc0df264dac804e771aaba82fbcb5d65
Reviewed-on: https://chromium-review.googlesource.com/1341180
Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com>
Tested-by: Dinesh Kumar Sunkara <dsunkara@google.com>
Reviewed-by: Kirtika Ruchandani <kirtika@chromium.org>
diff --git a/client/common_lib/cros/network/iw_runner.py b/client/common_lib/cros/network/iw_runner.py
index c55f346..4b1bd77 100644
--- a/client/common_lib/cros/network/iw_runner.py
+++ b/client/common_lib/cros/network/iw_runner.py
@@ -858,11 +858,15 @@
         # If the in-progress scan takes more than 30 seconds to
         # complete it will most likely never complete; abort.
         # See crbug.com/309148
-        scan_results = utils.poll_for_condition(
-                condition=lambda: self.scan(interface),
-                timeout=timeout_seconds,
-                sleep_interval=5, # to allow in-progress scans to complete
-                desc='Timed out getting IWBSSes that match desired')
+        scan_results = list()
+        try:
+            scan_results = utils.poll_for_condition(
+                    condition=lambda: self.scan(interface),
+                    timeout=timeout_seconds,
+                    sleep_interval=5, # to allow in-progress scans to complete
+                    desc='Timed out getting IWBSSes that match desired')
+        except utils.TimeoutError as e:
+            pass
 
         if not scan_results: # empty list or None
             return None
diff --git a/server/cros/ap_config.py b/server/cros/ap_config.py
index aa4bc73..27c1ec7 100644
--- a/server/cros/ap_config.py
+++ b/server/cros/ap_config.py
@@ -11,14 +11,10 @@
 from autotest_lib.site_utils.rpm_control_system import rpm_client
 from autotest_lib.server.cros.ap_configurators import ap_spec
 
+# chaos_shadow_ap_list.conf is used for testing against local APs.
 AP_CONFIG_FILES = { ap_constants.AP_TEST_TYPE_CHAOS:
-                    ('chaos_dynamic_ap_list.conf', 'chaos_shadow_ap_list.conf'),
-                    ap_constants.AP_TEST_TYPE_CLIQUE:
-                    ('clique_ap_list.conf',),
-                    ap_constants.AP_TEST_TYPE_CASEY5:
-                    ('casey_chromeos5_ap_list.conf',),
-                    ap_constants.AP_TEST_TYPE_CASEY7:
-                    ('casey_chromeos7_ap_list.conf',),}
+                    ('chaos_ap_list.conf',
+                     'chaos_shadow_ap_list.conf'),}
 
 TIMEOUT = 100
 
diff --git a/server/cros/ap_configurators/ap_configurator_factory.py b/server/cros/ap_configurators/ap_configurator_factory.py
index 12c28d2..814f021 100644
--- a/server/cros/ap_configurators/ap_configurator_factory.py
+++ b/server/cros/ap_configurators/ap_configurator_factory.py
@@ -32,213 +32,6 @@
 
     PREFIX='autotest_lib.server.cros.ap_configurators.'
     CONFIGURATOR_MAP = {
-        'LinksysAPConfigurator':
-            [PREFIX + 'linksys_ap_configurator',
-                'LinksysAPConfigurator'],
-        'LinksysAP15Configurator':
-            [PREFIX + 'linksys_ap_15_configurator',
-                'LinksysAP15Configurator'],
-        'DLinkAPConfigurator':
-            [PREFIX + 'dlink_ap_configurator',
-                'DLinkAPConfigurator'],
-        'TrendnetAPConfigurator':
-            [PREFIX + 'trendnet_ap_configurator',
-                'TrendnetAPConfigurator'],
-        'Trendnet691grAPConfigurator':
-            [PREFIX + 'trendnet691gr_ap_configurator',
-                'Trendnet691grAPConfigurator'],
-        'Trendnet731brAPConfigurator':
-            [PREFIX + 'trendnet731br_ap_configurator',
-                'Trendnet731brAPConfigurator'],
-        'Trendnet432brpAPConfigurator':
-            [PREFIX + 'trendnet432brp_ap_configurator',
-                'Trendnet432brpAPConfigurator'],
-        'Trendnet692grAPConfigurator':
-            [PREFIX + 'trendnet692gr_ap_configurator',
-                'Trendnet692grAPConfigurator'],
-        'Trendnet654trAPConfigurator':
-            [PREFIX + 'trendnet654tr_ap_configurator',
-                'Trendnet654trAPConfigurator'],
-        'Trendnet812druAPConfigurator':
-            [PREFIX + 'trendnet812dru_ap_configurator',
-                'Trendnet812druAPConfigurator'],
-        'DLinkDIR655APConfigurator':
-            [PREFIX + 'dlink_dir655_ap_configurator',
-                'DLinkDIR655APConfigurator'],
-        'DLinkDWL2100APConfigurator':
-            [PREFIX + 'dlink_dwl2100_ap_configurator',
-                'DLinkDWL2100APConfigurator'],
-        'DLinkDIR300APConfigurator':
-            [PREFIX + 'dlink_dir300_ap_configurator',
-                'DLinkDIR300APConfigurator'],
-        'DLinkDIR505lAPConfigurator':
-            [PREFIX + 'dlink_dir505l_ap_configurator',
-                'DLinkDIR505lAPConfigurator'],
-        'BuffaloAPConfigurator':
-            [PREFIX + 'buffalo_ap_configurator',
-                'BuffaloAPConfigurator'],
-        'BuffalowzrAPConfigurator':
-            [PREFIX + 'buffalo_wzr_d1800h_ap_configurator',
-                'BuffalowzrAPConfigurator'],
-        'Buffaloag300hAPConfigurator':
-            [PREFIX + 'buffaloag300h_ap_configurator',
-                'Buffaloag300hAPConfigurator'],
-        'BuffaloWSR1166DDAPConfigurator':
-            [PREFIX + 'buffalo_wsr_1166dd_ap_configurator',
-                'BuffaloWSR1166DDAPConfigurator'],
-        'AsusAPConfigurator':
-            [PREFIX + 'asus_ap_configurator',
-                'AsusAPConfigurator'],
-        'AsusQISAPConfigurator':
-            [PREFIX + 'asus_qis_ap_configurator',
-                'AsusQISAPConfigurator'],
-        'Asus66RAPConfigurator':
-            [PREFIX + 'asus_ac66r_ap_configurator',
-                'Asus66RAPConfigurator'],
-        'AsusRTAC68UAPConfigurator':
-            [PREFIX + 'asus_rtac68u_ap_configurator',
-                'AsusRTAC68UAPConfigurator'],
-        'Netgear3700APConfigurator':
-            [PREFIX + 'netgear3700_ap_configurator',
-                'Netgear3700APConfigurator'],
-        'Netgear3400APConfigurator':
-            [PREFIX + 'netgear3400_ap_configurator',
-                'Netgear3400APConfigurator'],
-        'NetgearR6200APConfigurator':
-            [PREFIX + 'netgearR6200_ap_configurator',
-                'NetgearR6200APConfigurator'],
-        'Netgear1000APConfigurator':
-            [PREFIX + 'netgear1000_ap_configurator',
-                'Netgear1000APConfigurator'],
-        'Netgear2000APConfigurator':
-            [PREFIX + 'netgear2000_ap_configurator',
-                'Netgear2000APConfigurator'],
-        'Netgear4300APConfigurator':
-            [PREFIX + 'netgear4300_ap_configurator',
-                'Netgear4300APConfigurator'],
-        'Netgear4500APConfigurator':
-            [PREFIX + 'netgear4500_ap_configurator',
-                'Netgear4500APConfigurator'],
-        'NetgearWNR1000V4APConfigurator':
-            [PREFIX + 'netgearwnr1000v4_ap_configurator',
-                'NetgearWNR1000V4APConfigurator'],
-        'LinksyseDualBandAPConfigurator':
-            [PREFIX + 'linksyse_dual_band_configurator',
-                'LinksyseDualBandAPConfigurator'],
-        'Linksyse2000APConfigurator':
-            [PREFIX + 'linksyse2000_ap_configurator',
-                'Linksyse2000APConfigurator'],
-        'LinksyseWRT320APConfigurator':
-            [PREFIX + 'linksyswrt320_ap_configurator',
-                'LinksysWRT320APConfigurator'],
-        'Linksyse1500APConfigurator':
-            [PREFIX + 'linksyse1500_ap_configurator',
-                'Linksyse1500APConfigurator'],
-        'LinksysWRT54GS2APConfigurator':
-            [PREFIX + 'linksyswrt54gs2_ap_configurator',
-                'LinksysWRT54GS2APConfigurator'],
-        'LinksysWRT600APConfigurator':
-            [PREFIX + 'linksyswrt600_ap_configurator',
-                'LinksysWRT600APConfigurator'],
-        'LinksysM10APConfigurator':
-            [PREFIX + 'linksysm10_ap_configurator',
-                'LinksysM10APConfigurator'],
-        'LinksysWRT54GLAPConfigurator':
-            [PREFIX + 'linksyswrt54gl_ap_configurator',
-                'LinksysWRT54GLAPConfigurator'],
-        'LinksysWRT610NAPConfigurator':
-            [PREFIX + 'linksyswrt610n_ap_configurator',
-                'LinksysWRT610NAPConfigurator'],
-        'LinksysWRT120NAPConfigurator':
-            [PREFIX + 'linksyswrt120n_ap_configurator',
-                'LinksysWRT120NAPConfigurator'],
-        'LevelOneAPConfigurator':
-            [PREFIX + 'levelone_ap_configurator',
-                'LevelOneAPConfigurator'],
-        'NetgearDualBandAPConfigurator':
-            [PREFIX + 'netgear_WNDR_dual_band_configurator',
-                'NetgearDualBandAPConfigurator'],
-        'BelkinAPConfigurator':
-            [PREFIX + 'belkin_ap_configurator',
-                'BelkinAPConfigurator'],
-        'BelkinF5D7234APConfigurator':
-            [PREFIX + 'belkinF5D7234_ap_configurator',
-                'BelkinF5D7234APConfigurator'],
-        'BelkinF5D8236APConfigurator':
-            [PREFIX + 'belkinF5D8236_ap_configurator',
-                'BelkinF5D8236APConfigurator'],
-        'BelkinF6D4230APConfigurator':
-            [PREFIX + 'belkinF6D4230_ap_configurator',
-                'BelkinF6D4230APConfigurator'],
-        'BelkinF7DAPConfigurator':
-            [PREFIX + 'belkinF7D_ap_configurator',
-                'BelkinF7DAPConfigurator'],
-        'BelkinF9K1002v4APConfigurator':
-            [PREFIX + 'belkinF9k1002v4_ap_configurator',
-                'BelkinF9K1002v4APConfigurator'],
-        'BelkinF7D1301APConfigurator':
-            [PREFIX + 'belkinF7D1301_ap_configurator',
-                'BelkinF7D1301APConfigurator'],
-        'BelkinF9KAPConfigurator':
-            [PREFIX + 'belkinF9K_ap_configurator',
-                'BelkinF9KAPConfigurator'],
-        'BelkinF9K1001APConfigurator':
-            [PREFIX + 'belkinF9K1001_ap_configurator',
-                'BelkinF9K1001APConfigurator'],
-        'BelkinF9K1102APConfigurator':
-            [PREFIX + 'belkinF9K1102_ap_configurator',
-                'BelkinF9K1102APConfigurator'],
-        'BelkinF9K1103APConfigurator':
-            [PREFIX + 'belkinF9K1103_ap_configurator',
-                'BelkinF9K1103APConfigurator'],
-        'BelkinF9K1105APConfigurator':
-            [PREFIX + 'belkinF9K1105_ap_configurator',
-                'BelkinF9K1105APConfigurator'],
-        'BelkinF7D5301APConfigurator':
-            [PREFIX + 'belkinF7D5301_ap_configurator',
-                'BelkinF7D5301APConfigurator'],
-        'BelkinWRTRAPConfigurator':
-            [PREFIX + 'belkinWRTR_ap_configurator',
-                'BelkinWRTRAPConfigurator'],
-        'MediaLinkAPConfigurator':
-            [PREFIX + 'medialink_ap_configurator',
-                'MediaLinkAPConfigurator'],
-        'NetgearSingleBandAPConfigurator':
-            [PREFIX + 'netgear_single_band_configurator',
-                'NetgearSingleBandAPConfigurator'],
-        'DLinkwbr1310APConfigurator':
-            [PREFIX + 'dlinkwbr1310_ap_configurator',
-                'DLinkwbr1310APConfigurator'],
-        'Linksyse2100APConfigurator':
-            [PREFIX + 'linksyse2100_ap_configurator',
-                'Linksyse2100APConfigurator'],
-        'LinksyseSingleBandAPConfigurator':
-            [PREFIX + 'linksyse_single_band_configurator',
-                'LinksyseSingleBandAPConfigurator'],
-        'Linksyse2500APConfigurator':
-            [PREFIX + 'linksyse2500_ap_configurator',
-                'Linksyse2500APConfigurator'],
-        'WesternDigitalN600APConfigurator':
-            [PREFIX + 'westerndigitaln600_ap_configurator',
-                'WesternDigitalN600APConfigurator'],
-        'Linksyse1000APConfigurator':
-            [PREFIX + 'linksyse1000_ap_configurator',
-                'Linksyse1000APConfigurator'],
-        'LinksysWRT160APConfigurator':
-            [PREFIX + 'linksyswrt160_ap_configurator',
-                'LinksysWRT160APConfigurator'],
-        'Keeboxw150nrAPConfigurator':
-            [PREFIX + 'keeboxw150nr_ap_configurator',
-                'Keeboxw150nrAPConfigurator'],
-        'EdimaxAPConfigurator':
-            [PREFIX + 'edimax_ap_configurator',
-                'EdimaxAPConfigurator'],
-        'Edimax6475ndAPConfigurator':
-            [PREFIX + 'edimax6475nd_ap_configurator',
-                'Edimax6475ndAPConfigurator'],
-        'Edimax6428nsAPConfigurator':
-            [PREFIX + 'edimax6428ns_ap_configurator',
-                'Edimax6428nsAPConfigurator'],
         'StaticAPConfigurator':
             [PREFIX + 'static_ap_configurator',
                 'StaticAPConfigurator'],
diff --git a/server/cros/ap_configurators/ap_spec.py b/server/cros/ap_configurators/ap_spec.py
index 200ff5b..b34e140 100644
--- a/server/cros/ap_configurators/ap_spec.py
+++ b/server/cros/ap_configurators/ap_spec.py
@@ -77,12 +77,12 @@
 # Default values
 DEFAULT_BAND = BAND_2GHZ
 
-DEFAULT_2GHZ_MODE = MODE_G
-DEFAULT_5GHZ_MODE = MODE_A
+DEFAULT_2GHZ_MODE = MODE_N
+DEFAULT_5GHZ_MODE = MODE_AC_N
 
-DEFAULT_SECURITY_TYPE = SECURITY_TYPE_DISABLED
+DEFAULT_SECURITY_TYPE = SECURITY_TYPE_WPA2PSK
 
-DEFAULT_2GHZ_CHANNEL = 5
+DEFAULT_2GHZ_CHANNEL = 6
 DEFAULT_5GHZ_CHANNEL = 149
 
 # Convenience method to convert modes and bands to human readable strings.
@@ -135,7 +135,7 @@
     """
 
 
-    def __init__(self, visible=True, security=SECURITY_TYPE_DISABLED,
+    def __init__(self, visible=True, security=SECURITY_TYPE_WPA2PSK,
                  band=None, mode=None, channel=None, hostnames=None,
                  configurator_type=CONFIGURATOR_ANY,
                  # lab_ap set to true means the AP must be in the lab;
@@ -166,7 +166,9 @@
         self._validate_channel_and_mode()
 
         if ((band == BAND_2GHZ and self._mode not in VALID_2GHZ_MODES) or
-            (band == BAND_5GHZ and self._mode not in VALID_5GHZ_MODES)):
+            (band == BAND_5GHZ and self._mode not in VALID_5GHZ_MODES) or
+            (band == BAND_2GHZ and self._channel not in VALID_2GHZ_CHANNELS) or
+            (band == BAND_5GHZ and self._channel not in VALID_5GHZ_CHANNELS)):
             raise ValueError('Conflicting band and modes/channels.')
 
         self._validate_security()
diff --git a/server/cros/ap_configurators/ap_spec_unittest.py b/server/cros/ap_configurators/ap_spec_unittest.py
index e8a68bb..c1981ca 100755
--- a/server/cros/ap_configurators/ap_spec_unittest.py
+++ b/server/cros/ap_configurators/ap_spec_unittest.py
@@ -21,7 +21,7 @@
         self.assertEquals(spec.band, ap_spec.DEFAULT_BAND)
         self.assertEquals(spec.mode, ap_spec.DEFAULT_2GHZ_MODE)
         self.assertEquals(spec.channel, ap_spec.DEFAULT_2GHZ_CHANNEL)
-        self.assertIsNone(spec.password)
+        self.assertEquals(spec.password, 'chromeos')
 
 
     def test_only_set_band_2ghz(self):
@@ -89,14 +89,14 @@
         """Test setting the band and channel to valid 2GHz values."""
         spec = ap_spec.APSpec(band=ap_spec.BAND_2GHZ, mode=ap_spec.MODE_N,
                               channel=ap_spec.DEFAULT_2GHZ_CHANNEL)
-        self.assertNotEquals(spec.mode, ap_spec.DEFAULT_5GHZ_MODE)
+        self.assertEquals(spec.mode, ap_spec.MODE_N)
 
 
     def test_set_band_mode_and_channel_5ghz(self):
         """Test setting the band and channel to valid 5GHz value."""
         spec = ap_spec.APSpec(band=ap_spec.BAND_5GHZ, mode=ap_spec.MODE_N,
                               channel=ap_spec.DEFAULT_5GHZ_CHANNEL)
-        self.assertNotEquals(spec.mode, ap_spec.DEFAULT_2GHZ_MODE)
+        self.assertEquals(spec.mode, ap_spec.MODE_N)
 
 
     def test_set_security_psk_default(self):
diff --git a/server/cros/chaos_ap_list.conf b/server/cros/chaos_ap_list.conf
new file mode 100644
index 0000000..09c032b
--- /dev/null
+++ b/server/cros/chaos_ap_list.conf
@@ -0,0 +1,1094 @@
+# Copyright (c) 2018 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# Note - APs commented out in this config are either not configured correctly
+# or tested and verified to work as expected.
+
+# TODO (harpreet): Test / verify and uncomment or remove all the commented AP
+# entries below.
+
+# Row 2 Rack 1
+
+# Missing AP chromeos3-row2-rack1-host1
+
+### [20:c9:d0:19:1d:df]
+### brand = apple
+### wan_hostname = chromeos3-row2-rack1-host2
+### ssid = apple_airport_extreme_n_1_wpa2
+### frequency = 2412
+### rpm_managed = True
+### bss = 20:c9:d0:19:1d:df
+### wan mac = 20:c9:d0:10:50:63
+### model = airport_extreme
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+# Missing AP chromeos3-row2-rack1-host3
+
+### [d0:17:c2:3d:16:50]
+### brand = asus
+### wan_hostname = chromeos3-row2-rack1-host4
+### ssid = asus_ac5300_n_ch6_wpa2
+### frequency = 2437
+### rpm_managed = True
+### bss = d0:17:c2:3d:16:50
+### wan mac = d0:17:c2:3d:16:50
+### model = rtac5300
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+### [d0:17:c2:3d:16:54]
+### brand = asus
+### wan_hostname = chromeos3-row2-rack1-host4
+### ssid = asus_ac5300_ac_ch40_wpa2
+### frequency = 5200
+### rpm_managed = True
+### bss5 = d0:17:c2:3d:16:54
+### wan mac = d0:17:c2:3d:16:50
+### model = rtac5300
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+### [d0:17:c2:3d:16:58]
+### brand = asus
+### wan_hostname = chromeos3-row2-rack1-host4
+### ssid = asus_ac5300_ac_ch157_wpa2
+### frequency = 5785
+### rpm_managed = True
+### bss5 = d0:17:c2:3d:16:58
+### wan mac = d0:17:c2:3d:16:50
+### model = rtac5300
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+### [50:46:5d:00:bc:b0]
+### brand = asus
+### wan_hostname = chromeos3-row2-rack1-host5
+### ssid = asus_n66u_n_1_wpa2
+### frequency = 2412
+### rpm_managed = True
+### bss = 50:46:5d:00:bc:b0
+### wan mac = 50:46:5d:00:bc:b0
+### model = n66u
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+### [50:46:5d:00:bc:b4]
+### brand = asus
+### wan_hostname = chromeos3-row2-rack1-host5
+### ssid = asus_n66u_n_48_wpa2
+### frequency = 5240
+### rpm_managed = True
+### bss = 50:46:5d:00:bc:b4
+### wan mac = 50:46:5d:00:bc:b0
+### model = n66u
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+[50:46:5D:5C:D7:28]
+brand = asus
+wan_hostname = chromeos3-row2-rack1-host6
+ssid = asus_ac66r_n_ch11_wpa2
+frequency = 2462
+rpm_managed = True
+bss = 50:46:5D:5C:D7:28
+wan mac = c0:d8:19:d0:90:40
+model = ac66r
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[50:46:5D:5C:D7:2C]
+brand = asus
+wan_hostname = chromeos3-row2-rack1-host6
+ssid = asus_ac66r_ac_ch44_wpa2
+frequency = 5220
+rpm_managed = True
+bss5 = 50:46:5D:5C:D7:2C
+wan mac = c0:d8:19:d0:90:40
+model = ac66r
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[10:bf:48:e7:2e:88]
+brand = asus
+wan_hostname = chromeos3-row2-rack1-host7
+ssid = asus_rtn16_n_ch1_wpa2
+frequency = 2412
+rpm_managed = True
+bss = 10:bf:48:e7:2e:88
+wan mac = 10:bf:48:e7:2e:88
+model = rt_n16
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[00:22:75:a2:3b:08]
+brand = belkin
+wan_hostname = chromeos3-row2-rack1-host8
+ssid = belkin_f5d8235_n_ch1_wpa2
+frequency = 2412
+rpm_managed = True
+bss = 00:22:75:a2:3b:08
+wan mac = 00:22:75:a2:3b:0a
+model = f5d8235
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+# Missing AP chromeos3-row2-rack1-host9
+
+[94:44:52:62:bd:81]
+brand = belkin
+wan_hostname = chromeos3-row2-rack1-host10
+ssid = belkin_f7d2301_n_ch6_wpa2
+frequency = 2437
+rpm_managed = True
+bss = 94:44:52:62:bd:81
+wan mac = 94:44:52:62:bd:82
+model = f7d1301_v1_2
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[94:44:52:18:f0:a7]
+brand = belkin
+wan_hostname = chromeos3-row2-rack1-host11
+ssid = belkin_f7d5301_n_ch11_wpa2
+frequency = 2462
+rpm_managed = True
+bss = 94:44:52:18:f0:a7
+wan mac = 94:44:52:18:f0:a8
+model = f7d5301_v1_1
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[08:86:3b:b3:50:c4]
+brand = belkin
+wan_hostname = chromeos3-row2-rack1-host12
+ssid = belkin_f9k1103v1_n_ch11_wpa2
+frequency = 2462
+rpm_managed = True
+bss = 08:86:3b:b3:50:c4
+wan mac = 08:86:3b:b3:50:c5
+model = f9k1103_v1
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[08:86:3b:b3:50:c6]
+brand = belkin
+wan_hostname = chromeos3-row2-rack1-host12
+ssid = belkin_f9k1103v1_n_ch149_wpa2
+frequency = 5745
+rpm_managed = True
+bss5 = 08:86:3b:b3:50:c6
+wan mac = 08:86:3b:b3:50:c5
+model = f9k1103_v1
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[10:6f:3f:f6:89:10]
+brand = buffalo
+wan_hostname = chromeos3-row2-rack1-host13
+ssid = buffalo_wzr-hp-g450h_n_ch6_wpa2
+frequency = 2437
+rpm_managed = True
+bss = 10:6f:3f:f6:89:10
+wan mac = 12:6f:32:f6:89:02
+model = wzr-hp-g450h
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+### [c8:d7:19:06:1b:8f]
+### brand = cisco
+### wan_hostname = chromeos3-row2-rack1-host14
+### ssid = cisco_linksys_ea3500_n_1_wpa2
+### frequency = 2412
+### rpm_managed = True
+### bss = c8:d7:19:06:1b:8f
+### wan mac = a8:b7:19:d1:92:12
+### model = ea3500
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+### [c8:d7:19:06:1b:91]
+### brand = cisco
+### wan_hostname = chromeos3-row2-rack1-host14
+### ssid = cisco_linksys_ea3500_n_153_wpa2
+### frequency = 5765
+### rpm_managed = True
+### bss5 = c8:d7:19:06:1b:91
+### wan mac = a8:b7:19:d1:92:12
+### model = ea3500
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+[c0:c1:c0:8b:59:8b]
+brand = cisco
+wan_hostname = chromeos3-row2-rack1-host15
+ssid = cisco_e1000_n_ch11_wpa2
+frequency = 2462
+rpm_managed = True
+bss = c0:c1:c0:8b:59:8b
+wan mac = c0:c1:c0:8b:59:8a
+model = e1000
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[68:7f:74:0a:97:bc]
+brand = cisco
+wan_hostname = chromeos3-row2-rack1-host16
+ssid = cisco_wrt610n_n_ch6_wpa2
+frequency = 2437
+rpm_managed = True
+bss = 68:7f:74:0a:97:bc
+wan mac = 68:7f:74:0a:97:bb
+model = linksys_wrt610n
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[68:7f:74:0a:97:bd]
+brand = cisco
+wan_hostname = chromeos3-row2-rack1-host16
+ssid = cisco_wrt610n_n_ch40_wpa2
+frequency = 5200
+rpm_managed = True
+bss5 = 68:7f:74:0a:97:bd
+wan mac = 68:7f:74:0a:97:bb
+model = linksys_wrt610n
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+# Row 2 Rack 2
+
+[68:7f:74:31:6a:ae]
+brand = cisco
+wan_hostname = chromeos3-row2-rack2-host1
+ssid = cisco_valet_n_ch11_wpa2
+frequency = 2462
+rpm_managed = True
+bss = 68:7f:74:31:6a:ae
+wan mac = 68:7f:74:31:6a:ad
+model = linksys_m10
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[84:c9:b2:50:9a:c7]
+brand = dlink
+wan_hostname = chromeos3-row2-rack2-host2
+ssid = dlink_dir_655_n_ch1_wpa2
+frequency = 2412
+rpm_managed = True
+bss = 84:c9:b2:50:9a:c7
+wan mac = 84:c9:b2:50:9a:c8
+model = dir_655
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[48:ee:0c:ec:81:ce]
+brand = dlink
+wan_hostname = chromeos3-row2-rack2-host3
+ssid = dlink_dir866l_n_ch6_wpa2
+frequency = 2437
+rpm_managed = True
+bss = 48:ee:0c:ec:81:ce
+wan mac = 48:ee:0c:ec:81:cf
+model = dir866l
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[48:ee:0c:ec:81:d0]
+brand = dlink
+wan_hostname = chromeos3-row2-rack2-host3
+ssid = dlink_dir866l_ac_ch161_wpa2
+frequency = 5805
+rpm_managed = True
+bss5 = 48:ee:0c:ec:81:d0
+wan mac = 48:ee:0c:ec:81:cf
+model = dir866l
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[1c:7e:e5:fd:48:d4]
+brand = dlink
+wan_hostname = chromeos3-row2-rack2-host4
+ssid = dlink_dir_600_n_ch11_wpa2
+frequency = 2462
+rpm_managed = True
+bss = 1c:7e:e5:fd:48:d4
+wan mac = 1c:7e:e5:fd:48:d5
+model = dir600
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[00:18:e7:de:af:12]
+brand = dlink
+wan_hostname = chromeos3-row2-rack2-host5
+ssid = dlink_dir_855_n_ch1_wpa2
+frequency = 2412
+rpm_managed = True
+bss = 00:18:e7:de:af:12
+wan mac = 00:18:e7:de:af:13
+model = dir600
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[00:18:e7:de:af:14]
+brand = dlink
+wan_hostname = chromeos3-row2-rack2-host5
+ssid = dlink_dir_855_n_ch36_wpa2
+frequency = 5180
+rpm_managed = True
+bss5 = 00:18:e7:de:af:14
+wan mac = 00:18:e7:de:af:13
+model = dir600
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[00:18:e7:e4:51:3a]
+brand = dlink
+wan_hostname = chromeos3-row2-rack2-host6
+ssid = dlink_dgl_4500_n_ch48_wpa2
+frequency = 5240
+rpm_managed = True
+bss = 00:18:e7:e4:51:3a
+wan mac = 00:18:e7:e4:51:3a
+model = dgl_4500
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[cc:b2:55:de:85:4a]
+brand = dlink
+wan_hostname = chromeos3-row2-rack2-host7
+ssid = dlink_dir_628_n_ch149_wpa2
+frequency = 5745
+rpm_managed = True
+bss = cc:b2:55:de:85:4a
+wan mac = cc:b2:55:de:85:4b
+model = dir_628
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[c8:d3:a3:5f:c9:0c]
+brand = dlink
+wan_hostname = chromeos3-row2-rack2-host8
+ssid = dlink_dir_825_n_ch1_wpa2
+frequency = 2412
+rpm_managed = True
+bss = c8:d3:a3:5f:c9:0c
+wan mac = c8:d3:a3:5f:c9:0d
+model = dir_825
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[c8:d3:a3:5f:c9:0e]
+brand = dlink
+wan_hostname = chromeos3-row2-rack2-host8
+ssid = dlink_dir_825_n_ch157_wpa2
+frequency = 5785
+rpm_managed = True
+bss5 = c8:d3:a3:5f:c9:0e
+wan mac = c8:d3:a3:5f:c9:0d
+model = dir_825
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+### [00:9c:02:65:f2:5c]
+### brand = hp
+### wan_hostname = chromeos3-row2-rack2-host9
+### ssid = hp_v_m200_n_6_wpa2
+### frequency = 2437
+### rpm_managed = True
+### bss = 00:9c:02:65:f2:5c
+### wan mac = 2c:41:38:28:f7:cf
+### model = v-m200
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+### [00:9c:02:65:f2:5d]
+### brand = hp
+### wan_hostname = chromeos3-row2-rack2-host9
+### ssid = hp_v_m200_n_36_wpa2
+### frequency = 5180
+### rpm_managed = True
+### bss5 = 00:9c:02:65:f2:5d
+### wan mac = 2c:41:38:28:f7:cf
+### model = v-m200
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+[00:11:6b:4a:a3:7c]
+brand = levelone
+wan_hostname = chromeos3-row2-rack2-host10
+ssid = level_one_wbr_6002_n_ch11_wpa2
+frequency = 2462
+rpm_managed = True
+bss = 00:11:6b:4a:a3:7c
+wan mac = 00:11:6b:4a:a3:7d
+model = wbr_6002
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+### [c0:56:27:40:d3:f6]
+### brand = linksys
+### wan_hostname = chromeos3-row2-rack2-host11
+### ssid = linksys_ea_8500_n_1_wpa2
+### frequency = 2412
+### rpm_managed = True
+### bss = c0:56:27:40:d3:f6
+### wan mac = c0:56:27:40:d3:f5
+### model = ea8500
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+### [c0:56:27:40:d3:f7]
+### brand = linksys
+### wan_hostname = chromeos3-row2-rack2-host11
+### ssid = linksys_ea_8500_ac_161_wpa2
+### frequency = 5805
+### rpm_managed = True
+### bss5 = c0:56:27:40:d3:f7
+### wan mac = c0:56:27:40:d3:f5
+### model = ea8500
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+### [00:18:f8:33:38:36]
+### brand = linksys
+### wan_hostname = chromeos3-row2-rack2-host12
+### ssid = linksys_wasp_54_g_6_wpa2
+### frequency = 2437
+### rpm_managed = True
+### bss = 00:18:f8:33:38:36
+### wan mac = 00:18:f8:33:38:36
+### model = wasp_54g
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+### [00:25:9c:d2:32:30]
+### brand = linksys
+### wan_hostname = chromeos3-row2-rack2-host13
+### ssid = linksys_wrt_610_n_11_wpa2
+### frequency = 2462
+### rpm_managed = True
+### bss = 00:25:9c:d2:32:30
+### wan mac = 68:7f:74:0a:97:bb
+### model = wrt610n
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+### [00:25:9c:d2:32:31]
+### brand = linksys
+### wan_hostname = chromeos3-row2-rack2-host13
+### ssid = linksys_wrt_610_n_40_wpa2
+### frequency = 5200
+### rpm_managed = True
+### bss5 = 00:25:9c:d2:32:31
+### wan mac = 68:7f:74:0a:97:bb
+### model = wrt610n
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+### [00:22:6b:67:15:18]
+### brand = linksys
+### wan_hostname = chromeos3-row2-rack2-host14
+### ssid = linksys_wrt_310_n_1_wpa2
+### frequency = 2412
+### rpm_managed = True
+### bss = 00:22:6b:67:15:18
+### wan mac = 20:aa:4b:2c:0d:0f
+### model = wrt310n
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+[00:25:9c:a0:75:f3]
+brand = linksys
+wan_hostname = chromeos3-row2-rack2-host15
+ssid = linksys_wrt_400_n_ch6_wpa2
+frequency = 2437
+rpm_managed = True
+bss = 00:25:9c:a0:75:f3
+wan mac = 00:25:9c:a0:75:f5
+model = wrt400n
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[00:25:9c:a0:75:f2]
+brand = linksys
+wan_hostname = chromeos3-row2-rack2-host15
+ssid = linksys_wrt_400_n_ch48_wpa2
+frequency = 5240
+rpm_managed = True
+bss5 = 00:25:9c:a0:75:f2
+wan mac = 00:25:9c:a0:75:f5
+model = wrt400n
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[c8:d7:19:d4:c5:56]
+brand = linksys
+wan_hostname = chromeos3-row2-rack2-host16
+ssid = linksys_e3200_n_ch11_wpa2
+frequency = 2462
+rpm_managed = True
+bss = c8:d7:19:d4:c5:56
+wan mac = c8:d7:19:d4:c5:55
+model = e3200
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[c8:d7:19:d4:c5:57]
+brand = linksys
+wan_hostname = chromeos3-row2-rack2-host16
+ssid = linksys_e3200_n_ch36_wpa2
+frequency = 5180
+rpm_managed = True
+bss5 = c8:d7:19:d4:c5:57
+wan mac = c8:d7:19:d4:c5:55
+model = e3200
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+# Row 2 Rack 3
+
+[14:35:8b:0c:01:9c]
+brand = medialink
+wan_hostname = chromeos3-row2-rack3-host1
+ssid = medialink_mwn_wapr300_n_ch1_wpa2
+frequency = 2412
+rpm_managed = True
+bss = 14:35:8b:0c:01:9c
+wan mac = 14:35:8b:0c:01:9c
+model = mwn_wapr300n
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[14:35:8b:0b:6c:80]
+brand = medialink
+wan_hostname = chromeos3-row2-rack3-host2
+ssid = medialink_mwnwapr150__n_ch6_wpa2
+frequency = 2437
+rpm_managed = True
+bss = 14:35:8b:0b:6c:80
+wan mac = 14:35:8b:0b:6c:80
+model = mwn_wapr150n
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[c0:3f:0e:ba:a8:e1]
+brand = netgear
+wan_hostname = chromeos3-row2-rack3-host3
+ssid = netgear_wndr3300__g_ch1_wpa2
+frequency = 2412
+rpm_managed = True
+bss = c0:3f:0e:ba:a8:e1
+wan mac = c0:3f:0e:ba:a8:e2
+model = wndr3300
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[c0:3f:0e:ba:a8:e0]
+brand = netgear
+wan_hostname = chromeos3-row2-rack3-host3
+ssid = netgear_wndr3300__n_ch161_wpa2
+frequency = 5805
+rpm_managed = True
+bss5 = c0:3f:0e:ba:a8:e0
+wan mac = c0:3f:0e:ba:a8:e2
+model = wndr3300
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[00:1e:2a:08:65:a8]
+brand = netgear
+wan_hostname = chromeos3-row2-rack3-host4
+ssid = netgear_wnr834b__n_ch11_wpa2
+frequency = 2462
+rpm_managed = True
+bss = 00:1e:2a:08:65:a8
+wan mac = 00:1e:2a:08:65:a9
+model = wnr834bv2
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[2c:30:33:df:80:21]
+brand = netgear
+wan_hostname = chromeos3-row2-rack3-host5
+ssid = netgear_r7900_n_ch6_wpa2
+frequency = 2437
+rpm_managed = True
+bss = 2c:30:33:df:80:21
+wan mac = 2c:30:33:df:80:23
+model = r7900
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[2c:30:33:df:80:20]
+brand = netgear
+wan_hostname = chromeos3-row2-rack3-host5
+ssid = netgear_r7900_ac_ch44_wpa2
+frequency = 5220
+rpm_managed = True
+bss5 = 2c:30:33:df:80:20
+wan mac = 2c:30:33:df:80:23
+model = r7900
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[2c:30:33:df:80:22]
+brand = netgear
+wan_hostname = chromeos3-row2-rack3-host5
+ssid = netgear_r7900_ac_ch149_wpa2
+frequency = 5745
+rpm_managed = True
+bss5 = 2c:30:33:df:80:22
+wan mac = 2c:30:33:df:80:23
+model = r7900
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[00:1f:33:2a:0c:d1]
+brand = netgear
+wan_hostname = chromeos3-row2-rack3-host6
+ssid = netgear_wnd3500_n_ch11_wpa2
+frequency = 2462
+rpm_managed = True
+bss = 00:1f:33:2a:0c:d1
+wan mac = 00:1f:33:2a:0c:d3
+model = wnr3500
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[a0:63:91:ea:2e:5c]
+brand = netgear
+wan_hostname = chromeos3-row2-rack3-host7
+ssid = netgear_ac1750__n_ch1_wpa2
+frequency = 2412
+rpm_managed = True
+bss5 = a0:63:91:ea:2e:5c
+wan mac = a0:63:91:ea:2e:5c
+model = ac1750
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[a0:63:91:ea:2e:5b]
+brand = netgear
+wan_hostname = chromeos3-row2-rack3-host7
+ssid = netgear_ac1750__ac_ch157_wpa2
+frequency = 5785
+rpm_managed = True
+bss5 = a0:63:91:ea:2e:5b
+wan mac = a0:63:91:ea:2e:5c
+model = ac1750
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[50:6a:03:f3:a2:80]
+brand = netgear
+wan_hostname = chromeos3-row2-rack3-host8
+ssid = netgear_wnr_10000_n_ch6_wpa2
+frequency = 2437
+rpm_managed = True
+bss = 50:6a:03:f3:a2:80
+wan mac = 50:6a:03:f3:a2:81
+model = wnr1000v4
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[20:4e:7f:49:86:8f]
+brand = netgear
+wan_hostname = chromeos3-row2-rack3-host9
+ssid = netgear_wpn824_n_ch11_wpa2
+frequency = 2462
+rpm_managed = True
+bss = 20:4e:7f:49:86:8f
+wan mac = 20:4e:7f:49:86:90
+model = wpn824n
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[20:4e:7f:47:af:c6]
+brand = netgear
+wan_hostname = chromeos3-row2-rack3-host10
+ssid = netgear_n600_n_ch6_wpa2
+frequency = 2437
+rpm_managed = True
+bss5 = 20:4e:7f:47:af:c6
+wan mac = 20:4e:7F:47:af:c7
+model = n600
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[20:4e:7f:47:af:c8]
+brand = netgear
+wan_hostname = chromeos3-row2-rack3-host10
+ssid = netgear_n600_n_ch161_wpa2
+frequency = 5805
+rpm_managed = True
+bss5 = 20:4e:7f:47:af:c8
+wan mac = 20:4e:7F:47:af:c7
+model = n600
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[28:c6:8e:b0:77:de]
+brand = netgear
+wan_hostname = chromeos3-row2-rack3-host11
+ssid = netgear_wndr_3700_n_ch6_wpa2
+frequency = 2437
+rpm_managed = True
+bss = 28:c6:8e:b0:77:de
+wan mac = 28:c6:8e:b0:77:df
+model = wndr3700v4
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[28:c6:8e:b0:77:e0]
+brand = netgear
+wan_hostname = chromeos3-row2-rack3-host11
+ssid = netgear_wndr_3700_n_ch157_wpa2
+frequency = 5785
+rpm_managed = True
+bss5 = 28:c6:8e:b0:77:e0
+wan mac = 28:c6:8e:b0:77:df
+model = wndr3700v4
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+# Exclude; ch11 is set to hidden, not used
+#[2c:30:33:3f:3b:7a]
+#brand = netgear
+#wan_hostname = chromeos3-row2-rack3-host12
+#ssid = netgear_r6400_n_ch11_wpa2
+#frequency = 2462
+#rpm_managed = True
+#bss = 2c:30:33:3f:3b:7a
+#wan mac = 2c:30:33:3f:3b:7b
+#model = ac1750r6400
+#security = wpa2
+#psk = chromeos
+#class_name = StaticAPConfigurator
+
+[2c:30:33:3f:3b:79]
+brand = netgear
+wan_hostname = chromeos3-row2-rack3-host12
+ssid = netgear_r6400_ac_ch153_wpa2
+frequency = 5765
+rpm_managed = True
+bss5 = 2c:30:33:3f:3b:79
+wan mac = 2c:30:33:3f:3b:7b
+model = ac1750r6400
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[00:8e:f2:fc:ff:8f]
+brand = netgear
+wan_hostname = chromeos3-row2-rack3-host13
+ssid = netgear_wndr4300_n_ch1_wpa2
+frequency = 2412
+rpm_managed = True
+bss = 00:8e:f2:fc:ff:8f
+wan mac = 44:94:fc:71:88:9c
+model = wndr4300
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[00:8e:f2:fc:ff:91]
+brand = netgear
+wan_hostname = chromeos3-row2-rack3-host13
+ssid = netgear_wndr4300_n_ch149_wpa2
+frequency = 5745
+rpm_managed = True
+bss5 = 00:8e:f2:fc:ff:91
+wan mac = 44:94:fc:71:88:9c
+model = wndr4300
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+### #crbug.com/388887
+### [84:1b:5e:54:de:4b]
+### brand = netgear
+### wan_hostname = chromeos3-row2-rack3-host14
+### ssid = netgear_wndr_3400_n_ch6_wpa2
+### frequency = 2437
+### rpm_managed = True
+### bss = 84:1b:5e:54:de:4b
+### wan mac = 84:1b:5e:54:de:4c
+### model = dgnd3800b
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+### #crbug.com/388887
+### [84:1b:5e:54:de:4c]
+### brand = netgear
+### wan_hostname = chromeos3-row2-rack3-host14
+### ssid = netgear_wndr_3400_n_ch44_wpa2
+### frequency = 5220
+### rpm_managed = True
+### bss5 = 84:1b:5e:54:de:4c
+### wan mac = 84:1b:5e:54:de:4c
+### model = dgnd3800b
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+[68:1c:a2:02:14:8d]
+brand = Rosewill
+wan_hostname = chromeos3-row2-rack3-host15
+ssid = rosewill_l600_n_ch11_wpa2
+frequency = 2462
+rpm_managed = True
+bss = 68:1c:a2:02:14:8d
+wan mac = 68:1c:a2:02:14:8c
+model = l600n
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[4c:1c:a2:02:14:8d]
+brand = Rosewill
+wan_hostname = chromeos3-row2-rack3-host15
+ssid = rosewill_l600_n_ch44_wpa2
+frequency = 5220
+rpm_managed = True
+bss5 = 4c:1c:a2:02:14:8d
+wan mac = 68:1c:a2:02:14:8c
+model = l600n
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+### [f8:1a:67:99:58:90]
+### brand = TP-Link
+### wan_hostname = chromeos3-row2-rack3-host16
+### ssid = tplink_mr3420_n_1_wpa2
+### frequency = 2412
+### rpm_managed = True
+### bss = f8:1a:67:99:58:90
+### wan mac = f8:1a:67:99:58:91
+### model = mr3420
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+# Row 2 Rack 4
+
+### [10:fe:ed:68:29:a2]
+### brand = TP-Link
+### wan_hostname = chromeos3-row2-rack4-host1
+### ssid = tplink_mr4320_n_6_wpa2
+### frequency = 2437
+### rpm_managed = True
+### bss = 10:fe:ed:68:29:a2
+### wan mac = 10:fe:ed:68:29:a3
+### model = mr3420
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+# Missing AP chromeos3-row2-rack4-host2
+
+[d8:eb:97:2a:c7:ce]
+brand = trendnet
+wan_hostname = chromeos3-row2-rack4-host3
+ssid = trendnet_tew823dru__n_ch6_wpa2
+frequency = 2437
+rpm_managed = True
+bss = d8:eb:97:2a:c7:ce
+wan mac = d8:eb:97:2a:c7:cf
+model = tew823dru
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[d8:eb:97:2a:c7:d0]
+brand = trendnet
+wan_hostname = chromeos3-row2-rack4-host3
+ssid = trendnet_tew823dru__ac_ch36_wpa2
+frequency = 5180
+rpm_managed = True
+bss5 = d8:eb:97:2a:c7:d0
+wan mac = d8:eb:97:2a:c7:cf
+model = tew823dru
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+### [d8:eb:97:18:e2:d6]
+### brand = trendnet
+### wan_hostname = chromeos3-row2-rack4-host4
+### ssid = trendnet_tew654tr_n_1_wpa2
+### frequency = 2412
+### rpm_managed = True
+### bss = d8:eb:97:18:e2:d6
+### wan mac = d8:eb:97:18:e2:d7
+### model = tew_654tr
+### security = wpa2
+### psk = chromeos
+### class_name = StaticAPConfigurator
+
+[00:14:d1:c5:68:94]
+brand = trendnet
+wan_hostname = chromeos3-row2-rack4-host5
+ssid = trendnet_tew639gr__n_ch11_wpa2
+frequency = 2462
+rpm_managed = True
+bss = 00:14:d1:c5:68:94
+wan mac = 00:14:d1:c5:68:94
+model = tew_639gr
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[d8:eb:97:c8:d9:fb]
+brand = trendnet
+wan_hostname = chromeos3-row2-rack4-host6
+ssid = trendnet_828dru__n_ch11_wpa2
+frequency = 2462
+rpm_managed = True
+bss = d8:eb:97:c8:d9:fb
+wan mac = d8:eb:97:c8:d9:f7
+model = tew828dru
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[d8:eb:97:c8:d9:ff]
+brand = trendnet
+wan_hostname = chromeos3-row2-rack4-host6
+ssid = trendnet_828dru__ac_ch48_wpa2
+frequency = 5240
+rpm_managed = True
+bss5 = d8:eb:97:c8:d9:ff
+wan mac = d8:eb:97:c8:d9:f7
+model = tew828dru
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[d8:eb:97:c8:da:03]
+brand = trendnet
+wan_hostname = chromeos3-row2-rack4-host6
+ssid = trendnet_828dru__ac_ch157_wpa2
+frequency = 5785
+rpm_managed = True
+bss5 = d8:eb:97:c8:da:03
+wan mac = d8:eb:97:c8:d9:f7
+model = tew828dru
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[00:90:a9:05:2e:31]
+brand = WD
+wan_hostname = chromeos3-row2-rack4-host7
+ssid = wd_n750__n_ch1_wpa2
+frequency = 2412
+rpm_managed = True
+bss = 00:90:a9:05:2e:31
+wan mac = 00:90:a9:05:2e:30
+model = mynet_n750
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[00:90:a9:05:2e:33]
+brand = WD
+wan_hostname = chromeos3-row2-rack4-host7
+ssid = wd_n750__n_ch36_wpa2
+frequency = 5180
+rpm_managed = True
+bss5 = 00:90:a9:05:2e:33
+wan mac = 00:90:a9:05:2e:30
+model = mynet_n750
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[fc:f5:28:d4:b5:a8]
+brand = zyxel
+wan_hostname = chromeos3-row2-rack4-host8
+ssid = zyxel_nbg6716__n_ch1_wpa2
+frequency = 2412
+rpm_managed = True
+bss = fc:f5:28:d4:b5:a8
+wan mac = fc:f5:28:d4:b5:ab
+model = nbg6716
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
+
+[fc:f5:28:d4:b5:a9]
+brand = zyxel
+wan_hostname = chromeos3-row2-rack4-host8
+ssid = zyxel_nbg6716__ac_ch149_wpa2
+frequency = 5745
+rpm_managed = True
+bss5 = fc:f5:28:d4:b5:a9
+wan mac = fc:f5:28:d4:b5:ab
+model = nbg6716
+security = wpa2
+psk = chromeos
+class_name = StaticAPConfigurator
diff --git a/server/cros/chaos_dynamic_ap_list.conf b/server/cros/chaos_dynamic_ap_list.conf
deleted file mode 100644
index 8b788b3..0000000
--- a/server/cros/chaos_dynamic_ap_list.conf
+++ /dev/null
@@ -1,3581 +0,0 @@
-# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-[68:7f:74:c7:f7:75]
-brand = cisco
-wan_hostname = chromeos3-row2-rack1-host1
-bss = 68:7f:74:c7:f7:75
-wan mac = 68:7f:74:c7:f7:74
-model = linksys e2100l
-class_name = Linksyse2100APConfigurator
-admin_url = http://chromeos3-row2-rack1-host1/
-admin_ip = http://172.22.38.95
-
-[c8:d7:19:06:1b:8f]
-brand = cisco
-wan_hostname = chromeos3-row2-rack1-host2
-ssid = linksys_ea3500_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = c8:d7:19:06:1b:8f
-wan mac = c8:d7:19:06:1b:8e
-model = linksys ea3500
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[c8:d7:19:06:1b:91]
-brand = cisco
-wan_hostname = chromeos3-row2-rack1-host2
-ssid = linksys_ea3500_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = c8:d7:19:06:1b:91
-wan mac = c8:d7:19:06:1b:8e
-model = linksys ea3500
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# Router webaccess is not working.
-# [20:aa:4b:65:17:a0]
-# brand = cisco
-# wan_hostname = chromeos3-row2-rack1-host3
-# bss = 20:aa:4b:65:17:a0
-# bss5 = 20:aa:4b:65:17:a2
-# wan mac = 20:aa:4b:65:17:9e
-# model = linksys e4500
-# class_name = LinksyseDualBandAPConfigurator
-# admin_url = http://chromeos3-row2-rack1-host3/
-# admin_ip = http://172.22.38.97
-
-[00:23:69:7e:bc:d3]
-brand = cisco
-wan_hostname = chromeos3-row2-rack1-host4
-bss = 00:23:69:7e:bc:d3
-wan mac = 00:23:69:7e:bc:d2
-model = linksys wrt54g2 1.5
-class_name = LinksysAP15Configurator
-admin_url = http://chromeos3-row2-rack1-host4/
-admin_ip = http://172.22.38.98
-
-[98:fc:11:47:21:32]
-brand = linksys
-wan_hostname = chromeos3-row2-rack1-host6
-bss = 98:fc:11:47:21:32
-wan mac = 98:fc:11:47:21:31
-model = wrt54g2
-class_name = LinksysAPConfigurator
-admin_url = http://chromeos3-row2-rack1-host6/
-admin_ip = http://172.22.38.100
-
-[58:6d:8f:ff:18:72]
-brand = cisco
-wan_hostname = chromeos3-row2-rack1-host7
-ssid = linksys_e4200_g_ch5_wpa2
-frequency = 2437
-rpm_managed = True
-bss = 58:6d:8f:ff:18:72
-wan mac = 58:6d:8f:ff:18:71
-model = linksys e4200
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[58:6d:8f:ff:18:74]
-brand = cisco
-wan_hostname = chromeos3-row2-rack1-host7
-ssid = linksys_e4200_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 58:6d:8f:ff:18:74
-wan mac = 58:6d:8f:ff:18:71
-model = linksys e4200
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[20:aa:4b:84:af:b1]
-brand = cisco
-wan_hostname = chromeos3-row2-rack1-host8
-ssid = linksys_e2700_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 20:aa:4b:84:af:b1
-wan mac = 20:aa:4b:84:af:af
-model = linksys e2700
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# DynamicAP that can be reset to Dynamic in Linda Vista
-# [20:aa:4b:41:82:b9]
-# brand = cisco
-# wan_hostname = chromeos3-row2-rack1-host9
-# bss = 20:aa:4b:41:82:b9
-# wan mac = 20:aa:4b:41:82:b8
-# model = linksys e900
-# class_name = LinksyseSingleBandAPConfigurator
-# admin_url = http://chromeos3-row2-rack1-host9/
-# admin_ip = http://172.22.38.103
-
-[20:aa:4b:cd:67:e5]
-brand = cisco
-wan_hostname = chromeos3-row2-rack1-host11
-bss = 20:aa:4b:cd:67:e5
-bss5 = 20:aa:4b:cd:67:e6
-wan mac = 20:aa:4b:cd:67:e4
-model = linksys e2500
-class_name = Linksyse2500APConfigurator
-admin_url = http://chromeos3-row2-rack1-host11/
-admin_ip = http://172.22.38.105
-
-# DynamicAP that can be reset to Dynamic in Linda Vista
-# [c0:c1:c0:8b:87:4f]
-# brand = cisco
-# wan_hostname = chromeos3-row2-rack1-host12
-# bss = c0:c1:c0:8b:87:4f
-# wan mac = c0:c1:c0:8b:87:4e
-# model = linksys e1000
-# class_name = Linksyse1000APConfigurator
-# admin_url = http://chromeos3-row2-rack1-host12:8080
-# admin_ip = http://172.22.38.106:8080
-
-# DynamicAP that can be reset to Dynamic in Linda Vista
-# [c8:d7:19:64:7f:7c]
-# brand = cisco
-# wan_hostname = chromeos3-row2-rack1-host13
-# bss = c8:d7:19:64:7f:7c
-# wan mac = c8:d7:19:64:7f:7b
-# model = linksys e1200
-# class_name = LinksyseSingleBandAPConfigurator
-# admin_url = http://chromeos3-row2-rack1-host13/
-# admin_ip = http://172.22.38.107
-
-# To be moved into Casey
-# [00:14:d1:7d:54:4e]
-# brand = keebox
-# wan_hostname = chromeos3-row2-rack1-host16
-# ssid = keebox_w150nr_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 00:14:d1:7d:54:4e
-# wan mac = 00:14:d1:7d:54:4f
-# model = keebox w150nr
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[00:14:d1:d9:ae:9b]
-brand = trendnet
-wan_hostname = chromeos3-row2-rack2-host1
-bss = 00:14:d1:d9:ae:9b
-wan mac = 00:14:d1:d9:ae:9c
-model = tew 731br
-class_name = Trendnet731brAPConfigurator
-admin_url = http://chromeos3-row2-rack2-host1:8080
-admin_ip = http://172.22.38.115:8080
-
-[84:1b:5e:f5:ac:50]
-brand = netgear
-wan_hostname = chromeos3-row2-rack2-host4
-bss = 84:1b:5e:f5:ac:50
-wan mac = 84:1b:5e:f5:ac:51
-model = wnr 1000 v3
-class_name = Netgear1000APConfigurator
-admin_url = http://chromeos3-row2-rack2-host4:8080
-admin_ip = http://172.22.38.118:8080
-
-[20:4e:7f:47:af:c6]
-brand = netgear
-wan_hostname = chromeos3-row2-rack2-host5
-bss = 20:4e:7f:47:af:c6
-bss5 = 20:4e:7f:47:af:c8
-wan mac = 20:4e:7f:47:af:c7
-model = 3700
-class_name = Netgear3700APConfigurator
-admin_url = http://chromeos3-row2-rack2-host5:8080
-admin_ip = http://172.22.38.119:8080
-
-# DynamicAP that can be reset to Dynamic in Linda Vista
-# [84:1b:5e:86:8f:91]
-# brand = netgear
-# wan_hostname = chromeos3-row2-rack2-host7
-# bss = 84:1b:5e:86:8f:91
-# wan mac = 84:1b:5e:86:8f:92
-# model = wnr2000v3
-# class_name = Netgear2000APConfigurator
-# admin_url = http://chromeos3-row2-rack2-host7:8080
-# admin_ip = http://172.22.38.121:8080
-
-# DynamicAP that can be reset to Dynamic in Linda Vista
-# crbug.com/381480
-# [00:8e:f2:fc:ff:8f]
-# brand = netgear
-# wan_hostname = chromeos3-row2-rack2-host10
-# bss = 00:8e:f2:fc:ff:8f
-# bss5 = 00:8e:f2:fc:ff:91
-# wan mac = 00:8e:f2:fc:ff:90
-# model = wndr4300_2
-# class_name = Netgear4300APConfigurator
-# admin_url = https://chromeos3-row2-rack2-host10:8080
-# admin_ip = https://172.22.38.124:8080
-
-[84:1b:5e:e2:d6:c8]
-brand = netgear
-wan_hostname = chromeos3-row2-rack2-host11
-bss = 84:1b:5e:e2:d6:c8
-bss5 = 84:1b:5e:e2:d6:c7
-wan mac = 84:1b:5e:e2:d6:c9
-model = r6200_2
-class_name = NetgearR6200APConfigurator
-admin_url = https://chromeos3-row2-rack2-host11:8080
-admin_ip = https://172.22.38.125:8080
-
-[84:1b:5e:e9:74:ee]
-brand = netgear
-wan_hostname = chromeos3-row2-rack2-host12
-ssid = wndr_3700_v3_g_ch5_wpa
-frequency = 2432
-rpm_managed = True
-bss = 84:1b:5e:e9:74:ee
-wan mac = 84:1b:5e:e9:74:ef
-model = wndr 3700 v3
-security = wpa
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[84:1b:5e:e9:74:ed]
-brand = netgear
-wan_hostname = chromeos3-row2-rack2-host12
-ssid = wndr_3700_v3_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 84:1b:5e:e9:74:ed
-wan mac = 84:1b:5e:e9:74:ef
-model = wndr 3700 v3
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[2c:b0:5d:25:3c:56]
-brand = netgear
-wan_hostname = chromeos3-row2-rack2-host13
-ssid = wndr_4500_2_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 2c:b0:5d:25:3c:56
-wan mac = 2c:b0:5d:25:3c:57
-model = wndr 4500 2
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[2c:b0:5d:25:3c:55]
-brand = netgear
-wan_hostname = chromeos3-row2-rack2-host13
-ssid = wndr_4500_2_a_ch149_wpa
-frequency = 5745
-rpm_managed = True
-bss5 = 2c:b0:5d:25:3c:55
-wan mac = 2c:b0:5d:25:3c:57
-model = wndr 4500 2
-security = wpa
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[14:35:8b:00:76:48]
-brand = medialink
-wan_hostname = chromeos3-row2-rack2-host14
-bss = 14:35:8b:00:76:48
-wan mac = 14:35:8b:00:76:4d
-model = wapr150n
-class_name = MediaLinkAPConfigurator
-admin_url = http://chromeos3-row2-rack2-host14:8080
-admin_ip = http://172.22.38.128:8080
-
-[a0:f3:c1:76:d4:62]
-brand = tp-link
-wan_hostname = chromeos3-row2-rack3-host1
-ssid = tplink_76D462_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = a0:f3:c1:76:d4:62
-wan mac = 00:00:00:00:00:00
-model = 76d462
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# Missing AP
-# [f8:1a:67:5a:3f:d1]
-# brand = tp-link
-# wan_hostname = chromeos3-row2-rack3-host2
-# ssid = tplink_w8960n_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = f8:1a:67:5a:3f:d1
-# wan mac = 00:00:00:00:00:00
-# model = w8960n
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [9c:c7:a6:44:fd:95]
-# brand = fritz
-# wan_hostname = chromeos3-row2-rack3-host3
-# ssid = 7360_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 9c:c7:a6:44:fd:95
-# wan mac = 9c:c7:a6:44:fd:96
-# model = 7360
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[9c:c7:a6:9e:0d:ba]
-brand = fritz
-wan_hostname = chromeos3-row2-rack3-host4
-ssid = 7390_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 9c:c7:a6:9e:0d:ba
-wan mac = 9c:c7:a6:9e:0d:b7
-model = 7390
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[9c:c7:a6:9e:0d:b6]
-brand = fritz
-wan_hostname = chromeos3-row2-rack3-host4
-ssid = 7390_a_ch48_wpa2
-frequency = 5240
-rpm_managed = True
-bss5 = 9c:c7:a6:9e:0d:b6
-wan mac = 9c:c7:a6:9e:0d:b7
-model = 7390
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [9c:c7:a6:8a:58:a0]
-# brand = fritz
-# wan_hostname = chromeos3-row2-rack3-host5
-# ssid = 3370_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 9c:c7:a6:8a:58:a0
-# wan mac = 9c:c7:a6:8a:58:a1
-# model = 3370
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[60:02:b4:e9:a1:34]
-brand = google
-wan_hostname = chromeos3-row2-rack3-host9
-ssid = storm_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 60:02:b4:e9:a1:34
-wan mac = f4:f5:e8:01:00:88
-model = storm
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[60:02:b4:da:e4:9b]
-brand = google
-wan_hostname = chromeos3-row2-rack3-host9
-ssid = storm_a_ch48_wpa2
-frequency = 5240
-rpm_managed = True
-bss5 = 60:02:b4:da:e4:9b
-wan mac = f4:f5:e8:01:00:88
-model = storm
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[b4:75:0e:f6:25:38]
-brand = Belkin
-wan_hostname = chromeos3-row2-rack3-host14
-ssid = f9k1113v4_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = b4:75:0e:f6:25:38
-wan mac = b4:75:0e:f6:25:39
-model = f9k1113v4
-security = mixed
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[b4:75:0e:f6:25:3a]
-brand = Belkin
-wan_hostname = chromeos3-row2-rack3-host14
-ssid = f9k1113v4_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = b4:75:0e:f6:25:3a
-wan mac = b4:75:0e:f6:25:39
-model = f9k1113v4
-security = mixed
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[b4:75:0e:5c:8d:75]
-brand = Linksys
-wan_hostname = chromeos3-row2-rack3-host15
-ssid = ea6900_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = b4:75:0e:5c:8d:75
-wan mac = b4:75:0e:5c:8d:74
-model = ea6900
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[b4:75:0e:5c:8d:76]
-brand = Linksys
-wan_hostname = chromeos3-row2-rack3-host15
-ssid = ea6900_a_ch48_wpa2
-frequency = 5240
-rpm_managed = True
-bss5 = b4:75:0e:5c:8d:76
-wan mac = b4:75:0e:5c:8d:74
-model = ea6900
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[f8:32:e4:a7:38:00]
-brand = asus
-wan_hostname = chromeos3-row2-rack3-host20
-ssid = asus_rtac3200_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = f8:32:e4:a7:38:00
-wan mac = f8:32:e4:a7:38:00
-model = rtac3200
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[f8:32:e4:a7:38:04]
-brand = asus
-wan_hostname = chromeos3-row2-rack3-host20
-ssid = asus_rtac3200_ac_ch44_wpa2
-frequency = 5220
-rpm_managed = True
-bss5 = f8:32:e4:a7:38:04
-wan mac = f8:32:e4:a7:38:00
-model = rtac3200
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[f8:32:e4:a7:38:08]
-brand = asus
-wan_hostname = chromeos3-row2-rack3-host20
-ssid = asus_rtac3200_ac_ch157_wpa2
-frequency = 5785
-rpm_managed = True
-bss5 = f8:32:e4:a7:38:08
-wan mac = f8:32:e4:a7:38:00
-model = rtac3200
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[50:6a:03:f3:a2:80]
-brand = netgear
-wan_hostname = chromeos3-row2-rack4-host1
-bss = 50:6a:03:f3:a2:80
-wan mac = 50:6a:03:f3:a2:81
-model = wnr1000v4
-class_name = NetgearWNR1000V4APConfigurator
-admin_url = http://chromeos3-row2-rack4-host1:8080
-admin_ip = http://172.22.38.155:8080
-
-[74:03:bd:45:0b:d7]
-brand = buffalo
-wan_hostname = chromeos3-row2-rack4-host2
-rpm_managed = True
-bss = 74:03:bd:45:0b:d7
-bss5 = 74:03:bd:45:0b:d8
-wan mac = 74:03:bd:45:0b:d6
-model = wsr_1166dd
-class_name = BuffaloAPConfigurator
-admin_url = http://172.22.38.156:8080
-admin_ip = http://172.22.38.156:8080
-
-[10:c3:7b:c6:33:d0]
-brand = asus
-wan_hostname = chromeos3-row2-rack4-host3
-ssid = asus_rtac56r_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 10:c3:7b:c6:33:d0
-wan mac = 10:c3:7b:c6:33:d0
-model = rtac56r
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[10:c3:7b:c6:33:d4]
-brand = asus
-wan_hostname = chromeos3-row2-rack4-host3
-ssid = asus_rtac56r_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 10:c3:7b:c6:33:d4
-wan mac = 10:c3:7b:c6:33:d0
-model = rtac56r
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[f0:79:59:e7:41:08]
-brand = asus
-wan_hostname = chromeos3-row2-rack4-host4
-ssid = asus_rtac52u_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = f0:79:59:e7:41:08
-wan mac = f0:79:59:e7:41:08
-model = rtac52u
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[f0:79:59:e7:41:0c]
-brand = asus
-wan_hostname = chromeos3-row2-rack4-host4
-ssid = asus_rtac52u_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = f0:79:59:e7:41:0c
-wan mac = f0:79:59:e7:41:08
-model = rtac52u
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[c0:56:27:cd:d7:77]
-brand = linksys
-wan_hostname = chromeos3-row2-rack4-host5
-ssid = linksys_wrt1900acs_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = c0:56:27:cd:d7:77
-wan mac = c0:56:27:cd:d7:76
-model = wrt1900acv2
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[c0:56:27:cd:d7:78]
-brand = Linksys
-wan_hostname = chromeos3-row2-rack4-host5
-ssid = linksys_wrt1900acs_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = c0:56:27:cd:d7:78
-wan mac = c0:56:27:cd:d7:76
-model = wrt1900acv2
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[d8:eb:97:2f:94:13]
-brand = trendnet
-wan_hostname = chromeos3-row2-rack4-host7
-ssid = trendnet_tew813dru_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = d8:eb:97:2f:94:13
-wan mac = d8:eb:97:2f:94:14
-model = tew813dru
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[d8:eb:97:2f:94:15]
-brand = trendnet
-wan_hostname = chromeos3-row2-rack4-host7
-ssid = trendnet_tew813dru_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = d8:eb:97:2f:94:15
-wan mac = d8:eb:97:2f:94:14
-model = tew813dru
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[d8:eb:97:2a:fc:a6]
-brand = trendnet
-wan_hostname = chromeos3-row2-rack4-host8
-ssid = trendnet_tew810dr_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = d8:eb:97:2a:fc:a6
-wan mac = d8:eb:97:2a:fc:a7
-model = tew810dr
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[d8:eb:97:2a:fc:a8]
-brand = trendnet
-wan_hostname = chromeos3-row2-rack4-host8
-ssid = trendnet_tew810dr_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = d8:eb:97:2a:fc:a8
-wan mac = d8:eb:97:2a:fc:a7
-model = tew810dr
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-
-[a0:63:91:b4:3e:cf]
-brand = netgear
-wan_hostname = chromeos3-row2-rack4-host9
-ssid = netgear_r6100_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = a0:63:91:b4:3e:cf
-wan mac = a0:63:91:b4:3e:d0
-model = r6100
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[a0:63:91:b4:3e:d1]
-brand = netgear
-wan_hostname = chromeos3-row2-rack4-host9
-ssid = netgear_r6100_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = a0:63:91:b4:3e:d1
-wan mac = a0:63:91:b4:3e:d0
-model = r6100
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[c0:56:27:b5:32:d1]
-brand = linksys
-wan_hostname = chromeos3-row2-rack4-host10
-ssid = linksys_wrt1200ac_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = c0:56:27:b5:32:d1
-wan mac = c0:56:27:b5:32:d0
-model = wrt1200ac
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[c0:56:27:b5:32:d2]
-brand = linksys
-wan_hostname = chromeos3-row2-rack4-host10
-ssid = linksys_wrt1200ac_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = c0:56:27:b5:32:d2
-wan mac = c0:56:27:b5:32:d0
-model = wrt1200ac
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[48:ee:0c:63:34:b8]
-brand = dlink
-wan_hostname = chromeos3-row2-rack4-host11
-ssid = dlink_dir817lw_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 48:ee:0c:63:34:b8
-wan mac = 48:ee:0c:63:34:bb
-model = dir817lw
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[48:ee:0c:63:34:ba]
-brand = dlink
-wan_hostname = chromeos3-row2-rack4-host11
-ssid = dlink_dir817lw_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 48:ee:0c:63:34:ba
-wan mac = 48:ee:0c:63:34:bb
-model = dir817lw
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[d0:17:c2:3d:16:50]
-brand = asus
-wan_hostname = chromeos3-row2-rack4-host12
-ssid = asus_rtac5300_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = d0:17:c2:3d:16:50
-wan mac = d0:17:c2:3d:16:50
-model = rtac5300
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[d0:17:c2:3d:16:58]
-brand = asus
-wan_hostname = chromeos3-row2-rack4-host12
-ssid = asus_rtac5300_ac_ch157_wpa2
-frequency = 5785
-rpm_managed = True
-bss5 = d0:17:c2:3d:16:58
-wan mac = d0:17:c2:3d:16:50
-model = rtac5300
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[48:ee:0c:ec:81:ce]
-brand = dlink
-wan_hostname = chromeos3-row2-rack4-host13
-ssid = dlink_dir866l_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 48:ee:0c:ec:81:ce
-wan mac = 48:ee:0c:ec:81:cf
-model = dir866l
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[48:ee:0c:ec:81:d0]
-brand = dlink
-wan_hostname = chromeos3-row2-rack4-host13
-ssid = dlink_dir866l_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 48:ee:0c:ec:81:d0
-wan mac = 48:ee:0c:ec:81:cf
-model = dir866l
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[2c:30:33:26:38:10]
-brand = netgear
-wan_hostname = chromeos3-row2-rack4-host14
-ssid = netgear_r6050_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 2c:30:33:26:38:10
-wan mac = e8:03:9a:f5:9e:72
-model = r6050
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[2c:30:33:26:38:14]
-brand = netgear
-wan_hostname = chromeos3-row2-rack4-host14
-ssid = netgear_r6050_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 2c:30:33:26:38:14
-wan mac = e8:03:9a:f5:9e:72
-model = r6050
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[74:da:38:67:5d:33]
-brand = edimax
-wan_hostname = chromeos3-row2-rack4-host15
-ssid = edimax_br6478acv2_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 74:da:38:67:5d:33
-wan mac = 74:da:38:67:5d:35
-model = br6478acv2
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[74:da:38:67:5d:34]
-brand = edimax
-wan_hostname = chromeos3-row2-rack4-host15
-ssid = edimax_br6478acv2_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 74:da:38:67:5d:34
-wan mac = 74:da:38:67:5d:35
-model = br6478acv2
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[f8:32:e4:53:a3:48]
-brand = asus
-wan_hostname = chromeos3-row2-rack4-host16
-ssid = asus_rtac3100_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = f8:32:e4:53:a3:48
-wan mac = f8:32:e4:53:a3:48
-model = rtac3100
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[f8:32:e4:53:a3:4c]
-brand = asus
-wan_hostname = chromeos3-row2-rack4-host16
-ssid = asus_rtac3100_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = f8:32:e4:53:a3:4c
-wan mac = f8:32:e4:53:a3:48
-model = rtac3100
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[ec:08:6b:ee:a1:f5]
-brand = tplink
-wan_hostname = chromeos3-row2-rack4-host17
-ssid = tplink_archerc3150_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = ec:08:6b:ee:a1:f5
-wan mac = ec:08:6b:ee:a1:f7
-model = archerc3150
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[ec:08:6b:ee:a1:f4]
-brand = tplink
-wan_hostname = chromeos3-row2-rack4-host17
-ssid = tplink_archerc3150_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = ec:08:6b:ee:a1:f4
-wan mac = ec:08:6b:ee:a1:f7
-model = archerc3150
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[a4:2b:b0:c2:f5:0a]
-brand = tplink
-wan_hostname = chromeos3-row2-rack4-host18
-ssid = tplink_archerc2600_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = a4:2b:b0:c2:f5:0a
-wan mac = a4:2b:b0:c2:f5:0b
-model = archerc2600
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[a4:2b:b0:c2:f5:09]
-brand = tplink
-wan_hostname = chromeos3-row2-rack4-host18
-ssid = tplink_archerc2600_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = a4:2b:b0:c2:f5:09
-wan mac = a4:2b:b0:c2:f5:0b
-model = archerc2600
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[ec:08:6b:3e:4e:99]
-brand = tplink
-wan_hostname = chromeos3-row2-rack4-host19
-ssid = tplink_archerc5_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = ec:08:6b:3e:4e:99
-wan mac = ec:08:6b:3e:4e:9b
-model = archerc5
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[ec:08:6b:3e:4e:98]
-brand = tplink
-wan_hostname = chromeos3-row2-rack4-host19
-ssid = tplink_archerc5_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = ec:08:6b:3e:4e:98
-wan mac = ec:08:6b:3e:4e:9b
-model = archerc5
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[fc:f5:28:d4:b5:a8]
-brand = zyxel
-wan_hostname = chromeos3-row2-rack4-host20
-ssid = zyxel_nbg6716_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = fc:f5:28:d4:b5:a8
-wan mac = fc:f5:28:d4:b5:ab
-model = nbg6716
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[fc:f5:28:d4:b5:a9]
-brand = zyxel
-wan_hostname = chromeos3-row2-rack4-host20
-ssid = zyxel_nbg6716_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = fc:f5:28:d4:b5:a9
-wan mac = fc:f5:28:d4:b5:ab
-model = nbg6716
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# TODO: Add TP-Link when available
-
-# http://crbug.com/357685
-# [00:90:a9:09:82:c6]
-# brand = western digital
-# wan_hostname = chromeos3-row3-rack1-host1
-# bss = 00:90:a9:09:82:c6
-# bss5 = 00:90:a9:09:82:c8
-# wan mac = 00:90:a9:09:82:c5
-# model = n600_2
-# class_name = WesternDigitalN600APConfigurator
-# admin_url = http://chromeos3-row3-rack1-host1/
-# admin_ip = http://172.22.38.175
-
-# To be moved to Casey
-# [84:c9:b2:50:9a:c7]
-# brand = dlink
-# wan_hostname = chromeos3-row3-rack1-host3
-# ssid = dir_655_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 84:c9:b2:50:9a:c7
-# wan mac = 84:c9:b2:50:9a:c8
-# model = dir 655
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[c8:60:00:93:f5:b0]
-brand = asus
-wan_hostname = chromeos3-row3-rack1-host5
-bss = c8:60:00:93:f5:b0
-bss5 = c8:60:00:93:f5:b1
-wan mac = c8:60:00:93:f5:b0
-model = rt n56u
-class_name = AsusAPConfigurator
-admin_url = http://chromeos3-row3-rack1-host5:8080
-admin_ip = http://172.22.38.179:8080
-
-# crbug.com/392346
-# [30:85:a9:aa:49:30]
-# brand = asus
-# wan_hostname = chromeos3-row3-rack1-host6
-# bss = 30:85:a9:aa:49:30
-# bss5 = 30:85:a9:aa:49:34
-# wan mac = 30:85:a9:aa:49:34
-# model = rt n65u
-# class_name = AsusQISAPConfigurator
-# admin_url = http://chromeos3-row3-rack1-host6:8080
-# admin_ip = http://172.22.38.180:8080
-
-[50:46:5d:00:bc:b0]
-brand = asus
-wan_hostname = chromeos3-row3-rack1-host7
-bss = 50:46:5d:00:bc:b0
-bss5 = 50:46:5d:00:bc:b4
-wan mac = 50:46:5d:00:bc:b0
-model = rt n66u
-class_name = AsusQISAPConfigurator
-admin_url = http://chromeos3-row3-rack1-host7:8080
-admin_ip = http://172.22.38.181:8080
-
-[50:46:5d:5c:d7:28]
-brand = asus
-wan_hostname = chromeos3-row3-rack1-host8
-bss = 50:46:5d:5c:d7:28
-bss5 = 50:46:5d:5c:d7:2c
-wan mac = 50:46:5d:5c:d7:28
-model = rt ac66r
-class_name = Asus66RAPConfigurator
-admin_url = http://chromeos3-row3-rack1-host8:8080
-admin_ip = http://172.22.38.182:8080
-
-# DynamicAP that can be reset to Dynamic in Linda Vista
-# [ec:1a:59:28:8b:d6]
-# brand = belkin
-# wan_hostname = chromeos3-row3-rack1-host12
-# bss = ec:1a:59:28:8b:d6
-# wan mac = ec:1a:59:28:8b:d7
-# model = f9k1002v4
-# class_name = BelkinF9K1002v4APConfigurator
-# admin_url = http://chromeos3-row3-rack1-host12:8080
-# admin_ip = http://172.22.38.186:8080
-
-[f8:8f:ca:04:8f:24]
-frequency = 2462
-rpm_managed = True
-ssid = fiber_g_ch5_wpa2
-brand = google
-wan_hostname = chromeos3-row3-rack1-host14
-bss = f8:8f:ca:04:8f:24
-wan mac = f8:8f:ca:04:8f:20
-model = network box
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[f8:8f:ca:04:8f:21]
-frequency = 5745
-rpm_managed = True
-ssid = fiber_a_ch149_wpa2
-brand = google
-wan_hostname = chromeos3-row3-rack1-host14
-bss5 = f8:8f:ca:04:8f:21
-wan mac = f8:8f:ca:04:8f:20
-model = network box
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[10:6f:3f:4d:84:1c]
-brand = buffalo
-wan_hostname = chromeos3-row3-rack1-host15
-bss = 10:6f:3f:4d:84:1c
-bss5 = 10:6f:3f:4d:48:24
-wan mac = 10:6f:3f:4d:84:1c
-model = wzr_d1800h
-class_name = BuffalowzrAPConfigurator
-admin_url = http://chromeos3-row3-rack1-host15:8080
-admin_ip = http://172.22.38.189:8080
-
-[00:24:a5:b5:a3:17]
-brand = buffalo
-wan_hostname = chromeos3-row3-rack1-host16
-bss = 00:24:a5:b5:a3:17
-wan mac = 00:24:a5:b5:a3:17
-model = whr hp g300n
-class_name = BuffaloAPConfigurator
-admin_url = http://chromeos3-row3-rack1-host16:8080
-admin_ip = http://172.22.38.190:8080
-
-# crbug.com/388887
-# [84:1b:5e:54:de:4b]
-# brand = netgear
-# wan_hostname = chromeos3-row3-rack2-host1
-# ssid = dgnd3800b_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 84:1b:5e:54:de:4b
-# wan mac = 84:1b:5e:54:de:4c
-# model = dgnd3800b
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# crbug.com/388887
-# [84:1b:5e:54:de:4c]
-# brand = netgear
-# wan_hostname = chromeos3-row3-rack2-host1
-# ssid = dgnd3800b_a_ch48_wpa2
-# frequency = 5240
-# rpm_managed = True
-# bss5 = 84:1b:5e:54:de:4c
-# wan mac = 84:1b:5e:54:de:4c
-# model = dgnd3800b
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[2c:b0:5d:43:bc:d2]
-brand = netgear
-wan_hostname = chromeos3-row3-rack2-host3
-ssid = wndr4000_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 2c:b0:5d:43:bc:d2
-wan mac = 2c:b0:5d:43:bc:d3
-model = wndr4000
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[2c:b0:5d:43:bc:d1]
-brand = netgear
-wan_hostname = chromeos3-row3-rack2-host3
-ssid = wndr4000_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 2c:b0:5d:43:bc:d1
-wan mac = 2c:b0:5d:43:bc:d3
-model = wndr4000
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [20:e5:2a:0f:f5:58]
-# brand = netgear
-# wan_hostname = chromeos3-row3-rack2-host5
-# ssid = mbrn3000_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 20:e5:2a:0f:f5:58
-# wan mac = 58:6d:8f:99:e7:cb
-# model = mbrn3000
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# bc:d1:77:ee:a6:74]
-# rand = tp-link
-# an_hostname = chromeos3-row3-rack2-host8
-# sid = wr941n_g_ch5_wpa2
-# requency = 2432
-# pm_managed = True
-# ss = bc:d1:77:ee:a6:74
-# an mac = bc:d1:77:ee:a6:75
-# odel = wr941n
-# ecurity = wpa2
-# sk = chromeos
-# lass_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [f8:1a:67:05:4d:90]
-# brand = tp-link
-# wan_hostname = chromeos3-row3-rack2-host9
-# ssid = wr841nv8_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = f8:1a:67:05:4d:90
-# wan mac = f8:1a:67:05:4d:91
-# model = wr841nv8
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [a0:f3:c1:ac:79:48]
-# brand = tp-link
-# wan_hostname = chromeos3-row3-rack2-host10
-# ssid = wr841nv8_2_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = a0:f3:c1:ac:79:48
-# wan mac = a0:f3:c1:ac:79:49
-# model = wr841nv8
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [a0:f3:c1:37:40:86]
-# brand = tp-link
-# wan_hostname = chromeos3-row3-rack2-host11
-# ssid = wr740nv4_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = a0:f3:c1:37:40:86
-# wan mac = a0:f3:c1:37:40:87
-# model = wr740nv4
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [f8:1a:67:b4:9f:1a]
-# brand = tp-link
-# wan_hostname = chromeos3-row3-rack2-host13
-# ssid = wr941ndv5_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = f8:1a:67:b4:9f:1a
-# wan mac = f8:1a:67:b4:9f:1b
-# model = wr941ndv5
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[64:70:02:b5:ee:9b]
-brand = tp-link
-wan_hostname = chromeos3-row3-rack2-host14
-ssid = wdr3600v1_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 64:70:02:b5:ee:9b
-wan mac = 64:70:02:b5:ee:9d
-model = wdr3600v1
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[64:70:02:b5:ee:9c]
-brand = tp-link
-wan_hostname = chromeos3-row3-rack2-host14
-ssid = wdr3600v1_a_ch48_wpa2
-frequency = 5240
-rpm_managed = True
-bss5 = 64:70:02:b5:ee:9c
-wan mac = 64:70:02:b5:ee:9d
-model = wdr3600v1
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [a0:f3:c1:a0:cd:96]
-# brand = tp-link
-# wan_hostname = chromeos3-row3-rack2-host15
-# ssid = wr1043ndv1_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = a0:f3:c1:a0:cd:96
-# wan mac = a0:f3:c1:a0:cd:97
-# model = wr1043ndv1
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [64:70:02:40:a8:5c]
-# brand = tp-link
-# wan_hostname = chromeos3-row3-rack2-host16
-# ssid = wr1043ndv1_2_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 64:70:02:40:a8:5c
-# wan mac = 64:70:02:40:a8:5d
-# model = wr1043ndv1
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [b0:c7:45:14:08:5a]
-# brand = buffalo
-# wan_hostname = chromeos3-row3-rack3-host2
-# ssid = whr_g300nv2_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = b0:c7:45:14:08:5a
-# wan mac = b0:c7:45:14:08:5a
-# model = whr_g300nv2
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [e4:71:85:01:a8:ac]
-# brand = securifi
-# wan_hostname = chromeos3-row3-rack3-host3
-# ssid = almond_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = e4:71:85:01:a8:ac
-# wan mac = e4:71:85:01:a8:af
-# model = almond
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [a0:f3:c1:c9:39:6a]
-# brand = tp-link
-# wan_hostname = chromeos3-row3-rack3-host4
-# ssid = mr3020_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = a0:f3:c1:c9:39:6a
-# wan mac = a0:f3:c1:c9:39:6b
-# model = mr3020
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [64:66:b3:84:f8:a0]
-# brand = tp-link
-# wan_hostname = chromeos3-row3-rack3-host5
-# ssid = wr710n_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 64:66:b3:84:f8:a0
-# wan mac = 64:66:b3:84:f8:a1
-# model = wr710n
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [f8:1a:67:db:30:2c]
-# brand = tp-link
-# wan_hostname = chromeos3-row3-rack3-host6
-# ssid = wr702n_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = f8:1a:67:db:30:2c
-# wan mac = f8:1a:67:db:30:2d
-# model = wr702n
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [f8:1a:67:6f:c6:b6]
-# brand = tp-link
-# wan_hostname = chromeos3-row3-rack3-host7
-# ssid = wr702n_2_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = f8:1a:67:6f:c6:b6
-# wan mac = f8:1a:67:6f:c6:b7
-# model = wr702n
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [f8:1a:67:83:b9:7b]
-# brand = tp-link
-# wan_hostname = chromeos3-row3-rack3-host8
-# ssid = mr3020_2_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = f8:1a:67:83:b9:7b
-# wan mac = f8:1a:67:83:b9:7c
-# model = mr3020
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# crbug.com/392005
-# [f0:d1:a9:11:29:d2]
-# brand = apple
-# wan_hostname = chromeos3-row3-rack3-host9
-# ssid = airport_express_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = f0:d1:a9:11:29:d2
-# wan mac = f0:d1:a9:0a:4f:a8
-# model = airport_express
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[f0:d1:a9:11:29:d3]
-brand = apple
-wan_hostname = chromeos3-row3-rack3-host9
-ssid = airport_express_a_ch44_wpa2
-frequency = 5220
-rpm_managed = True
-bss5 = f0:d1:a9:11:29:d3
-wan mac = f0:d1:a9:0a:4f:a8
-model = airport_express
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[2c:30:33:63:af:93]
-brand = netgear
-wan_hostname = chromeos3-row3-rack3-host17
-ssid = netgear_r8000_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 2c:30:33:63:af:93
-wan mac = 2c:30:33:63:af:95
-model = r8000
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[2c:30:33:63:af:92]
-brand = netgear
-wan_hostname = chromeos3-row3-rack3-host17
-ssid = netgear_r8000_ac_ch44_wpa2
-frequency = 5220
-rpm_managed = True
-bss5 = 2c:30:33:63:af:92
-wan mac = 2c:30:33:63:af:95
-model = r8000
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[2c:30:33:63:af:94]
-brand = netgear
-wan_hostname = chromeos3-row3-rack3-host17
-ssid = netgear_r8000_ac_ch149_wpa2
-frequency = 5785
-rpm_managed = True
-bss5 = 2c:30:33:63:af:94
-wan mac = 2c:30:33:63:af:95
-model = r8000
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[2c:30:33:df:80:21]
-brand = netgear
-wan_hostname = chromeos3-row3-rack3-host18
-ssid = netgear_r7900_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 2c:30:33:df:80:21
-wan mac = 2c:30:33:df:80:23
-model = r7900
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[2c:30:33:df:80:20]
-brand = netgear
-wan_hostname = chromeos3-row3-rack3-host18
-ssid = netgear_r7900_ac_ch44_wpa2
-frequency = 5220
-rpm_managed = True
-bss5 = 2c:30:33:df:80:20
-wan mac = 2c:30:33:df:80:23
-model = r7900
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[2c:30:33:df:80:22]
-brand = netgear
-wan_hostname = chromeos3-row3-rack3-host18
-ssid = netgear_r7900_ac_ch157_wpa2
-frequency = 5785
-rpm_managed = True
-bss5 = 2c:30:33:df:80:22
-wan mac = 2c:30:33:df:80:23
-model = r7900
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[ec:08:6b:f8:d6:e4]
-brand = tplink
-wan_hostname = chromeos3-row3-rack3-host19
-ssid = tplink_archerc7_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = ec:08:6b:f8:d6:e4
-wan mac = ec:08:6b:f8:d6:e5
-model = archerc7
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[ec:08:6b:f8:d6:e3]
-brand = tplink
-wan_hostname = chromeos3-row3-rack3-host19
-ssid = tplink_archerc7_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = ec:08:6b:f8:d6:e3
-wan mac = ec:08:6b:f8:d6:e5
-model = archerc7
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[d8:eb:97:2f:15:2a]
-brand = trendnet
-wan_hostname = chromeos3-row3-rack3-host20
-ssid = trendnet_tew824dru_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = d8:eb:97:2f:15:2a
-wan mac = d8:eb:97:2f:15:2b
-model = tew824dru
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[d8:eb:97:2f:15:2c]
-brand = trendnet
-wan_hostname = chromeos3-row3-rack3-host20
-ssid = trendnet_tew824dru_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = d8:eb:97:2f:15:2c
-wan mac = d8:eb:97:2f:15:2b
-model = tew824dru
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[e4:f4:c6:05:9b:24]
-brand = netgear
-wan_hostname = chromeos3-row3-rack4-host1
-ssid = r7000_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = e4:f4:c6:05:9b:24
-wan mac = e4:f4:c6:05:9b:25
-model = r7000
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[e4:f4:c6:05:9b:23]
-brand = netgear
-wan_hostname = chromeos3-row3-rack4-host1
-ssid = r7000_a_ch48_wpa2
-frequency = 5240
-rpm_managed = True
-bss5 = e4:f4:c6:05:9b:23
-wan mac = e4:f4:c6:05:9b:25
-model = r7000
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[30:5a:3a:c7:a1:08]
-brand = asus
-wan_hostname = chromeos3-row3-rack4-host4
-bss = 30:5a:3a:c7:a1:08
-bss5 = 30:5a:3a:c7:a1:0c
-wan mac = 30:5a:3a:c7:a1:08
-model = rt-ac68u
-class_name = AsusRTAC68UAPConfigurator
-admin_url = http://chromeos3-row3-rack4-host4:8080
-admin_ip = http://172.22.38.238:8080
-
-[2c:30:33:3f:3b:7a]
-brand = netgear
-wan_hostname = chromeos3-row3-rack4-host5
-ssid = netgear_r6400_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 2c:30:33:3f:3b:7a
-wan mac = 2c:30:33:3f:3b:7b
-model = ac1750r6400
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[2c:30:33:3f:3b:79]
-brand = netgear
-wan_hostname = chromeos3-row3-rack4-host5
-ssid = netgear_r6400_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 2c:30:33:3f:3b:79
-wan mac = 2c:30:33:3f:3b:7b
-model = ac1750r6400
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[ec:1a:59:5d:ab:76]
-brand = belkin
-wan_hostname = chromeos3-row3-rack4-host6
-ssid = belkin_ac750_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = ec:1a:59:5d:ab:76
-wan mac = ec:1a:59:5d:ab:77
-model = f9k1116v1
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[ec:1a:59:5d:ab:78]
-brand = belkin
-wan_hostname = chromeos3-row3-rack4-host6
-ssid = belkin_ac750_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = ec:1a:59:5d:ab:78
-wan mac = ec:1a:59:5d:ab:77
-model = f9k1116v1
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[cc:e1:d5:9f:dd:d0]
-brand = buffalo
-wan_hostname = chromeos3-row3-rack4-host7
-ssid = wxr1900dhp_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = cc:e1:d5:9f:dd:d0
-wan mac = cc:e1:d5:9f:dd:de
-model = wxr1900dhp
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[cc:e1:d5:9f:dd:d7]
-brand = buffalo
-wan_hostname = chromeos3-row3-rack4-host7
-ssid = wxr1900dhp_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = cc:e1:d5:9f:dd:d7
-wan mac = cc:e1:d5:9f:dd:d0
-model = wxr1900dhp
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[f4:f2:6d:9e:20:e5]
-brand = tplink
-wan_hostname = chromeos3-row3-rack4-host8
-ssid = tplink_archer9_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = f4:f2:6d:9e:20:e5
-wan mac = f4:f2:6d:9e:20:e7
-model = ac1900archer9
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[f4:f2:6d:9e:20:e4]
-brand = tplink
-wan_hostname = chromeos3-row3-rack4-host8
-ssid = tplink_archer9_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = f4:f2:6d:9e:20:e4
-wan mac = f4:f2:6d:9e:20:e7
-model = ac1900archer9
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[a4:2b:b0:dd:ba:55]
-brand = tplink
-wan_hostname = chromeos3-row3-rack4-host9
-ssid = tplink_archerc2_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = a4:2b:b0:dd:ba:55
-wan mac = a4:2b:b0:dd:ba:56
-model = archerc2
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[a4:2b:b0:dd:ba:54]
-brand = tplink
-wan_hostname = chromeos3-row3-rack4-host9
-ssid = tplink_archerc2_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = a4:2b:b0:dd:ba:54
-wan mac = a4:2b:b0:dd:ba:56
-model = archerc2
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[d8:eb:97:c8:ad:9c]
-brand = trendnet
-wan_hostname = chromeos3-row3-rack4-host10
-ssid = trendnet_tew818dru_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = d8:eb:97:c8:ad:9c
-wan mac = d8:eb:97:c8:ad:9b
-model = tew818dru
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[d8:eb:97:c8:ad:a0]
-brand = trendnet
-wan_hostname = chromeos3-row3-rack4-host10
-ssid = trendnet_tew818dru_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = d8:eb:97:c8:ad:a0
-wan mac = d8:eb:97:c8:ad:9b
-model = tew818dru
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[d8:eb:97:2a:c7:ce]
-brand = trendnet
-wan_hostname = chromeos3-row3-rack4-host11
-ssid = trendnet_tew823dru_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = d8:eb:97:2a:c7:ce
-wan mac = d8:eb:97:2a:c7:ce
-model = tew823dru
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[d8:eb:97:2a:c7:d0]
-brand = trendnet
-wan_hostname = chromeos3-row3-rack4-host11
-ssid = trendnet_tew823dru_ac_ch44_wpa2
-frequency = 5220
-rpm_managed = True
-bss5 = d8:eb:97:2a:c7:d0
-wan mac = d8:eb:97:2a:c7:cf
-model = tew823dru
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[f8:32:e4:b7:ee:c8]
-brand = asus
-wan_hostname = chromeos3-row3-rack4-host12
-ssid = asus_rtac55u_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = f8:32:e4:b7:ee:c8
-wan mac = f8:32:e4:b7:ee:c8
-model = rtac55u
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[f8:32:e4:b7:ee:cc]
-brand = asus
-wan_hostname = chromeos3-row3-rack4-host12
-ssid = asus_rtac55u_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = f8:32:e4:b7:ee:cc
-wan mac = f8:32:e4:b7:ee:c8
-model = rtac55u
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[30:5a:3a:6e:88:40]
-brand = asus
-wan_hostname = chromeos3-row3-rack4-host13
-ssid = asus_rtac87u_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 30:5a:3a:6e:88:40
-wan mac = 30:5a:3a:6e:88:40
-model = rtac87u
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[30:5a:3a:6e:88:44]
-brand = asus
-wan_hostname = chromeos3-row3-rack4-host13
-ssid = asus_rtac87u_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 30:5a:3a:6e:88:44
-wan mac = 30:5a:3a:6e:88:40
-model = rtac87u
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[d8:eb:97:c8:d9:fb]
-brand = trendnet
-wan_hostname = chromeos3-row3-rack4-host14
-ssid = trendnet_tew828dru_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = d8:eb:97:c8:d9:fb
-wan mac = d8:eb:97:c8:d9:f7
-model = tew828dru
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[d8:eb:97:c8:da:03]
-brand = trendnet
-wan_hostname = chromeos3-row3-rack4-host14
-ssid = trendnet_tew828dru_ac_ch157_wpa2
-frequency = 5785
-rpm_managed = True
-bss5 = d8:eb:97:c8:da:03
-wan mac = d8:eb:97:c8:d9:f7
-model = tew828dru
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[14:dd:a9:9a:97:08]
-brand = asus
-wan_hostname = chromeos3-row3-rack4-host15
-ssid = asus_rtac56u_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 14:dd:a9:9a:97:08
-wan mac = 3c:97:0e:45:23:50
-model = rtac56u
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[14:dd:a9:9a:97:0c]
-brand = asus
-wan_hostname = chromeos3-row3-rack4-host15
-ssid = asus_rtac56u_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 14:dd:a9:9a:97:0c
-wan mac = 3c:97:0e:45:23:50
-model = rtac56u
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[2c:30:33:1f:df:d8]
-brand = netgear
-wan_hostname = chromeos3-row3-rack4-host16
-ssid = netgear_r6220_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 2c:30:33:1f:df:d8
-wan mac = 2c:30:33:1f:df:d9
-model = r6220
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[2c:30:33:1f:df:dc]
-brand = netgear
-wan_hostname = chromeos3-row3-rack4-host16
-ssid = netgear_r6220_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 2c:30:33:1f:df:dc
-wan mac = 2c:30:33:1f:df:d9
-model = r6220
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[b0:7f:b9:4a:6b:3b]
-brand = netgear
-wan_hostname = chromeos3-row3-rack4-host17
-ssid = netgear_r7800_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = b0:7f:b9:4a:6b:3b
-wan mac = b0:7f:b9:4a:6b:3c
-model = r7800
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[b0:7f:b9:4a:6b:3d]
-brand = netgear
-wan_hostname = chromeos3-row3-rack4-host17
-ssid = netgear_r7800_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = b0:7f:b9:4a:6b:3d
-wan mac = b0:7f:b9:4a:6b:3c
-model = r7800
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[a0:63:91:ea:2e:5c]
-brand = netgear
-wan_hostname = chromeos3-row3-rack4-host18
-ssid = netgear_r6400_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = a0:63:91:ea:2e:5c
-wan mac = a0:63:91:ea:2e:5d
-model = r6400
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[a0:63:91:ea:2e:5b]
-brand = netgear
-wan_hostname = chromeos3-row3-rack4-host18
-ssid = netgear_r6400_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = a0:63:91:ea:2e:5b
-wan mac = a0:63:91:ea:2e:5d
-model = r6400
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[48:f8:b3:ec:97:12]
-brand = linksys
-wan_hostname = chromeos3-row3-rack4-host19
-ssid = linksys_ea9200_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 48:f8:b3:ec:97:12
-wan mac = 48:f8:b3:ec:97:11
-model = ea9200
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[48:f8:b3:ec:97:14]
-brand = linksys
-wan_hostname = chromeos3-row3-rack4-host19
-ssid = linksys_ea9200_ac_ch157_wpa2
-frequency = 5785
-rpm_managed = True
-bss5 = 48:f8:b3:ec:97:14
-wan mac = 48:f8:b3:ec:97:11
-model = ea9200
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[90:ef:68:7e:d2:a8]
-brand = zyxel
-wan_hostname = chromeos3-row3-rack4-host20
-ssid = zyxel_nbg6616_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 90:ef:68:7e:d2:a8
-wan mac = 90:ef:68:7e:d2:ab
-model = nbg6616
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[90:ef:68:7e:d2:a9]
-brand = zyxel
-wan_hostname = chromeos3-row3-rack4-host20
-ssid = zyxel_nbg6616_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 90:ef:68:7e:d2:a9
-wan mac = 90:ef:68:7e:d2:ab
-model = nbg6616
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[d8:eb:97:a5:03:ff]
-brand = trendnet
-wan_hostname = chromeos3-row4-rack1-host8
-bss = d8:eb:97:a5:03:ff
-bss5 = d8:eb:97:a5:04:03
-wan mac = d8:eb:97:a5:03:ff
-model = tew 812dru
-class_name = Trendnet812druAPConfigurator
-admin_url = http://chromeos3-row4-rack1-host8:8080
-admin_ip = http://172.22.39.8:8080
-
-# Post-It notes this router as faulty with GUI issues.
-# [00:14:d1:9d:aa:54]
-# brand = trendnet
-# wan_hostname = chromeos3-row4-rack1-host9
-# bss = 00:14:d1:9d:aa:54
-# bss5 = 00:14:d1:9d:aa:58
-# wan mac = d8:eb:97:18:e2:d7
-# model = tew 692gr
-# class_name = Trendnet692grAPConfigurator
-# admin_url = http://chromeos3-row4-rack1-host9:8080
-# admin_ip = http://172.22.39.9:8080
-
-# crbug.com/392344
-# [d8:eb:97:18:e2:d6]
-# brand = trendnet
-# wan_hostname = chromeos3-row4-rack1-host12
-# bss = d8:eb:97:18:e2:d6
-# wan mac = d8:eb:97:18:e2:d7
-# model = tew 654tr
-# class_name = Trendnet654trAPConfigurator
-# admin_url = http://chromeos3-row4-rack1-host12:8080
-# admin_ip = http://172.22.39.12:8080
-
-[80:1f:02:0e:17:aa]
-brand = edimax
-wan_hostname = chromeos3-row4-rack1-host13
-bss = 80:1f:02:0e:17:aa
-wan mac = 80:1f:02:0e:17:ab
-model = br6428n
-class_name = EdimaxAPConfigurator
-admin_url = http://chromeos3-row4-rack1-host13:8080
-admin_ip = http://172.22.39.13:8080
-
-[80:1f:02:41:8b:7c]
-brand = edimax
-wan_hostname = chromeos3-row4-rack1-host14
-bss = 80:1f:02:41:8b:7c
-wan mac = 80:1f:02:41:8b:7f
-model = br6475nd
-class_name = Edimax6475ndAPConfigurator
-admin_url = http://chromeos3-row4-rack1-host14:8080
-admin_ip = http://172.22.39.14:8080
-
-[80:1f:02:15:40:44]
-brand = edimax
-wan_hostname = chromeos3-row4-rack1-host15
-bss = 80:1f:02:15:40:44
-wan mac = 80:1f:02:15:40:49
-model = br6428ns
-class_name = Edimax6428nsAPConfigurator
-admin_url = http://chromeos3-row4-rack1-host15:8080
-admin_ip = http://172.22.39.15:8080
-
-[80:1f:02:24:cb:3e]
-brand = edimax
-wan_hostname = chromeos3-row4-rack1-host16
-bss = 80:1f:02:24:cb:3e
-wan mac = 80:1f:02:24:cb:3f
-model = br6258n
-class_name = EdimaxAPConfigurator
-admin_url = http://chromeos3-row4-rack1-host16:8080
-admin_ip = http://172.22.39.16:8080
-
-[ec:1a:59:a9:46:90]
-brand = belkin
-wan_hostname = chromeos3-row4-rack2-host1
-bss = ec:1a:59:a9:46:90
-bss5 = ec:1a:59:a9:46:91
-wan mac = ec:1a:59:a9:46:90
-model = f9k1105 v3
-class_name = BelkinF9K1105APConfigurator
-admin_url = http://chromeos3-row4-rack2-host1:8080
-admin_ip = http://172.22.39.21:8080
-
-[ec:1a:59:28:8b:d6]
-brand = belkin
-wan_hostname = chromeos3-row4-rack2-host2
-bss = ec:1a:59:28:8b:d6
-wan mac = 00:22:75:49:3e:2a
-model = f5d8236-4 v2
-class_name = BelkinF5D8236APConfigurator
-admin_url = http://chromeos3-row4-rack2-host2:8080
-admin_ip = http://172.22.39.22:8080
-
-# To be moved to Casey
-# [00:17:3f:eb:13:89]
-# brand = belkin
-# wan_hostname = chromeos3-row4-rack2-host3
-# ssid = wrtr_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 00:17:3f:eb:13:89
-# wan mac = 00:17:3f:eb:13:8a
-# model = wrtr
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [ec:1a:59:a5:88:c8]
-# brand = belkin
-# wan_hostname = chromeos3-row4-rack2-host4
-# ssid = f9k1001v5_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = ec:1a:59:a5:88:c8
-# wan mac = ec:1a:59:a5:88:c9
-# model = f9k1001v5
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# DynamicAP that can be reset to Dynamic in Linda Vista
-# [ec:1a:59:97:a8:30]
-# brand = belkin
-# wan_hostname = chromeos3-row4-rack2-host6
-# bss = ec:1a:59:97:a8:30
-# wan mac = ec:1a:59:97:a8:31
-# model = f9k1102 v2
-# class_name = BelkinF9K1102APConfigurator
-# admin_url = http://chromeos3-row4-rack2-host6:8080
-# crbug.com/323178
-# admin_ip = http://172.22.39.26:8080
-
-[94:44:52:e2:7d:26]
-brand = belkin
-wan_hostname = chromeos3-row4-rack2-host7
-bss = 94:44:52:e2:7d:26
-wan mac = 94:44:52:e2:7d:27
-model = f7d1301 v1
-class_name = BelkinF7DAPConfigurator
-admin_url = http://chromeos3-row4-rack2-host7:8080
-admin_ip = http://172.22.39.27:8080
-
-[94:44:52:62:bd:81]
-brand = belkin
-wan_hostname = chromeos3-row4-rack2-host8
-bss = 94:44:52:62:bd:81
-wan mac = 94:44:52:62:bd:82
-model = f7d1301 v1_2
-class_name = BelkinF9KAPConfigurator
-admin_url = http://chromeos3-row4-rack2-host8:8080
-admin_ip = http://172.22.39.28:8080
-
-# crbug.com/392330
-# [00:22:75:ec:e3:62]
-# brand = belkin
-# wan_hostname = chromeos3-row4-rack2-host9
-# bss = 00:22:75:ec:e3:61
-# wan mac = 00:22:75:ec:e3:62
-# model = f6d4230-4
-# class_name = BelkinF6D4230APConfigurator
-# admin_url = http://chromeos3-row4-rack2-host9:8080
-# admin_ip = http://172.22.39.29:8080
-
-# The router webpages do not load
-# DynamicAP that can be reset to Dynamic in Linda Vista
-# [08:86:3b:b3:50:c5]
-# brand = belkin
-# wan_hostname = chromeos3-row4-rack2-host10
-# bss = 08:86:3b:b3:50:c4
-# wan mac = 08:86:3b:b3:50:c5
-# model = f9k1103v1
-# class_name = BelkinF9K1103APConfigurator
-# admin_url = http://chromeos3-row4-rack2-host10:8080
-# admin_ip = http://172.22.39.30:8080
-
-[00:21:29:6c:23:8a]
-brand = cisco
-wan_hostname = chromeos3-row4-rack2-host11
-ssid = linksys_wrt600_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 00:21:29:6c:23:8a
-wan mac = 00:21:29:6c:23:8b
-model = linksys wrt600
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[00:21:29:6c:6c:bd]
-brand = cisco
-wan_hostname = chromeos3-row4-rack2-host11
-ssid = linksys_wrt600_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 00:21:29:6c:6c:bd
-wan mac = 00:21:29:6c:23:8b
-model = linksys wrt600
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# DynamicAP that can be reset to Dynamic in Linda Vista
-# [00:23:69:86:6b:37]
-# brand = cisco
-# wan_hostname = chromeos3-row4-rack2-host12
-# bss = 00:23:69:86:6b:37
-# wan mac = 00:23:69:86:6b:36
-# model = linksys wrt54gs2
-# class_name = LinksysWRT54GS2APConfigurator
-# admin_url = http://chromeos3-row4-rack2-host12/
-# admin_ip = http://172.22.39.32
-
-[c8:d7:19:98:c3:e4]
-brand = cisco
-wan_hostname = chromeos3-row4-rack2-host13
-bss = c8:d7:19:98:c3:e4
-wan mac = c8:d7:19:98:c3:e5
-model = linksys e1500
-class_name = Linksyse1500APConfigurator
-admin_url = http://chromeos3-row4-rack2-host13:8080
-admin_ip = http://172.22.39.33:8080
-
-# DynamicAP that can be reset to Dynamic in Linda Vista
-# [c8:d7:19:d4:c5:56]
-# brand = cisco
-# wan_hostname = chromeos3-row4-rack2-host14
-# bss = c8:d7:19:d4:c5:56
-# bss5 = c8:d7:19:d4:c5:57
-# wan mac = c8:d7:19:d4:c5:55
-# model = linksys e3200
-# class_name = Linksyse2500APConfigurator
-# admin_url = http://chromeos3-row4-rack2-host14:8080
-# admin_ip = http://172.22.39.34:8080
-
-[68:7f:74:11:fc:04]
-brand = cisco
-wan_hostname = chromeos3-row4-rack2-host15
-bss = 68:7f:74:11:fc:04
-bss5 = 68:7f:74:11:fc:06
-wan mac = 68:7f:74:11:fc:05
-model = linksys wrt320n
-class_name = LinksyseWRT320APConfigurator
-admin_url = http://chromeos3-row4-rack2-host15:8080
-admin_ip = http://172.22.39.35:8080
-
-[68:7f:74:31:6a:ae]
-brand = cisco
-wan_hostname = chromeos3-row4-rack3-host2
-bss = 68:7f:74:31:6a:ae
-wan mac = 68:7f:74:31:6a:ad
-model = linksys m10
-class_name = LinksysM10APConfigurator
-admin_url = http://chromeos3-row4-rack3-host2:8080
-admin_ip = http://172.22.39.42:8080
-
-# To be moved to Casey
-# [58:6d:8f:06:27:e0]
-# brand = cisco
-# wan_hostname = chromeos3-row4-rack3-host3
-# ssid = linksys_m20_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 58:6d:8f:06:27:e0
-# wan mac = 58:6d:8f:06:27:df
-# model = linksys m20
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[00:11:6b:4a:a3:7c]
-brand = levelone
-wan_hostname = chromeos3-row4-rack3-host4
-bss = 00:11:6b:4a:a3:7c
-wan mac = 00:11:6b:4a:a3:7d
-model = wbr_6002
-class_name = LevelOneAPConfigurator
-admin_url = http://chromeos3-row4-rack3-host4:8080
-admin_ip = http://172.22.39.44:8080
-
-# To be moved to Casey
-# [00:16:01:f0:28:78]
-# brand = buffalo
-# wan_hostname = chromeos3-row4-rack3-host6
-# ssid = whr_g125_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 00:16:01:f0:28:78
-# wan mac = 00:16:01:f0:28:77
-# model = whr_g125
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [4c:e6:76:cc:dd:f0]
-# brand = buffalo
-# wan_hostname = chromeos3-row4-rack3-host8
-# ssid = whr_g300n_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 4c:e6:76:cc:dd:f0
-# wan mac = 4c:e6:76:cc:dd:f0
-# model = whr_g300n
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [10:6f:3f:da:b2:a9]
-# brand = buffalo
-# wan_hostname = chromeos3-row4-rack3-host9
-# ssid = wzr_hp_g300nh2_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 10:6f:3f:da:b2:a9
-# wan mac = 10:6f:3f:da:b2:a9
-# model = wzr_hp_g300nh2
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[10:6f:3f:f6:89:0e]
-brand = buffalo
-wan_hostname = chromeos3-row4-rack3-host10
-bss = 10:6f:3f:f6:89:0e
-wan mac = 10:6f:3f:f6:89:0e
-model = wzr_hp_g450h
-class_name = BuffaloAPConfigurator
-admin_url = http://chromeos3-row4-rack3-host10:8080
-admin_ip = http://172.22.39.50:8080
-
-# crbug.com/393079
-# [10:6f:3f:0e:73:30]
-# brand = buffalo
-# wan_hostname = chromeos3-row4-rack3-host11
-# bss = 10:6f:3f:0e:73:30
-# wan mac = 10:6f:3f:0e:73:31
-# model = wzr_hp_ag300h
-# class_name = Buffaloag300hAPConfigurator
-# admin_url = http://chromeos3-row4-rack3-host11:8080
-# admin_ip = http://172.22.39.51:8080
-
-[98:fc:11:78:64:c0]
-brand = cisco
-wan_hostname = chromeos3-row4-rack3-host12
-bss = 98:fc:11:78:64:c0
-bss5 = 98:fc:11:78:64:c1
-wan mac = 98:fc:11:78:64:bf
-model = linksys e3000
-class_name = LinksysWRT610NAPConfigurator
-admin_url = http://chromeos3-row4-rack3-host12:8080
-admin_ip = http://172.22.39.52:8080
-
-# DynamicAP that can be reset to Dynamic in Linda Vista
-# [68:7f:74:0a:97:bc]
-# brand = cisco
-# wan_hostname = chromeos3-row4-rack3-host13
-# bss = 68:7f:74:0a:97:bc
-# bss5 = 68:7f:74:0a:97:bd
-# wan mac = 68:7f:74:0a:97:bb
-# model = linksys wrt610n
-# class_name = LinksysWRT610NAPConfigurator
-# admin_url = http://chromeos3-row4-rack3-host13:8080
-# admin_ip = http://172.22.39.53:8080
-
-# To be moved to Casey
-# [98:fc:11:d7:6a:50]
-# brand = cisco
-# wan_hostname = chromeos3-row4-rack3-host14
-# ssid = linksys_wrt120n_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 98:fc:11:d7:6a:50
-# wan mac = 98:fc:11:d7:6a:51
-# model = linksys wrt120n
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[00:25:9c:a0:75:f3]
-brand = cisco
-wan_hostname = chromeos3-row4-rack3-host15
-ssid = wrt400n_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 00:25:9c:a0:75:f3
-wan mac = 00:25:9c:a0:75:f5
-model = linksys wrt400n
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[00:25:9c:a0:75:f2]
-brand = cisco
-wan_hostname = chromeos3-row4-rack3-host15
-ssid = wrt400n_a_ch48_wpa2
-frequency = 5240
-rpm_managed = True
-bss5 = 00:25:9c:a0:75:f2
-wan mac = 00:25:9c:a0:75:f5
-model = linksys wrt400n
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[20:aa:4b:2c:0d:10]
-brand = cisco
-wan_hostname = chromeos3-row4-rack3-host16
-bss = 20:aa:4b:2c:0d:10
-wan mac = 20:aa:4b:2c:0d:0f
-model = linksys e1550
-class_name = LinksyseSingleBandAPConfigurator
-admin_url = http://chromeos3-row4-rack3-host16:8080
-admin_ip = http://172.22.39.56:8080
-
-# http://crbug.com/368534
-# [94:44:52:b8:db:02]
-# brand = belkin
-# wan_hostname = chromeos3-row4-rack4-host1
-# ssid = f7d8302v1_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 94:44:52:b8:db:02
-# wan mac = 94:44:52:b8:db:03
-# model = f7d8302v1
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# http://crbug.com/368534
-# [94:44:52:b8:db:04]
-# brand = belkin
-# wan_hostname = chromeos3-row4-rack4-host1
-# ssid = f7d8302v1_a_ch149_wpa2
-# frequency = 5745
-# rpm_managed = True
-# bss5 = 94:44:52:b8:db:04
-# wan mac = 94:44:52:b8:db:03
-# model = f7d8302v1
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[94:44:52:18:f0:a7]
-brand = belkin
-wan_hostname = chromeos3-row4-rack4-host2
-bss = 94:44:52:18:f0:a7
-wan mac = 94:44:52:18:f0:a8
-model = f7d5301 v1_1
-class_name = BelkinF7D5301APConfigurator
-admin_url = http://chromeos3-row4-rack4-host2:8080
-admin_ip = http://172.22.39.62:8080
-
-[94:44:52:a4:fe:4e]
-brand = belkin
-wan_hostname = chromeos3-row4-rack4-host3
-bss = 94:44:52:a4:fe:4e
-wan mac = 94:44:52:a4:fe:4f
-model = f7d2301 v1_1
-class_name = BelkinF9KAPConfigurator
-admin_url = http://chromeos3-row4-rack4-host3:8080
-admin_ip = http://172.22.39.63:8080
-
-# crbug.com/392005
-# [00:18:e7:91:b9:05]
-# brand = dlink
-# wan_hostname = chromeos3-row4-rack4-host5
-# ssid = dir_615_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 00:18:e7:91:b9:05
-# wan mac = 00:18:e7:91:b9:06
-# model = dir_615
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# crbug.com/388887
-# [c8:d3:a3:5f:c9:0c]
-# brand = dlink
-# wan_hostname = chromeos3-row4-rack4-host6
-# ssid = dir_825_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = c8:d3:a3:5f:c9:0c
-# wan mac = c8:d3:a3:5f:c9:0d
-# model = dir_825
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# crbug.com/388887
-# [c8:d3:a3:5f:c9:0e]
-# brand = dlink
-# wan_hostname = chromeos3-row4-rack4-host6
-# ssid = dir_825_a_ch149_wpa2
-# frequency = 5745
-# rpm_managed = True
-# bss5 = c8:d3:a3:5f:c9:0e
-# wan mac = c8:d3:a3:5f:c9:0d
-# model = dir_825
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[c8:d3:a3:5d:7a:a4]
-brand = dlink
-wan_hostname = chromeos3-row4-rack4-host7
-ssid = dir_855l_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = c8:d3:a3:5d:7a:a4
-wan mac = c8:d3:a3:5d:7a:a5
-model = dir_855l
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[c8:d3:a3:5d:7a:a6]
-brand = dlink
-wan_hostname = chromeos3-row4-rack4-host7
-ssid = dir_855l_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = c8:d3:a3:5d:7a:a6
-wan mac = c8:d3:a3:5d:7a:a5
-model = dir_855l
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [14:d6:4d:3a:1c:d1]
-# brand = dlink
-# wan_hostname = chromeos3-row4-rack4-host9
-# ssid = dir_665_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 14:d6:4d:3a:1c:d1
-# wan mac = 14:d6:4d:3a:1c:d2
-# model = dir_665
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[90:94:e4:35:8f:44]
-brand = dlink
-wan_hostname = chromeos3-row4-rack4-host10
-ssid = dir_815_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 90:94:e4:35:8f:44
-wan mac = 90:94:e4:35:8f:45
-model = dir_815
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[90:94:e4:35:8f:44]
-brand = dlink
-wan_hostname = chromeos3-row4-rack4-host10
-ssid = dir_815_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 90:94:e4:35:8f:44
-wan mac = 90:94:e4:35:8f:45
-model = dir_815
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# crbug.com/384497
-# [cc:b2:55:d5:01:a9]
-# brand = dlink
-# wan_hostname = chromeos3-row4-rack4-host11
-# ssid = dir_826l_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = cc:b2:55:d5:01:a9
-# wan mac = cc:b2:55:d5:01:aa
-# model = dir_826l
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[cc:b2:55:d5:01:ab]
-brand = dlink
-wan_hostname = chromeos3-row4-rack4-host11
-ssid = dir_826l_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = cc:b2:55:d5:01:ab
-wan mac = cc:b2:55:d5:01:aa
-model = dir_826l
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [cc:b2:55:de:85:4a]
-# brand = dlink
-# wan_hostname = chromeos3-row4-rack4-host13
-# ssid = dir_628_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = cc:b2:55:de:85:4a
-# wan mac = cc:b2:55:de:85:4b
-# model = dir_628
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [78:54:2e:57:a5:ae]
-# brand = dlink
-# wan_hostname = chromeos3-row4-rack4-host14
-# ssid = dir_600l_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 78:54:2e:57:a5:ae
-# wan mac = 78:54:2e:57:a5:af
-# model = dir_600l
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[c8:be:19:6a:17:67]
-brand = dlink
-wan_hostname = chromeos3-row4-rack4-host15
-ssid = dir_836l_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = c8:be:19:6a:17:67
-wan mac = c8:be:19:6a:17:68
-model = dir_836l
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[c8:be:19:6a:17:69]
-brand = dlink
-wan_hostname = chromeos3-row4-rack4-host15
-ssid = dir_836l_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = c8:be:19:6a:17:69
-wan mac = c8:be:19:6a:17:68
-model = dir_836l
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[90:94:e4:ff:19:10]
-brand = dlink
-wan_hostname = chromeos3-row4-rack4-host16
-ssid = dir_865l_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 90:94:e4:ff:19:10
-wan mac = 90:94:e4:ff:19:13
-model = dir_865l
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[90:94:e4:ff:19:12]
-brand = dlink
-wan_hostname = chromeos3-row4-rack4-host16
-ssid = dir_865l_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 90:94:e4:ff:19:12
-wan mac = 90:94:e4:ff:19:13
-model = dir_865l
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[d8:eb:97:30:30:60]
-brand = trendnet
-wan_hostname = chromeos3-row4-rack4-host17
-ssid = trendnet_tew827dru_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = d8:eb:97:30:30:60
-wan mac = d8:eb:97:30:30:61
-model = tew827dru
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[d8:eb:97:30:30:62]
-brand = trendnet
-wan_hostname = chromeos3-row4-rack4-host17
-ssid = trendnet_tew827dru_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = d8:eb:97:30:30:62
-wan mac = d8:eb:97:30:30:61
-model = tew827dru
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[48:f8:b3:f4:5f:b2]
-brand = linksys
-wan_hostname = chromeos3-row4-rack4-host18
-ssid = linksys_ea6350_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 48:f8:b3:f4:5f:b2
-wan mac = 48:f8:b3:f4:5f:b1
-model = ea6350
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[48:f8:b3:f4:5f:b3]
-brand = linksys
-wan_hostname = chromeos3-row4-rack4-host18
-ssid = linksys_ea6350_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 48:f8:b3:f4:5f:b3
-wan mac = 48:f8:b3:f4:5f:b1
-model = ea6350
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [00:1e:2a:08:65:a8]
-# brand = netgear
-# wan_hostname = chromeos3-row5-rack1-host1
-# ssid = netgear_wnr834bv2_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 00:1e:2a:08:65:a8
-# wan mac = 00:1e:2a:08:65:a9
-# model = wnr834bv2
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[44:94:fc:36:59:89]
-brand = netgear
-wan_hostname = chromeos3-row5-rack1-host2
-ssid = r6200_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 44:94:fc:36:59:89
-wan mac = 44:94:fc:36:59:8a
-model = r6200
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[44:94:fc:36:59:88]
-brand = netgear
-wan_hostname = chromeos3-row5-rack1-host2
-ssid = r6200_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 44:94:fc:36:59:88
-wan mac = 44:94:fc:36:59:8a
-model = r6200
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[28:c6:8e:8d:87:12]
-brand = netgear
-wan_hostname = chromeos3-row5-rack1-host3
-ssid = r6250_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 28:c6:8e:8d:87:12
-wan mac = 28:c6:8e:8d:87:13
-model = r6250
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[28:c6:8e:8d:87:11]
-brand = netgear
-wan_hostname = chromeos3-row5-rack1-host3
-ssid = r6250_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 28:c6:8e:8d:87:11
-wan mac = 28:c6:8e:8d:87:13
-model = r6250
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[44:94:fc:71:88:9b]
-brand = netgear
-wan_hostname = chromeos3-row5-rack1-host4
-ssid = wndr4300_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 44:94:fc:71:88:9b
-wan mac = 44:94:fc:71:88:9c
-model = wndr4300
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[44:94:fc:71:88:9d]
-brand = netgear
-wan_hostname = chromeos3-row5-rack1-host4
-ssid = wndr4300_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 44:94:fc:71:88:9d
-wan mac = 44:94:fc:71:88:9c
-model = wndr4300
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[28:c6:8e:69:a0:26]
-brand = netgear
-wan_hostname = chromeos3-row5-rack1-host5
-ssid = r6300_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 28:c6:8e:69:a0:26
-wan mac = 28:c6:8e:69:a0:27
-model = r6300
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[28:c6:8e:69:a0:25]
-brand = netgear
-wan_hostname = chromeos3-row5-rack1-host5
-ssid = r6300_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 28:c6:8e:69:a0:25
-wan mac = 28:c6:8e:69:a0:27
-model = r6300
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# crbug.com/384497
-# [20:e5:2a:02:b8:a4]
-# brand = netgear
-# wan_hostname = chromeos3-row5-rack1-host6
-# ssid = wndr4500_2_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 20:e5:2a:02:b8:a4
-# wan mac = 20:e5:2a:02:b8:a5
-# model = wndr4500_2
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# crbug.com/384497
-# [20:e5:2a:02:b8:a3]
-# brand = netgear
-# wan_hostname = chromeos3-row5-rack1-host6
-# ssid = wndr4500_2_a_ch48_wpa2
-# frequency = 5240
-# rpm_managed = True
-# bss5 = 20:e5:2a:02:b8:a3
-# wan mac = 20:e5:2a:02:b8:a5
-# model = wndr4500_2
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# crbug.com/384497
-# [20:e5:2a:0b:6a:54]
-# brand = netgear
-# wan_hostname = chromeos3-row5-rack1-host7
-# ssid = wndr4500_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 20:e5:2a:0b:6a:54
-# wan mac = 20:e5:2a:0b:6a:55
-# model = wndr4500
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# crbug.com/384497
-# [20:e5:2a:0b:6a:53]
-# brand = netgear
-# wan_hostname = chromeos3-row5-rack1-host7
-# ssid = wndr4500_a_ch149_wpa2
-# frequency = 5745
-# rpm_managed = True
-# bss5 = 20:e5:2a:0b:6a:53
-# wan mac = 20:e5:2a:0b:6a:55
-# model = wndr4500
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[c0:3f:0e:ba:a8:e1]
-brand = netgear
-wan_hostname = chromeos3-row5-rack1-host8
-ssid = wndr3300_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = c0:3f:0e:ba:a8:e1
-wan mac = c0:3f:0e:ba:a8:e2
-model = wndr3300
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[c0:3f:0e:ba:a8:e0]
-brand = netgear
-wan_hostname = chromeos3-row5-rack1-host8
-ssid = wndr3300_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = c0:3f:0e:ba:a8:e0
-wan mac = c0:3f:0e:ba:a8:e2
-model = wndr3300
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[28:c6:8e:b0:77:de]
-brand = netgear
-wan_hostname = chromeos3-row5-rack1-host9
-ssid = wndr3700v4_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 28:c6:8e:b0:77:de
-wan mac = 28:c6:8e:b0:77:df
-model = wndr3700v4
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[28:c6:8e:b0:77:e0]
-brand = netgear
-wan_hostname = chromeos3-row5-rack1-host9
-ssid = wndr3700v4_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 28:c6:8e:b0:77:e0
-wan mac = 28:c6:8e:b0:77:df
-model = wndr3700v4
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[20:e5:2a:14:0e:4e]
-brand = netgear
-wan_hostname = chromeos3-row5-rack1-host10
-ssid = wndr3400v2_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 20:e5:2a:14:0e:4e
-wan mac = 20:e5:2a:14:0e:4f
-model = wndr3400v2
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[20:e5:2a:14:0e:4d]
-brand = netgear
-wan_hostname = chromeos3-row5-rack1-host10
-ssid = wndr3400v2_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 20:e5:2a:14:0e:4d
-wan mac = 20:e5:2a:14:0e:4f
-model = wndr3400v2
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[20:4e:7f:91:a1:6c]
-brand = netgear
-wan_hostname = chromeos3-row5-rack1-host11
-ssid = wndr3800_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 20:4e:7f:91:a1:6c
-wan mac = 20:4e:7f:91:a1:6d
-model = wndr3800
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[20:4e:7f:91:a1:6e]
-brand = netgear
-wan_hostname = chromeos3-row5-rack1-host11
-ssid = wndr3800_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 20:4e:7f:91:a1:6e
-wan mac = 20:4e:7f:91:a1:6d
-model = wndr3800
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [84:1b:5e:06:de:74]
-# brand = netgear
-# wan_hostname = chromeos3-row5-rack1-host12
-# ssid = jnr3210_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 84:1b:5e:06:de:74
-# wan mac = 84:1b:5e:06:de:75
-# model = jnr3210
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[20:e5:2a:0b:53:28]
-brand = netgear
-wan_hostname = chromeos3-row5-rack1-host13
-ssid = d6300_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 20:e5:2a:0b:53:28
-wan mac = 20:e5:2a:0b:53:29
-model = d6300
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[20:e5:2a:0b:53:27]
-brand = netgear
-wan_hostname = chromeos3-row5-rack1-host13
-ssid = d6300_a_ch48_wpa2
-frequency = 5240
-rpm_managed = True
-bss5 = 20:e5:2a:0b:53:27
-wan mac = 20:e5:2a:0b:53:29
-model = d6300
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [28:c6:8e:a9:21:cd]
-# brand = netgear
-# wan_hostname = chromeos3-row5-rack1-host15
-# ssid = wnr2000v4_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 28:c6:8e:a9:21:cd
-# wan mac = 28:c6:8e:a9:21:ce
-# model = wnr2000v4
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [00:1f:33:2a:0c:d1]
-# brand = netgear
-# wan_hostname = chromeos3-row5-rack1-host16
-# ssid = wnr3500_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 00:1f:33:2a:0c:d1
-# wan mac = 00:1f:33:2a:0c:d3
-# model = wnr3500
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [9c:d3:6d:b0:3f:6c]
-# brand = netgear
-# wan_hostname = chromeos3-row5-rack2-host1
-# ssid = wgr614v10_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 9c:d3:6d:b0:3f:6c
-# wan mac = 9c:d3:6d:b0:3f:6d
-# model = wgr614v10
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [10:0d:7f:93:8e:0a]
-# brand = netgear
-# wan_hostname = chromeos3-row5-rack2-host2
-# ssid = wnr1000v3_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 10:0d:7f:93:8e:0a
-# wan mac = 10:0d:7f:93:8e:0b
-# model = wnr1000v3
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[20:4e:7f:49:86:8f]
-brand = netgear
-wan_hostname = chromeos3-row5-rack2-host3
-ssid = wpn824n_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 20:4e:7f:49:86:8f
-wan mac = 20:4e:7f:49:86:90
-model = wpn824n
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [00:1b:2f:d3:fb:18]
-# brand = netgear
-# wan_hostname = chromeos3-row5-rack2-host4
-# ssid = wnr854t_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 00:1b:2f:d3:fb:18
-# wan mac = 00:1b:2f:d3:fb:19
-# model = wnr854t
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[a0:f3:c1:cb:0d:77]
-brand = tp-link
-wan_hostname = chromeos3-row5-rack2-host12
-ssid = tl_wdr4300_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = a0:f3:c1:cb:0d:77
-wan mac = a0:f3:c1:cb:0d:79
-model = tl_wdr4300
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[a0:f3:c1:cb:0d:78]
-brand = tp-link
-wan_hostname = chromeos3-row5-rack2-host12
-ssid = tl_wdr4300_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = a0:f3:c1:cb:0d:78
-wan mac = a0:f3:c1:cb:0d:79
-model = tl_wdr4300
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[f8:1a:67:a5:8b:bf]
-brand = tp-link
-wan_hostname = chromeos3-row5-rack2-host13
-ssid = tplink_a58bbf_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = f8:1a:67:a5:8b:bf
-wan mac = 00:00:00:00:00:00
-model = a58bbf
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [f8:1a:67:f9:6d:ce]
-# brand = tp-link
-# wan_hostname = chromeos3-row5-rack2-host14
-# ssid = tl_wr740n_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = f8:1a:67:f9:6d:ce
-# wan mac = f8:1a:67:f9:6d:cf
-# model = tl_wr740n
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [f8:1a:67:5d:34:82]
-# brand = tp-link
-# wan_hostname = chromeos3-row5-rack2-host15
-# ssid = tl_wr841n_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = f8:1a:67:5d:34:82
-# wan mac = f8:1a:67:5d:34:83
-# model = tl_wr841n
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [14:35:8b:0c:01:9c]
-# brand = medialink
-# wan_hostname = chromeos3-row5-rack3-host1
-# ssid = mwn_wapr300n_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 14:35:8b:0c:01:9c
-# wan mac = 14:35:8b:0c:01:9c
-# model = mwn_wapr300n
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [00:26:5a:c8:b2:b1]
-# brand = dlink
-# wan_hostname = chromeos3-row5-rack3-host3
-# ssid = dir_601_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 00:26:5a:c8:b2:b1
-# wan mac = 00:26:5a:c8:b2:b2
-# model = dir_601
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[00:18:e7:de:af:12]
-brand = dlink
-wan_hostname = chromeos3-row5-rack3-host4
-ssid = dir_855_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 00:18:e7:de:af:12
-wan mac = 00:18:e7:de:af:13
-model = dir_855
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[00:18:e7:de:af:14]
-brand = dlink
-wan_hostname = chromeos3-row5-rack3-host4
-ssid = dir_855_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 00:18:e7:de:af:14
-wan mac = 00:18:e7:de:af:13
-model = dir_855
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [00:18:e7:e4:51:3a]
-# brand = dlink
-# wan_hostname = chromeos3-row5-rack3-host6
-# ssid = dgl_4500_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 00:18:e7:e4:51:3a
-# wan mac = 00:18:e7:e4:51:3b
-# model = dgl_4500
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [c8:be:19:66:4e:40]
-# brand = dlink
-# wan_hostname = chromeos3-row5-rack3-host7
-# ssid = dir_505l_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = c8:be:19:66:4e:40
-# wan mac = c8:be:19:66:4e:41
-# model = dir_505l
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[00:21:91:5f:59:f5]
-brand = dlink
-wan_hostname = chromeos3-row5-rack3-host10
-bss = 00:21:91:5f:59:f5
-wan mac = 00:21:91:5f:59:f6
-model = dir_300
-class_name = DLinkDIR300APConfigurator
-admin_url = http://chromeos3-row5-rack3-host10:8080
-admin_ip = http://172.22.39.130:8080
-
-# To be moved to Casey
-# [cc:5d:4e:49:71:4a]
-# brand = ZyXEL
-# wan_hostname = chromeos3-row5-rack3-host12
-# ssid = nbg_416n_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = cc:5d:4e:49:71:4a
-# wan mac = cc:5d:4e:49:71:49
-# model = nbg_416n
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [68:1c:a2:00:93:18]
-# brand = Rosewill
-# wan_hostname = chromeos3-row5-rack3-host15
-# ssid = rnx_n150rt_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 68:1c:a2:00:93:18
-# wan mac = 68:1c:a2:00:93:19
-# model = rnx_n150rt
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [68:1c:a2:02:14:8d]
-# brand = Rosewill
-# wan_hostname = chromeos3-row5-rack3-host16
-# ssid = l600n_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 68:1c:a2:02:14:8d
-# wan mac = 68:1c:a2:02:14:8c
-# model = l600n
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [00:90:a9:ca:03:b1]
-# brand = western digital
-# wan_hostname = chromeos3-row5-rack4-host2
-# ssid = n600_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 00:90:a9:ca:03:b1
-# wan mac = 00:90:a9:ca:03:b0
-# model = n600
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[00:90:a9:ca:03:b3]
-brand = western digital
-wan_hostname = chromeos3-row5-rack4-host2
-ssid = n600_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 00:90:a9:ca:03:b3
-wan mac = 00:90:a9:ca:03:b0
-model = n600
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [00:02:6f:ad:35:2c]
-# brand = encore
-# wan_hostname = chromeos3-row5-rack4-host7
-# ssid = enhwi_3gn3_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 00:02:6f:ad:35:2c
-# wan mac = 00:02:6f:ad:24:77
-# model = enhwi_3gn3
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[08:86:3b:71:55:b8]
-brand = belkin
-wan_hostname = chromeos3-row5-rack4-host8
-ssid = f9k1110v1_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 08:86:3b:71:55:b8
-wan mac = 08:86:3b:71:55:b9
-model = f9k1110v1
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[94:44:52:e2:c3:d1]
-brand = belkin
-wan_hostname = chromeos3-row5-rack4-host8
-ssid = f9k1110v1_a_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 94:44:52:e2:c3:d1
-wan mac = 08:86:3b:71:55:b9
-model = f9k1110v1
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [10:bf:48:e7:2e:88]
-# brand = asus
-# wan_hostname = chromeos3-row5-rack4-host10
-# ssid = rt_n16_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 10:bf:48:e7:2e:88
-# wan mac = 10:bf:48:e7:2e:88
-# model = rt_n16
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# Missing AP
-# [60:a4:4c:dd:7f:b0]
-# brand = asus
-# wan_hostname = chromeos3-row5-rack4-host11
-# ssid = rt_ac66u_2_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 60:a4:4c:dd:7f:b0
-# wan mac = 60:a4:4c:dd:7f:b0
-# model = rt_ac66u
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# Missing AP
-# [60:a4:4c:dd:7f:b4]
-# brand = asus
-# wan_hostname = chromeos3-row5-rack4-host11
-# ssid = rt_ac66u_2_a_ch48_wpa2
-# frequency = 5240
-# rpm_managed = True
-# bss5 = 60:a4:4c:dd:7f:b4
-# wan mac = 60:a4:4c:dd:7f:b0
-# model = rt_ac66u
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [90:94:e4:35:8a:14]
-# brand = dlink
-# wan_hostname = chromeos3-row5-rack4-host13
-# ssid = dir_645_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 90:94:e4:35:8a:14
-# wan mac = 90:94:e4:35:8a:15
-# model = dir_645
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[00:19:9d:74:f0:29]
-brand = vizio
-wan_hostname = chromeos3-row5-rack4-host15
-ssid = xwr100_g_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 00:19:9d:74:f0:29
-wan mac = 00:19:9d:74:f0:2b
-model = xwr100
-security = mixed
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[00:19:9d:74:f0:28]
-brand = vizio
-wan_hostname = chromeos3-row5-rack4-host15
-ssid = xwr100_a_ch48_wpa2
-frequency = 5240
-rpm_managed = True
-bss5 = 00:19:9d:74:f0:28
-wan mac = 00:19:9d:74:f0:2b
-model = xwr100
-security = mixed
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# To be moved to Casey
-# [c8:3a:35:49:63:28]
-# brand = tenda
-# wan_hostname = chromeos3-row5-rack4-host16
-# ssid = w311r_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = c8:3a:35:49:63:28
-# wan mac = 58:6d:8f:99:e7:cb
-# model = w311r
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-[08:9e:08:e9:08:1b]
-brand = google
-wan_hostname = chromeos3-row5-rack4-host18
-ssid = gale_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = 08:9e:08:e9:08:1b
-wan mac = 08:9e:08:e9:08:14
-model = gale
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[08:9e:08:e9:08:17]
-brand = google
-wan_hostname = chromeos3-row5-rack4-host18
-ssid = gale_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = 08:9e:08:e9:08:17
-wan mac = 08:9e:08:e9:08:14
-model = gale
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[c0:56:27:40:d3:f6]
-brand = linksys
-wan_hostname = chromeos3-row5-rack4-host19
-ssid = linksys_ea8500_n_ch5_wpa2
-frequency = 2432
-rpm_managed = True
-bss = c0:56:27:40:d3:f6
-wan mac = c0:56:27:40:d3:f5
-model = ea8500
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[c0:56:27:40:d3:f7]
-brand = linksys
-wan_hostname = chromeos3-row5-rack4-host19
-ssid = linksys_ea8500_ac_ch149_wpa2
-frequency = 5745
-rpm_managed = True
-bss5 = c0:56:27:40:d3:f7
-wan mac = c0:56:27:40:d3:f5
-model = ea8500
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-[98:de:d0:43:99:36]
-brand = tplink
-wan_hostname = chromeos3-row5-rack4-host20
-ssid = tplink_archerc5400_ac_ch157_wpa2
-frequency = 5785
-rpm_managed = True
-bss5 = 98:de:d0:43:99:36
-wan mac = 98:de:d0:43:99:3a
-model = archerc5400
-security = wpa2
-psk = chromeos
-class_name = StaticAPConfigurator
-
-# Disable DSL router crbug/758829
-# [b0:b2:dc:18:da:11]
-# brand = zyxel
-# wan_hostname = chromeos3-row6-rack4-host5
-# ssid = zyxel_q1000z_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = b0:b2:dc:18:da:11
-# wan mac = b0:b2:dc:18:da:12
-# model = q1000z
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
-
-# Disable DSL router crbug/758829
-# [4c:60:de:ee:c4:69]
-# brand = netgear
-# wan_hostname = chromeos3-row6-rack4-host11
-# ssid = netgear_dgn2200v3_g_ch5_wpa2
-# frequency = 2432
-# rpm_managed = True
-# bss = 4c:60:de:ee:c4:69
-# wan mac = 4c:60:de:ee:c4:6a
-# model = dgn2200v3
-# security = wpa2
-# psk = chromeos
-# class_name = StaticAPConfigurator
diff --git a/server/cros/chaos_lib/static_runner.py b/server/cros/chaos_lib/static_runner.py
index bfa90b7..5b26218 100644
--- a/server/cros/chaos_lib/static_runner.py
+++ b/server/cros/chaos_lib/static_runner.py
@@ -43,7 +43,7 @@
         logging.info('DUT time: %s', self._host.run('date').stdout.strip())
 
 
-    def run(self, job, batch_size=10, tries=10, capturer_hostname=None,
+    def run(self, job, batch_size=10, tries=2, capturer_hostname=None,
             conn_worker=None, work_client_hostname=None,
             disabled_sysinfo=False):
         """Executes Chaos test.
@@ -64,12 +64,6 @@
 
         lock_manager = host_lock_manager.HostLockManager()
         host_prefix = self._host.hostname.split('-')[0]
-        if ap_constants.CASEY5 in host_prefix:
-            test_type = ap_constants.AP_TEST_TYPE_CASEY5
-        elif ap_constants.CASEY7 in host_prefix:
-            test_type = ap_constants.AP_TEST_TYPE_CASEY7
-        else:
-            test_type = None
 
         with host_lock_manager.HostsLockedBy(lock_manager):
             capture_host = utils.allocate_packet_capturer(
@@ -113,7 +107,7 @@
 
             batch_locker = ap_batch_locker.ApBatchLocker(
                     lock_manager, self._ap_spec,
-                    ap_test_type=test_type)
+                    ap_test_type=ap_constants.AP_TEST_TYPE_CHAOS)
 
             while batch_locker.has_more_aps():
                 # Work around for CrOS devices only:crbug.com/358716
@@ -231,5 +225,5 @@
             capturer.close()
 
             factory = ap_configurator_factory.APConfiguratorFactory(
-                    test_type)
+                    ap_constants.AP_TEST_TYPE_CHAOS)
             factory.turn_off_all_routers([])
diff --git a/server/cros/network/chaos_clique_utils.py b/server/cros/network/chaos_clique_utils.py
index 0d9cd09..cf63441 100644
--- a/server/cros/network/chaos_clique_utils.py
+++ b/server/cros/network/chaos_clique_utils.py
@@ -10,6 +10,7 @@
 
 import common
 from autotest_lib.client.common_lib import error
+from autotest_lib.client.common_lib import utils
 from autotest_lib.client.common_lib.cros.network import ap_constants
 from autotest_lib.client.common_lib.cros.network import iw_runner
 from autotest_lib.server import hosts
@@ -286,8 +287,14 @@
     wifi_if = capturer.get_wlanif(freq, 'managed')
     capturer.host.run('%s link set %s up' % (capturer.cmd_ip, wifi_if))
     # We have some APs that need a while to come on-line
-    networks = capturer.iw_runner.wait_for_scan_result(
-            wifi_if, ssids=[ssid], timeout_seconds=300)
+    networks = utils.poll_for_condition(
+            condition=lambda: capturer.iw_runner.wait_for_scan_result(
+                    wifi_if,
+                    ssids=[ssid],
+                    wait_for_all=True),
+            timeout=300,
+            sleep_interval=35,
+            desc='Timed out getting IWBSSes')
     capturer.remove_interface(wifi_if)
     return networks
 
diff --git a/server/site_tests/network_WiFi_ChaosConnectDisconnect/control.static_2Ghz b/server/site_tests/network_WiFi_ChaosConnectDisconnect/control.static_2Ghz
new file mode 100644
index 0000000..631721c
--- /dev/null
+++ b/server/site_tests/network_WiFi_ChaosConnectDisconnect/control.static_2Ghz
@@ -0,0 +1,37 @@
+# Copyright 2018 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+AUTHOR = 'harpreet'
+NAME = 'network_WiFi_ChaosConnectDisconnect.static_2Ghz'
+TIME = 'LONG'
+TEST_TYPE = 'server'
+ATTRIBUTES = 'suite:wifi_interop'
+DEPENDENCIES = 'chaos_dut'
+
+DOC = """
+This script iterates through all 2Ghz access points in Chaos chamber.
+"""
+
+from autotest_lib.server.cros.ap_configurators import ap_spec
+from autotest_lib.server.cros.chaos_lib import static_runner
+
+def run_chaos_static(machine):
+    host = hosts.create_host(machine)
+    # Test all 2Ghz static APs on channel 1, 6 and 11
+    ap_specs = [ap_spec.APSpec(band=ap_spec.BAND_2GHZ,
+                               channel = 1,
+                               configurator_type=ap_spec.CONFIGURATOR_STATIC),
+                ap_spec.APSpec(band=ap_spec.BAND_2GHZ,
+                               channel = 6,
+                               configurator_type=ap_spec.CONFIGURATOR_STATIC),
+                ap_spec.APSpec(band=ap_spec.BAND_2GHZ,
+                               channel = 11,
+                               configurator_type=ap_spec.CONFIGURATOR_STATIC)]
+
+    for spec in ap_specs:
+        runner = static_runner.StaticRunner(
+                'network_WiFi_ChaosConnectDisconnect', host, spec)
+        runner.run(job)
+
+parallel_simple(run_chaos_static, machines)
diff --git a/server/site_tests/network_WiFi_ChaosConnectDisconnect/control.static_5Ghz b/server/site_tests/network_WiFi_ChaosConnectDisconnect/control.static_5Ghz
new file mode 100644
index 0000000..f5b7c0f
--- /dev/null
+++ b/server/site_tests/network_WiFi_ChaosConnectDisconnect/control.static_5Ghz
@@ -0,0 +1,52 @@
+# Copyright 2018 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+AUTHOR = 'harpreet'
+NAME = 'network_WiFi_ChaosConnectDisconnect.static_5Ghz'
+TIME = 'LONG'
+TEST_TYPE = 'server'
+ATTRIBUTES = 'suite:wifi_interop'
+DEPENDENCIES = 'chaos_dut'
+
+DOC = """
+This script iterates through all 5Ghz access points in Chaos chamber.
+"""
+
+from autotest_lib.server.cros.ap_configurators import ap_spec
+from autotest_lib.server.cros.chaos_lib import static_runner
+
+def run_chaos_static(machine):
+    host = hosts.create_host(machine)
+    # Test all 5Ghz static APs on channel 36, 40, 44, 48, 149, 153, 157 and 161
+    ap_specs = [ap_spec.APSpec(band=ap_spec.BAND_5GHZ,
+                               channel = 36,
+                               configurator_type=ap_spec.CONFIGURATOR_STATIC),
+                ap_spec.APSpec(band=ap_spec.BAND_5GHZ,
+                               channel = 40,
+                               configurator_type=ap_spec.CONFIGURATOR_STATIC),
+                ap_spec.APSpec(band=ap_spec.BAND_5GHZ,
+                               channel = 44,
+                               configurator_type=ap_spec.CONFIGURATOR_STATIC),
+                ap_spec.APSpec(band=ap_spec.BAND_5GHZ,
+                               channel = 48,
+                               configurator_type=ap_spec.CONFIGURATOR_STATIC),
+                ap_spec.APSpec(band=ap_spec.BAND_5GHZ,
+                               channel = 149,
+                               configurator_type=ap_spec.CONFIGURATOR_STATIC),
+                ap_spec.APSpec(band=ap_spec.BAND_5GHZ,
+                               channel = 153,
+                               configurator_type=ap_spec.CONFIGURATOR_STATIC),
+                ap_spec.APSpec(band=ap_spec.BAND_5GHZ,
+                               channel = 157,
+                               configurator_type=ap_spec.CONFIGURATOR_STATIC),
+                ap_spec.APSpec(band=ap_spec.BAND_5GHZ,
+                               channel = 161,
+                               configurator_type=ap_spec.CONFIGURATOR_STATIC)]
+
+    for spec in ap_specs:
+        runner = static_runner.StaticRunner(
+                'network_WiFi_ChaosConnectDisconnect', host, spec)
+        runner.run(job)
+
+parallel_simple(run_chaos_static, machines)
diff --git a/test_suites/control.wifi_interop b/test_suites/control.wifi_interop
index f6b7d02..45a925b 100644
--- a/test_suites/control.wifi_interop
+++ b/test_suites/control.wifi_interop
@@ -29,7 +29,6 @@
 args_dict['add_experimental'] = True
 args_dict['max_runtime_mins'] = 1440
 args_dict['timeout_mins'] = 1440
-args_dict['suite_dependencies'] = 'chaos_nightly'
 args_dict['name'] = NAME
 args_dict['job'] = job