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