2013-10-29 23:16:36 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
#
|
|
|
|
# Test cases for AP VLAN
|
2014-03-08 10:29:35 +01:00
|
|
|
# Copyright (c) 2013-2014, Jouni Malinen <j@w1.fi>
|
2013-10-29 23:16:36 +01:00
|
|
|
#
|
|
|
|
# This software may be distributed under the terms of the BSD license.
|
|
|
|
# See README for more details.
|
|
|
|
|
|
|
|
import time
|
|
|
|
import subprocess
|
|
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
import hwsim_utils
|
|
|
|
import hostapd
|
|
|
|
|
|
|
|
def test_ap_vlan_open(dev, apdev):
|
|
|
|
"""AP VLAN with open network"""
|
|
|
|
params = { "ssid": "test-vlan-open",
|
|
|
|
"dynamic_vlan": "1",
|
|
|
|
"accept_mac_file": "hostapd.accept" }
|
2014-10-19 16:54:49 +02:00
|
|
|
hapd = hostapd.add_ap(apdev[0]['ifname'], params)
|
2013-10-29 23:16:36 +01:00
|
|
|
|
|
|
|
dev[0].connect("test-vlan-open", key_mgmt="NONE", scan_freq="2412")
|
|
|
|
dev[1].connect("test-vlan-open", key_mgmt="NONE", scan_freq="2412")
|
|
|
|
dev[2].connect("test-vlan-open", key_mgmt="NONE", scan_freq="2412")
|
2014-11-27 13:04:51 +01:00
|
|
|
hwsim_utils.test_connectivity_iface(dev[0], hapd, "brvlan1")
|
|
|
|
hwsim_utils.test_connectivity_iface(dev[1], hapd, "brvlan2")
|
2014-10-19 16:54:49 +02:00
|
|
|
hwsim_utils.test_connectivity(dev[2], hapd)
|
2013-10-29 23:16:36 +01:00
|
|
|
|
2014-03-30 09:59:16 +02:00
|
|
|
def test_ap_vlan_file_open(dev, apdev):
|
|
|
|
"""AP VLAN with open network and vlan_file mapping"""
|
|
|
|
params = { "ssid": "test-vlan-open",
|
|
|
|
"dynamic_vlan": "1",
|
|
|
|
"vlan_file": "hostapd.vlan",
|
|
|
|
"accept_mac_file": "hostapd.accept" }
|
2014-10-19 16:54:49 +02:00
|
|
|
hapd = hostapd.add_ap(apdev[0]['ifname'], params)
|
2014-03-30 09:59:16 +02:00
|
|
|
|
|
|
|
dev[0].connect("test-vlan-open", key_mgmt="NONE", scan_freq="2412")
|
|
|
|
dev[1].connect("test-vlan-open", key_mgmt="NONE", scan_freq="2412")
|
|
|
|
dev[2].connect("test-vlan-open", key_mgmt="NONE", scan_freq="2412")
|
2014-11-27 13:04:51 +01:00
|
|
|
hwsim_utils.test_connectivity_iface(dev[0], hapd, "brvlan1")
|
|
|
|
hwsim_utils.test_connectivity_iface(dev[1], hapd, "brvlan2")
|
2014-10-19 16:54:49 +02:00
|
|
|
hwsim_utils.test_connectivity(dev[2], hapd)
|
2014-03-30 09:59:16 +02:00
|
|
|
|
2013-10-29 23:16:36 +01:00
|
|
|
def test_ap_vlan_wpa2(dev, apdev):
|
|
|
|
"""AP VLAN with WPA2-PSK"""
|
|
|
|
params = hostapd.wpa2_params(ssid="test-vlan",
|
|
|
|
passphrase="12345678")
|
|
|
|
params['dynamic_vlan'] = "1";
|
|
|
|
params['accept_mac_file'] = "hostapd.accept";
|
2014-10-19 16:54:49 +02:00
|
|
|
hapd = hostapd.add_ap(apdev[0]['ifname'], params)
|
2013-10-29 23:16:36 +01:00
|
|
|
|
|
|
|
dev[0].connect("test-vlan", psk="12345678", scan_freq="2412")
|
|
|
|
dev[1].connect("test-vlan", psk="12345678", scan_freq="2412")
|
|
|
|
dev[2].connect("test-vlan", psk="12345678", scan_freq="2412")
|
2014-11-27 13:04:51 +01:00
|
|
|
hwsim_utils.test_connectivity_iface(dev[0], hapd, "brvlan1")
|
|
|
|
hwsim_utils.test_connectivity_iface(dev[1], hapd, "brvlan2")
|
2014-10-19 16:54:49 +02:00
|
|
|
hwsim_utils.test_connectivity(dev[2], hapd)
|
2014-03-08 10:29:35 +01:00
|
|
|
|
|
|
|
def test_ap_vlan_wpa2_radius(dev, apdev):
|
|
|
|
"""AP VLAN with WPA2-Enterprise and RADIUS attributes"""
|
|
|
|
params = hostapd.wpa2_eap_params(ssid="test-vlan")
|
|
|
|
params['dynamic_vlan'] = "1";
|
2014-10-19 16:54:49 +02:00
|
|
|
hapd = hostapd.add_ap(apdev[0]['ifname'], params)
|
2014-03-08 10:29:35 +01:00
|
|
|
|
|
|
|
dev[0].connect("test-vlan", key_mgmt="WPA-EAP", eap="PAX",
|
|
|
|
identity="vlan1",
|
|
|
|
password_hex="0123456789abcdef0123456789abcdef",
|
|
|
|
scan_freq="2412")
|
|
|
|
dev[1].connect("test-vlan", key_mgmt="WPA-EAP", eap="PAX",
|
|
|
|
identity="vlan2",
|
|
|
|
password_hex="0123456789abcdef0123456789abcdef",
|
|
|
|
scan_freq="2412")
|
|
|
|
dev[2].connect("test-vlan", key_mgmt="WPA-EAP", eap="PAX",
|
|
|
|
identity="pax.user@example.com",
|
|
|
|
password_hex="0123456789abcdef0123456789abcdef",
|
|
|
|
scan_freq="2412")
|
2014-11-27 13:04:51 +01:00
|
|
|
hwsim_utils.test_connectivity_iface(dev[0], hapd, "brvlan1")
|
|
|
|
hwsim_utils.test_connectivity_iface(dev[1], hapd, "brvlan2")
|
2014-10-19 16:54:49 +02:00
|
|
|
hwsim_utils.test_connectivity(dev[2], hapd)
|
2014-03-08 10:29:35 +01:00
|
|
|
|
|
|
|
def test_ap_vlan_wpa2_radius_required(dev, apdev):
|
|
|
|
"""AP VLAN with WPA2-Enterprise and RADIUS attributes required"""
|
|
|
|
params = hostapd.wpa2_eap_params(ssid="test-vlan")
|
|
|
|
params['dynamic_vlan'] = "2";
|
|
|
|
hostapd.add_ap(apdev[0]['ifname'], params)
|
|
|
|
|
|
|
|
dev[0].connect("test-vlan", key_mgmt="WPA-EAP", eap="PAX",
|
|
|
|
identity="vlan1",
|
|
|
|
password_hex="0123456789abcdef0123456789abcdef",
|
|
|
|
scan_freq="2412")
|
|
|
|
dev[2].connect("test-vlan", key_mgmt="WPA-EAP", eap="PAX",
|
|
|
|
identity="pax.user@example.com",
|
|
|
|
password_hex="0123456789abcdef0123456789abcdef",
|
|
|
|
scan_freq="2412", wait_connect=False)
|
|
|
|
ev = dev[2].wait_event(["CTRL-EVENT-CONNECTED",
|
|
|
|
"CTRL-EVENT-DISCONNECTED"], timeout=20)
|
|
|
|
if ev is None:
|
|
|
|
raise Exception("Timeout on connection attempt")
|
|
|
|
if "CTRL-EVENT-CONNECTED" in ev:
|
|
|
|
raise Exception("Unexpected success without tunnel parameters")
|
2014-03-15 14:49:32 +01:00
|
|
|
|
|
|
|
def test_ap_vlan_tagged(dev, apdev):
|
|
|
|
"""AP VLAN with tagged interface"""
|
|
|
|
params = { "ssid": "test-vlan-open",
|
|
|
|
"dynamic_vlan": "1",
|
|
|
|
"vlan_tagged_interface": "lo",
|
|
|
|
"accept_mac_file": "hostapd.accept" }
|
2014-10-19 16:54:49 +02:00
|
|
|
hapd = hostapd.add_ap(apdev[0]['ifname'], params)
|
2014-03-15 14:49:32 +01:00
|
|
|
|
|
|
|
dev[0].connect("test-vlan-open", key_mgmt="NONE", scan_freq="2412")
|
|
|
|
dev[1].connect("test-vlan-open", key_mgmt="NONE", scan_freq="2412")
|
|
|
|
dev[2].connect("test-vlan-open", key_mgmt="NONE", scan_freq="2412")
|
2014-11-27 13:04:51 +01:00
|
|
|
hwsim_utils.test_connectivity_iface(dev[0], hapd, "brlo.1")
|
|
|
|
hwsim_utils.test_connectivity_iface(dev[1], hapd, "brlo.2")
|
2014-10-19 16:54:49 +02:00
|
|
|
hwsim_utils.test_connectivity(dev[2], hapd)
|