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