blob: 82cc5a32a342a7efca70e650ea94c65760ab6f63 [file] [log] [blame]
# Copyright (c) 2010 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.
# Verify we can connect to a network with hidden SSID and WPA.
{ "name":"CheckHidden_WPA",
"steps":[ # Channel [1,6,11]
[ "create", { "type":"hostap" } ],
[ "config", { "channel":"2412", "mode":"11g", "hidessid":None,
"wpa":"3", "wpa_key_mgmt":"WPA-PSK",
"wpa_pairwise":"TKIP CCMP",
"rsn_pairwise":"CCMP",
"wpa_passphrase":"chromeos" } ],
# first connect using the specific security
[ "connect", { "security":"wpa", "psk":"chromeos", "hidden":True } ],
[ "client_ping", { "count":"10" } ],
[ "disconnect" ],
# next connect using the either wpa or rsn security
[ "connect", { "security":"psk", "psk":"chromeos", "hidden":True } ],
[ "client_ping", { "count":"10" } ],
[ "destroy" ],
],
}