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