hostapd: upgrade to 0.6.7 and conditionally enable 11n support (currently depends...
[openwrt/svn-archive/archive.git] / package / hostapd / files / default.config
1 # Example hostapd build time configuration
2 #
3 # This file lists the configuration options that are used when building the
4 # hostapd binary. All lines starting with # are ignored. Configuration option
5 # lines must be commented out complete, if they are not to be included, i.e.,
6 # just setting VARIABLE=n is not disabling that variable.
7 #
8 # This file is included in Makefile, so variables like CFLAGS and LIBS can also
9 # be modified from here. In most cass, these lines should use += in order not
10 # to override previous values of the variables.
11
12 # Driver interface for Host AP driver
13 CONFIG_DRIVER_HOSTAP=y
14
15 # Driver interface for wired authenticator
16 CONFIG_DRIVER_WIRED=y
17
18 # Driver interface for madwifi driver
19 CONFIG_DRIVER_MADWIFI=y
20 #CFLAGS += -I../head # change to reflect local setup; directory for madwifi src
21
22 # Driver interface for Prism54 driver
23 #CONFIG_DRIVER_PRISM54=y
24
25 # Driver interface for drivers using the nl80211 kernel interface
26 CONFIG_DRIVER_NL80211=y
27 # driver_nl80211.c requires a rather new libnl, probably not
28 # shipped with your distribution yet
29 #LIBNL=/usr/src/libnl
30 #CFLAGS += -I$(LIBNL)/include
31 #LIBS += -L$(LIBNL)/lib
32
33 # Driver interface for drivers using Devicescape IEEE 802.11 stack
34 #CONFIG_DRIVER_DEVICESCAPE=y
35 # Currently, driver_devicescape.c build requires some additional parameters
36 # to be able to include some of the kernel header files. Following lines can
37 # be used to set these (WIRELESS_DEV must point to the root directory of the
38 # wireless-dev.git tree).
39 #WIRELESS_DEV=/usr/src/wireless-dev
40 #CFLAGS += -I$(WIRELESS_DEV)/net/mac80211
41 # driver_devicescape.c requires a rather new libnl, probably not
42 # shipped with your distribution yet
43 #LIBNL=/usr/src/libnl
44 #CFLAGS += -I$(LIBNL)/include
45 #LIBS += -L$(LIBNL)/lib
46
47 # Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
48 #CONFIG_DRIVER_BSD=y
49 #CFLAGS += -I/usr/local/include
50 #LIBS += -L/usr/local/lib
51
52 # IEEE 802.11F/IAPP
53 CONFIG_IAPP=y
54
55 # WPA2/IEEE 802.11i RSN pre-authentication
56 CONFIG_RSN_PREAUTH=y
57
58 # PeerKey handshake for Station to Station Link (IEEE 802.11e DLS)
59 CONFIG_PEERKEY=y
60
61 # IEEE 802.11w (management frame protection)
62 # This version is an experimental implementation based on IEEE 802.11w/D1.0
63 # draft and is subject to change since the standard has not yet been finalized.
64 # Driver support is also needed for IEEE 802.11w.
65 #CONFIG_IEEE80211W=y
66
67 # Integrated EAP server
68 CONFIG_EAP=y
69
70 # EAP-MD5 for the integrated EAP server
71 CONFIG_EAP_MD5=y
72
73 # EAP-TLS for the integrated EAP server
74 CONFIG_EAP_TLS=y
75
76 # EAP-MSCHAPv2 for the integrated EAP server
77 CONFIG_EAP_MSCHAPV2=y
78
79 # EAP-PEAP for the integrated EAP server
80 CONFIG_EAP_PEAP=y
81
82 # EAP-GTC for the integrated EAP server
83 CONFIG_EAP_GTC=y
84
85 # EAP-TTLS for the integrated EAP server
86 CONFIG_EAP_TTLS=y
87
88 # EAP-SIM for the integrated EAP server
89 #CONFIG_EAP_SIM=y
90
91 # EAP-AKA for the integrated EAP server
92 #CONFIG_EAP_AKA=y
93
94 # EAP-PAX for the integrated EAP server
95 #CONFIG_EAP_PAX=y
96
97 # EAP-PSK for the integrated EAP server (this is _not_ needed for WPA-PSK)
98 #CONFIG_EAP_PSK=y
99
100 # EAP-SAKE for the integrated EAP server
101 #CONFIG_EAP_SAKE=y
102
103 # EAP-GPSK for the integrated EAP server
104 #CONFIG_EAP_GPSK=y
105 # Include support for optional SHA256 cipher suite in EAP-GPSK
106 #CONFIG_EAP_GPSK_SHA256=y
107
108 # EAP-FAST for the integrated EAP server
109 # Note: Default OpenSSL package does not include support for all the
110 # functionality needed for EAP-FAST. If EAP-FAST is enabled with OpenSSL,
111 # the OpenSSL library must be patched (openssl-0.9.9-session-ticket.patch)
112 # to add the needed functions.
113 #CONFIG_EAP_FAST=y
114
115 # PKCS#12 (PFX) support (used to read private key and certificate file from
116 # a file that usually has extension .p12 or .pfx)
117 CONFIG_PKCS12=y
118
119 # RADIUS authentication server. This provides access to the integrated EAP
120 # server from external hosts using RADIUS.
121 #CONFIG_RADIUS_SERVER=y
122
123 # Build IPv6 support for RADIUS operations
124 CONFIG_IPV6=y
125
126 # IEEE 802.11r/D4.1 (Fast BSS Transition)
127 # This enables an experimental implementation of a draft version of
128 # IEEE 802.11r. This draft is still subject to change, so it should be noted
129 # that this version may not comply with the final standard.
130 #CONFIG_IEEE80211R=y
131
132 # IEEE 802.11n (High Throughput) support
133 CONFIG_IEEE80211N=y