Remove references to madwifi from various files
[mech_eap.git] / hostapd / defconfig
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 drivers using the nl80211 kernel interface
19 CONFIG_DRIVER_NL80211=y
20
21 # driver_nl80211.c requires libnl. If you are compiling it yourself
22 # you may need to point hostapd to your version of libnl.
23 #
24 #CFLAGS += -I$<path to libnl include files>
25 #LIBS += -L$<path to libnl library files>
26
27 # Use libnl v2.0 (or 3.0) libraries.
28 #CONFIG_LIBNL20=y
29
30 # Use libnl 3.2 libraries (if this is selected, CONFIG_LIBNL20 is ignored)
31 #CONFIG_LIBNL32=y
32
33
34 # Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
35 #CONFIG_DRIVER_BSD=y
36 #CFLAGS += -I/usr/local/include
37 #LIBS += -L/usr/local/lib
38 #LIBS_p += -L/usr/local/lib
39 #LIBS_c += -L/usr/local/lib
40
41 # Driver interface for no driver (e.g., RADIUS server only)
42 #CONFIG_DRIVER_NONE=y
43
44 # IEEE 802.11F/IAPP
45 CONFIG_IAPP=y
46
47 # WPA2/IEEE 802.11i RSN pre-authentication
48 CONFIG_RSN_PREAUTH=y
49
50 # PeerKey handshake for Station to Station Link (IEEE 802.11e DLS)
51 CONFIG_PEERKEY=y
52
53 # IEEE 802.11w (management frame protection)
54 CONFIG_IEEE80211W=y
55
56 # Integrated EAP server
57 CONFIG_EAP=y
58
59 # EAP-MD5 for the integrated EAP server
60 CONFIG_EAP_MD5=y
61
62 # EAP-TLS for the integrated EAP server
63 CONFIG_EAP_TLS=y
64
65 # EAP-MSCHAPv2 for the integrated EAP server
66 CONFIG_EAP_MSCHAPV2=y
67
68 # EAP-PEAP for the integrated EAP server
69 CONFIG_EAP_PEAP=y
70
71 # EAP-GTC for the integrated EAP server
72 CONFIG_EAP_GTC=y
73
74 # EAP-TTLS for the integrated EAP server
75 CONFIG_EAP_TTLS=y
76
77 # EAP-SIM for the integrated EAP server
78 #CONFIG_EAP_SIM=y
79
80 # EAP-AKA for the integrated EAP server
81 #CONFIG_EAP_AKA=y
82
83 # EAP-AKA' for the integrated EAP server
84 # This requires CONFIG_EAP_AKA to be enabled, too.
85 #CONFIG_EAP_AKA_PRIME=y
86
87 # EAP-PAX for the integrated EAP server
88 #CONFIG_EAP_PAX=y
89
90 # EAP-PSK for the integrated EAP server (this is _not_ needed for WPA-PSK)
91 #CONFIG_EAP_PSK=y
92
93 # EAP-pwd for the integrated EAP server (secure authentication with a password)
94 #CONFIG_EAP_PWD=y
95
96 # EAP-SAKE for the integrated EAP server
97 #CONFIG_EAP_SAKE=y
98
99 # EAP-GPSK for the integrated EAP server
100 #CONFIG_EAP_GPSK=y
101 # Include support for optional SHA256 cipher suite in EAP-GPSK
102 #CONFIG_EAP_GPSK_SHA256=y
103
104 # EAP-FAST for the integrated EAP server
105 # Note: If OpenSSL is used as the TLS library, OpenSSL 1.0 or newer is needed
106 # for EAP-FAST support. Older OpenSSL releases would need to be patched, e.g.,
107 # with openssl-0.9.8x-tls-extensions.patch, to add the needed functions.
108 #CONFIG_EAP_FAST=y
109
110 # Wi-Fi Protected Setup (WPS)
111 #CONFIG_WPS=y
112 # Enable UPnP support for external WPS Registrars
113 #CONFIG_WPS_UPNP=y
114 # Enable WPS support with NFC config method
115 #CONFIG_WPS_NFC=y
116
117 # EAP-IKEv2
118 #CONFIG_EAP_IKEV2=y
119
120 # Trusted Network Connect (EAP-TNC)
121 #CONFIG_EAP_TNC=y
122
123 # EAP-EKE for the integrated EAP server
124 #CONFIG_EAP_EKE=y
125
126 # PKCS#12 (PFX) support (used to read private key and certificate file from
127 # a file that usually has extension .p12 or .pfx)
128 CONFIG_PKCS12=y
129
130 # RADIUS authentication server. This provides access to the integrated EAP
131 # server from external hosts using RADIUS.
132 #CONFIG_RADIUS_SERVER=y
133
134 # Build IPv6 support for RADIUS operations
135 CONFIG_IPV6=y
136
137 # IEEE Std 802.11r-2008 (Fast BSS Transition)
138 #CONFIG_IEEE80211R=y
139
140 # Use the hostapd's IEEE 802.11 authentication (ACL), but without
141 # the IEEE 802.11 Management capability (e.g., FreeBSD/net80211)
142 #CONFIG_DRIVER_RADIUS_ACL=y
143
144 # IEEE 802.11n (High Throughput) support
145 #CONFIG_IEEE80211N=y
146
147 # Wireless Network Management (IEEE Std 802.11v-2011)
148 # Note: This is experimental and not complete implementation.
149 #CONFIG_WNM=y
150
151 # IEEE 802.11ac (Very High Throughput) support
152 #CONFIG_IEEE80211AC=y
153
154 # Remove debugging code that is printing out debug messages to stdout.
155 # This can be used to reduce the size of the hostapd considerably if debugging
156 # code is not needed.
157 #CONFIG_NO_STDOUT_DEBUG=y
158
159 # Add support for writing debug log to a file: -f /tmp/hostapd.log
160 # Disabled by default.
161 #CONFIG_DEBUG_FILE=y
162
163 # Add support for sending all debug messages (regardless of debug verbosity)
164 # to the Linux kernel tracing facility. This helps debug the entire stack by
165 # making it easy to record everything happening from the driver up into the
166 # same file, e.g., using trace-cmd.
167 #CONFIG_DEBUG_LINUX_TRACING=y
168
169 # Remove support for RADIUS accounting
170 #CONFIG_NO_ACCOUNTING=y
171
172 # Remove support for RADIUS
173 #CONFIG_NO_RADIUS=y
174
175 # Remove support for VLANs
176 #CONFIG_NO_VLAN=y
177
178 # Enable support for fully dynamic VLANs. This enables hostapd to
179 # automatically create bridge and VLAN interfaces if necessary.
180 #CONFIG_FULL_DYNAMIC_VLAN=y
181
182 # Use netlink-based kernel API for VLAN operations instead of ioctl()
183 # Note: This requires libnl 3.1 or newer.
184 #CONFIG_VLAN_NETLINK=y
185
186 # Remove support for dumping internal state through control interface commands
187 # This can be used to reduce binary size at the cost of disabling a debugging
188 # option.
189 #CONFIG_NO_DUMP_STATE=y
190
191 # Enable tracing code for developer debugging
192 # This tracks use of memory allocations and other registrations and reports
193 # incorrect use with a backtrace of call (or allocation) location.
194 #CONFIG_WPA_TRACE=y
195 # For BSD, comment out these.
196 #LIBS += -lexecinfo
197 #LIBS_p += -lexecinfo
198 #LIBS_c += -lexecinfo
199
200 # Use libbfd to get more details for developer debugging
201 # This enables use of libbfd to get more detailed symbols for the backtraces
202 # generated by CONFIG_WPA_TRACE=y.
203 #CONFIG_WPA_TRACE_BFD=y
204 # For BSD, comment out these.
205 #LIBS += -lbfd -liberty -lz
206 #LIBS_p += -lbfd -liberty -lz
207 #LIBS_c += -lbfd -liberty -lz
208
209 # hostapd depends on strong random number generation being available from the
210 # operating system. os_get_random() function is used to fetch random data when
211 # needed, e.g., for key generation. On Linux and BSD systems, this works by
212 # reading /dev/urandom. It should be noted that the OS entropy pool needs to be
213 # properly initialized before hostapd is started. This is important especially
214 # on embedded devices that do not have a hardware random number generator and
215 # may by default start up with minimal entropy available for random number
216 # generation.
217 #
218 # As a safety net, hostapd is by default trying to internally collect
219 # additional entropy for generating random data to mix in with the data
220 # fetched from the OS. This by itself is not considered to be very strong, but
221 # it may help in cases where the system pool is not initialized properly.
222 # However, it is very strongly recommended that the system pool is initialized
223 # with enough entropy either by using hardware assisted random number
224 # generator or by storing state over device reboots.
225 #
226 # hostapd can be configured to maintain its own entropy store over restarts to
227 # enhance random number generation. This is not perfect, but it is much more
228 # secure than using the same sequence of random numbers after every reboot.
229 # This can be enabled with -e<entropy file> command line option. The specified
230 # file needs to be readable and writable by hostapd.
231 #
232 # If the os_get_random() is known to provide strong random data (e.g., on
233 # Linux/BSD, the board in question is known to have reliable source of random
234 # data from /dev/urandom), the internal hostapd random pool can be disabled.
235 # This will save some in binary size and CPU use. However, this should only be
236 # considered for builds that are known to be used on devices that meet the
237 # requirements described above.
238 #CONFIG_NO_RANDOM_POOL=y
239
240 # Select TLS implementation
241 # openssl = OpenSSL (default)
242 # gnutls = GnuTLS
243 # internal = Internal TLSv1 implementation (experimental)
244 # none = Empty template
245 #CONFIG_TLS=openssl
246
247 # TLS-based EAP methods require at least TLS v1.0. Newer version of TLS (v1.1)
248 # can be enabled to get a stronger construction of messages when block ciphers
249 # are used.
250 #CONFIG_TLSV11=y
251
252 # TLS-based EAP methods require at least TLS v1.0. Newer version of TLS (v1.2)
253 # can be enabled to enable use of stronger crypto algorithms.
254 #CONFIG_TLSV12=y
255
256 # If CONFIG_TLS=internal is used, additional library and include paths are
257 # needed for LibTomMath. Alternatively, an integrated, minimal version of
258 # LibTomMath can be used. See beginning of libtommath.c for details on benefits
259 # and drawbacks of this option.
260 #CONFIG_INTERNAL_LIBTOMMATH=y
261 #ifndef CONFIG_INTERNAL_LIBTOMMATH
262 #LTM_PATH=/usr/src/libtommath-0.39
263 #CFLAGS += -I$(LTM_PATH)
264 #LIBS += -L$(LTM_PATH)
265 #LIBS_p += -L$(LTM_PATH)
266 #endif
267 # At the cost of about 4 kB of additional binary size, the internal LibTomMath
268 # can be configured to include faster routines for exptmod, sqr, and div to
269 # speed up DH and RSA calculation considerably
270 #CONFIG_INTERNAL_LIBTOMMATH_FAST=y
271
272 # Interworking (IEEE 802.11u)
273 # This can be used to enable functionality to improve interworking with
274 # external networks.
275 #CONFIG_INTERWORKING=y
276
277 # Hotspot 2.0
278 #CONFIG_HS20=y
279
280 # Enable SQLite database support in hlr_auc_gw, EAP-SIM DB, and eap_user_file
281 #CONFIG_SQLITE=y
282
283 # Testing options
284 # This can be used to enable some testing options (see also the example
285 # configuration file) that are really useful only for testing clients that
286 # connect to this hostapd. These options allow, for example, to drop a
287 # certain percentage of probe requests or auth/(re)assoc frames.
288 #
289 #CONFIG_TESTING_OPTIONS=y
290
291 # Automatic Channel Selection
292 # This will allow hostapd to pick the channel automatically when channel is set
293 # to "acs_survey" or "0". Eventually, other ACS algorithms can be added in
294 # similar way.
295 #
296 # Automatic selection is currently only done through initialization, later on
297 # we hope to do background checks to keep us moving to more ideal channels as
298 # time goes by. ACS is currently only supported through the nl80211 driver and
299 # your driver must have survey dump capability that is filled by the driver
300 # during scanning.
301 #
302 # You can customize the ACS survey algorithm with the hostapd.conf variable
303 # acs_num_scans.
304 #
305 # Supported ACS drivers:
306 # * ath9k
307 # * ath5k
308 # * ath10k
309 #
310 # For more details refer to:
311 # http://wireless.kernel.org/en/users/Documentation/acs
312 #
313 #CONFIG_ACS=y