[PATCHv2 09/21] add CONFIG_VLAN_TAGGED configuration option

Michael Braun michael-dev
Thu Jun 6 03:09:28 PDT 2013


Signed-hostap: Michael Braun <michael-dev at fami-braun.de>

diff --git a/hostapd/Makefile b/hostapd/Makefile
index a47be88..d8c450b 100644
--- a/hostapd/Makefile
+++ b/hostapd/Makefile
@@ -140,6 +140,9 @@ ifdef CONFIG_LIBNL32
 endif
 
 endif
+ifdef CONFIG_VLAN_TAGGED
+CFLAGS += -DCONFIG_VLAN_TAGGED
+endif
 endif
 
 ifdef CONFIG_NO_CTRL_IFACE
diff --git a/hostapd/defconfig b/hostapd/defconfig
index 59f2742..8dc22d6 100644
--- a/hostapd/defconfig
+++ b/hostapd/defconfig
@@ -172,6 +172,9 @@ CONFIG_IPV6=y
 #CONFIG_VLAN_NETLINK=y
 #CONFIG_LIBNL32=y
 
+# Enable support for tagged VLANs.
+# CONFIG_VLAN_TAGGED=y
+
 # Remove support for dumping state into a file on SIGUSR1 signal
 # This can be used to reduce binary size at the cost of disabling a debugging
 # option.
diff --git a/hostapd/hostapd.conf b/hostapd/hostapd.conf
index 49beb94..ff444a0 100644
--- a/hostapd/hostapd.conf
+++ b/hostapd/hostapd.conf
@@ -818,10 +818,14 @@ own_ip_addr=127.0.0.1
 
 # Dynamic VLAN mode; allow RADIUS authentication server to decide which VLAN
 # is used for the stations. This information is parsed from following RADIUS
-# attributes based on RFC 3580 and RFC 2868: Tunnel-Type (value 13 = VLAN),
-# Tunnel-Medium-Type (value 6 = IEEE 802), Tunnel-Private-Group-ID (value
-# VLANID as a string). Optionally, the local MAC ACL list (accept_mac_file) can
-# be used to set static client MAC address to VLAN ID mapping.
+# attributes based on RFC 3580, RFC 2868 and RFC 4675:
+#  a) Tunnel-Type (value 13 = VLAN), Tunnel-Medium-Type (value 6 = IEEE 802),
+#     Tunnel-Private-Group-ID (value VLANID as a string)
+#  b) Egress-VLAN-ID (see RFC 4675).
+# Optionally, the local MAC ACL list (accept_mac_file) can be used to set
+# static client MAC address to VLAN ID mapping. If tagged vlans are used,
+# append "t" and the tagged vlan id to the untagged vlan id (multiple times
+# if needed).
 # 0 = disabled (default)
 # 1 = option; use default interface if RADIUS server does not include VLAN ID
 # 2 = required; reject authentication if RADIUS server does not include VLAN ID
@@ -833,6 +837,8 @@ own_ip_addr=127.0.0.1
 # multiple BSSIDs or SSIDs. Each line in this text file is defining a new
 # interface and the line must include VLAN ID and interface name separated by
 # white space (space or tab).
+# If tagged vlans are used, append "t" and the tagged vlan id to the untagged
+# vlan id (multiple times if needed).
 # If no entries are provided by this file, the station is statically mapped
 # to <bss-iface>.<vlan-id> interfaces.
 #vlan_file=/etc/hostapd.vlan



More information about the Hostap mailing list