]> git.ipfire.org Git - thirdparty/hostap.git/blame - hostapd/defconfig
Remove CONFIG_IEEE80211W build parameter
[thirdparty/hostap.git] / hostapd / defconfig
CommitLineData
6fc6879b
JM
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
13CONFIG_DRIVER_HOSTAP=y
14
15# Driver interface for wired authenticator
16#CONFIG_DRIVER_WIRED=y
17
6fc6879b 18# Driver interface for drivers using the nl80211 kernel interface
5dcfb683 19CONFIG_DRIVER_NL80211=y
6fc6879b 20
b658547d
JM
21# QCA vendor extensions to nl80211
22#CONFIG_DRIVER_NL80211_QCA=y
23
3043b4f4
BG
24# driver_nl80211.c requires libnl. If you are compiling it yourself
25# you may need to point hostapd to your version of libnl.
26#
27#CFLAGS += -I$<path to libnl include files>
28#LIBS += -L$<path to libnl library files>
29
30# Use libnl v2.0 (or 3.0) libraries.
31#CONFIG_LIBNL20=y
32
33# Use libnl 3.2 libraries (if this is selected, CONFIG_LIBNL20 is ignored)
55570efe 34CONFIG_LIBNL32=y
3043b4f4
BG
35
36
6fc6879b
JM
37# Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
38#CONFIG_DRIVER_BSD=y
39#CFLAGS += -I/usr/local/include
40#LIBS += -L/usr/local/lib
953f0f63
MH
41#LIBS_p += -L/usr/local/lib
42#LIBS_c += -L/usr/local/lib
6fc6879b 43
d64dabee
JM
44# Driver interface for no driver (e.g., RADIUS server only)
45#CONFIG_DRIVER_NONE=y
46
6fc6879b
JM
47# IEEE 802.11F/IAPP
48CONFIG_IAPP=y
49
50# WPA2/IEEE 802.11i RSN pre-authentication
51CONFIG_RSN_PREAUTH=y
52
138205d6
MV
53# Support Operating Channel Validation
54#CONFIG_OCV=y
55
6fc6879b
JM
56# Integrated EAP server
57CONFIG_EAP=y
58
d3bddd8b
JM
59# EAP Re-authentication Protocol (ERP) in integrated EAP server
60CONFIG_ERP=y
61
6fc6879b
JM
62# EAP-MD5 for the integrated EAP server
63CONFIG_EAP_MD5=y
64
65# EAP-TLS for the integrated EAP server
66CONFIG_EAP_TLS=y
67
68# EAP-MSCHAPv2 for the integrated EAP server
69CONFIG_EAP_MSCHAPV2=y
70
71# EAP-PEAP for the integrated EAP server
72CONFIG_EAP_PEAP=y
73
74# EAP-GTC for the integrated EAP server
75CONFIG_EAP_GTC=y
76
77# EAP-TTLS for the integrated EAP server
78CONFIG_EAP_TTLS=y
79
80# EAP-SIM for the integrated EAP server
81#CONFIG_EAP_SIM=y
82
83# EAP-AKA for the integrated EAP server
84#CONFIG_EAP_AKA=y
85
a9d1364c
JM
86# EAP-AKA' for the integrated EAP server
87# This requires CONFIG_EAP_AKA to be enabled, too.
88#CONFIG_EAP_AKA_PRIME=y
89
6fc6879b
JM
90# EAP-PAX for the integrated EAP server
91#CONFIG_EAP_PAX=y
92
93# EAP-PSK for the integrated EAP server (this is _not_ needed for WPA-PSK)
94#CONFIG_EAP_PSK=y
95
27c9d333
DH
96# EAP-pwd for the integrated EAP server (secure authentication with a password)
97#CONFIG_EAP_PWD=y
98
6fc6879b
JM
99# EAP-SAKE for the integrated EAP server
100#CONFIG_EAP_SAKE=y
101
102# EAP-GPSK for the integrated EAP server
103#CONFIG_EAP_GPSK=y
104# Include support for optional SHA256 cipher suite in EAP-GPSK
105#CONFIG_EAP_GPSK_SHA256=y
106
107# EAP-FAST for the integrated EAP server
6fc6879b
JM
108#CONFIG_EAP_FAST=y
109
0ed57c5e
JM
110# EAP-TEAP for the integrated EAP server
111# Note: The current EAP-TEAP implementation is experimental and should not be
112# enabled for production use. The IETF RFC 7170 that defines EAP-TEAP has number
113# of conflicting statements and missing details and the implementation has
114# vendor specific workarounds for those and as such, may not interoperate with
115# any other implementation. This should not be used for anything else than
116# experimentation and interoperability testing until those issues has been
117# resolved.
118#CONFIG_EAP_TEAP=y
119
ad08c363
JM
120# Wi-Fi Protected Setup (WPS)
121#CONFIG_WPS=y
c5e1522f
JM
122# Enable UPnP support for external WPS Registrars
123#CONFIG_WPS_UPNP=y
51ca03f4
JM
124# Enable WPS support with NFC config method
125#CONFIG_WPS_NFC=y
ad08c363 126
6fc6879b
JM
127# EAP-IKEv2
128#CONFIG_EAP_IKEV2=y
129
502a293e
JM
130# Trusted Network Connect (EAP-TNC)
131#CONFIG_EAP_TNC=y
132
fe65847b
JM
133# EAP-EKE for the integrated EAP server
134#CONFIG_EAP_EKE=y
135
6fc6879b
JM
136# PKCS#12 (PFX) support (used to read private key and certificate file from
137# a file that usually has extension .p12 or .pfx)
138CONFIG_PKCS12=y
139
140# RADIUS authentication server. This provides access to the integrated EAP
141# server from external hosts using RADIUS.
142#CONFIG_RADIUS_SERVER=y
143
144# Build IPv6 support for RADIUS operations
145CONFIG_IPV6=y
146
c1e033b0 147# IEEE Std 802.11r-2008 (Fast BSS Transition)
6fc6879b 148#CONFIG_IEEE80211R=y
6affdaee
CZ
149
150# Use the hostapd's IEEE 802.11 authentication (ACL), but without
01b32d5e 151# the IEEE 802.11 Management capability (e.g., FreeBSD/net80211)
6affdaee 152#CONFIG_DRIVER_RADIUS_ACL=y
9a6cec7b
JM
153
154# IEEE 802.11n (High Throughput) support
155#CONFIG_IEEE80211N=y
03018d3e 156
b6668734
JM
157# Wireless Network Management (IEEE Std 802.11v-2011)
158# Note: This is experimental and not complete implementation.
159#CONFIG_WNM=y
160
efe45d14
MP
161# IEEE 802.11ac (Very High Throughput) support
162#CONFIG_IEEE80211AC=y
163
94380cb4
PX
164# IEEE 802.11ax HE support
165# Note: This is experimental and work in progress. The definitions are still
166# subject to change and this should not be expected to interoperate with the
167# final IEEE 802.11ax version.
168#CONFIG_IEEE80211AX=y
169
03018d3e
JM
170# Remove debugging code that is printing out debug messages to stdout.
171# This can be used to reduce the size of the hostapd considerably if debugging
172# code is not needed.
173#CONFIG_NO_STDOUT_DEBUG=y
f88bd288 174
b41a47c0
BG
175# Add support for writing debug log to a file: -f /tmp/hostapd.log
176# Disabled by default.
177#CONFIG_DEBUG_FILE=y
178
cc3dae85
WD
179# Send debug messages to syslog instead of stdout
180#CONFIG_DEBUG_SYSLOG=y
181
0648c3b8
JB
182# Add support for sending all debug messages (regardless of debug verbosity)
183# to the Linux kernel tracing facility. This helps debug the entire stack by
184# making it easy to record everything happening from the driver up into the
185# same file, e.g., using trace-cmd.
186#CONFIG_DEBUG_LINUX_TRACING=y
187
f88bd288
JM
188# Remove support for RADIUS accounting
189#CONFIG_NO_ACCOUNTING=y
190
191# Remove support for RADIUS
192#CONFIG_NO_RADIUS=y
30b32314
JM
193
194# Remove support for VLANs
195#CONFIG_NO_VLAN=y
b60d6f61 196
1b6dbec6 197# Enable support for fully dynamic VLANs. This enables hostapd to
f5798bf3
HS
198# automatically create bridge and VLAN interfaces if necessary.
199#CONFIG_FULL_DYNAMIC_VLAN=y
200
03a6a2e9
MB
201# Use netlink-based kernel API for VLAN operations instead of ioctl()
202# Note: This requires libnl 3.1 or newer.
203#CONFIG_VLAN_NETLINK=y
204
a1a31b6c 205# Remove support for dumping internal state through control interface commands
b60d6f61
JM
206# This can be used to reduce binary size at the cost of disabling a debugging
207# option.
208#CONFIG_NO_DUMP_STATE=y
b22b41ee
JM
209
210# Enable tracing code for developer debugging
211# This tracks use of memory allocations and other registrations and reports
212# incorrect use with a backtrace of call (or allocation) location.
213#CONFIG_WPA_TRACE=y
953f0f63
MH
214# For BSD, comment out these.
215#LIBS += -lexecinfo
216#LIBS_p += -lexecinfo
217#LIBS_c += -lexecinfo
b22b41ee
JM
218
219# Use libbfd to get more details for developer debugging
220# This enables use of libbfd to get more detailed symbols for the backtraces
221# generated by CONFIG_WPA_TRACE=y.
96603e4f 222#CONFIG_WPA_TRACE_BFD=y
953f0f63
MH
223# For BSD, comment out these.
224#LIBS += -lbfd -liberty -lz
225#LIBS_p += -lbfd -liberty -lz
226#LIBS_c += -lbfd -liberty -lz
bbb921da
JM
227
228# hostapd depends on strong random number generation being available from the
229# operating system. os_get_random() function is used to fetch random data when
230# needed, e.g., for key generation. On Linux and BSD systems, this works by
231# reading /dev/urandom. It should be noted that the OS entropy pool needs to be
232# properly initialized before hostapd is started. This is important especially
233# on embedded devices that do not have a hardware random number generator and
234# may by default start up with minimal entropy available for random number
235# generation.
236#
237# As a safety net, hostapd is by default trying to internally collect
238# additional entropy for generating random data to mix in with the data
239# fetched from the OS. This by itself is not considered to be very strong, but
240# it may help in cases where the system pool is not initialized properly.
241# However, it is very strongly recommended that the system pool is initialized
242# with enough entropy either by using hardware assisted random number
38e24575 243# generator or by storing state over device reboots.
bbb921da 244#
38e24575
JM
245# hostapd can be configured to maintain its own entropy store over restarts to
246# enhance random number generation. This is not perfect, but it is much more
247# secure than using the same sequence of random numbers after every reboot.
248# This can be enabled with -e<entropy file> command line option. The specified
249# file needs to be readable and writable by hostapd.
250#
251# If the os_get_random() is known to provide strong random data (e.g., on
bbb921da
JM
252# Linux/BSD, the board in question is known to have reliable source of random
253# data from /dev/urandom), the internal hostapd random pool can be disabled.
254# This will save some in binary size and CPU use. However, this should only be
255# considered for builds that are known to be used on devices that meet the
256# requirements described above.
257#CONFIG_NO_RANDOM_POOL=y
5c47af9a 258
89a7cdd6
LR
259# Should we attempt to use the getrandom(2) call that provides more reliable
260# yet secure randomness source than /dev/random on Linux 3.17 and newer.
261# Requires glibc 2.25 to build, falls back to /dev/random if unavailable.
262#CONFIG_GETRANDOM=y
263
de01710b
JM
264# Should we use poll instead of select? Select is used by default.
265#CONFIG_ELOOP_POLL=y
266
267# Should we use epoll instead of select? Select is used by default.
268#CONFIG_ELOOP_EPOLL=y
269
634e2e29
RM
270# Should we use kqueue instead of select? Select is used by default.
271#CONFIG_ELOOP_KQUEUE=y
272
5c47af9a
JM
273# Select TLS implementation
274# openssl = OpenSSL (default)
fd2f2d04 275# gnutls = GnuTLS
5c47af9a 276# internal = Internal TLSv1 implementation (experimental)
206516e8 277# linux = Linux kernel AF_ALG and internal TLSv1 implementation (experimental)
5c47af9a
JM
278# none = Empty template
279#CONFIG_TLS=openssl
280
5c47af9a
JM
281# TLS-based EAP methods require at least TLS v1.0. Newer version of TLS (v1.1)
282# can be enabled to get a stronger construction of messages when block ciphers
283# are used.
284#CONFIG_TLSV11=y
285
ca84eed7
JM
286# TLS-based EAP methods require at least TLS v1.0. Newer version of TLS (v1.2)
287# can be enabled to enable use of stronger crypto algorithms.
288#CONFIG_TLSV12=y
289
2b9891bd
BG
290# Select which ciphers to use by default with OpenSSL if the user does not
291# specify them.
292#CONFIG_TLS_DEFAULT_CIPHERS="DEFAULT:!EXP:!LOW"
293
5c47af9a
JM
294# If CONFIG_TLS=internal is used, additional library and include paths are
295# needed for LibTomMath. Alternatively, an integrated, minimal version of
296# LibTomMath can be used. See beginning of libtommath.c for details on benefits
297# and drawbacks of this option.
298#CONFIG_INTERNAL_LIBTOMMATH=y
299#ifndef CONFIG_INTERNAL_LIBTOMMATH
300#LTM_PATH=/usr/src/libtommath-0.39
301#CFLAGS += -I$(LTM_PATH)
302#LIBS += -L$(LTM_PATH)
303#LIBS_p += -L$(LTM_PATH)
304#endif
305# At the cost of about 4 kB of additional binary size, the internal LibTomMath
306# can be configured to include faster routines for exptmod, sqr, and div to
307# speed up DH and RSA calculation considerably
308#CONFIG_INTERNAL_LIBTOMMATH_FAST=y
b83e3e93
JM
309
310# Interworking (IEEE 802.11u)
311# This can be used to enable functionality to improve interworking with
312# external networks.
313#CONFIG_INTERWORKING=y
159c89ab
JK
314
315# Hotspot 2.0
316#CONFIG_HS20=y
597d5d1b 317
ee431d77 318# Enable SQLite database support in hlr_auc_gw, EAP-SIM DB, and eap_user_file
597d5d1b 319#CONFIG_SQLITE=y
c2aff6b1 320
8cf53ec9
AN
321# Enable Fast Session Transfer (FST)
322#CONFIG_FST=y
323
a8dab08a
AN
324# Enable CLI commands for FST testing
325#CONFIG_FST_TEST=y
326
c2aff6b1
JB
327# Testing options
328# This can be used to enable some testing options (see also the example
329# configuration file) that are really useful only for testing clients that
330# connect to this hostapd. These options allow, for example, to drop a
331# certain percentage of probe requests or auth/(re)assoc frames.
332#
333#CONFIG_TESTING_OPTIONS=y
50f4f2a0
MK
334
335# Automatic Channel Selection
336# This will allow hostapd to pick the channel automatically when channel is set
337# to "acs_survey" or "0". Eventually, other ACS algorithms can be added in
338# similar way.
339#
340# Automatic selection is currently only done through initialization, later on
341# we hope to do background checks to keep us moving to more ideal channels as
342# time goes by. ACS is currently only supported through the nl80211 driver and
343# your driver must have survey dump capability that is filled by the driver
344# during scanning.
345#
346# You can customize the ACS survey algorithm with the hostapd.conf variable
347# acs_num_scans.
348#
349# Supported ACS drivers:
350# * ath9k
351# * ath5k
352# * ath10k
353#
354# For more details refer to:
355# http://wireless.kernel.org/en/users/Documentation/acs
356#
357#CONFIG_ACS=y
fb9a1c3e
AS
358
359# Multiband Operation support
360# These extentions facilitate efficient use of multiple frequency bands
361# available to the AP and the devices that may associate with it.
362#CONFIG_MBO=y
04059ab8
DG
363
364# Client Taxonomy
365# Has the AP retain the Probe Request and (Re)Association Request frames from
366# a client, from which a signature can be produced which can identify the model
367# of client device like "Nexus 6P" or "iPhone 5s".
368#CONFIG_TAXONOMY=y
903ecbe8
JM
369
370# Fast Initial Link Setup (FILS) (IEEE 802.11ai)
903ecbe8 371#CONFIG_FILS=y
1764559e
JM
372# FILS shared key authentication with PFS
373#CONFIG_FILS_SK_PFS=y
c650f929
MK
374
375# Include internal line edit mode in hostapd_cli. This can be used to provide
376# limited command line editing and history support.
377#CONFIG_WPA_CLI_EDIT=y
61152384
JM
378
379# Opportunistic Wireless Encryption (OWE)
380# Experimental implementation of draft-harkins-owe-07.txt
381#CONFIG_OWE=y
6f234c1e 382
ef721751
THJ
383# Airtime policy support
384#CONFIG_AIRTIME_POLICY=y
385
6f234c1e
JM
386# Override default value for the wpa_disable_eapol_key_retries configuration
387# parameter. See that parameter in hostapd.conf for more details.
388#CFLAGS += -DDEFAULT_WPA_DISABLE_EAPOL_KEY_RETRIES=1