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