1 # Example hostapd build time configuration
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.
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.
12 # Driver interface for Host AP driver
13 CONFIG_DRIVER_HOSTAP=y
15 # Driver interface for wired authenticator
16 #CONFIG_DRIVER_WIRED=y
18 # Driver interface for madwifi driver
19 #CONFIG_DRIVER_MADWIFI=y
20 #CFLAGS += -I../../madwifi # change to the madwifi source directory
22 # Driver interface for drivers using the nl80211 kernel interface
23 #CONFIG_DRIVER_NL80211=y
24 # driver_nl80211.c requires a rather new libnl (version 1.1) which may not be
25 # shipped with your distribution yet. If that is the case, you need to build
26 # newer libnl version and point the hostapd build to use it.
28 #CFLAGS += -I$(LIBNL)/include
29 #LIBS += -L$(LIBNL)/lib
31 # Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
33 #CFLAGS += -I/usr/local/include
34 #LIBS += -L/usr/local/lib
36 # Driver interface for no driver (e.g., RADIUS server only)
42 # WPA2/IEEE 802.11i RSN pre-authentication
45 # PeerKey handshake for Station to Station Link (IEEE 802.11e DLS)
48 # IEEE 802.11w (management frame protection)
49 # This version is an experimental implementation based on IEEE 802.11w/D1.0
50 # draft and is subject to change since the standard has not yet been finalized.
51 # Driver support is also needed for IEEE 802.11w.
54 # Integrated EAP server
57 # EAP-MD5 for the integrated EAP server
60 # EAP-TLS for the integrated EAP server
63 # EAP-MSCHAPv2 for the integrated EAP server
66 # EAP-PEAP for the integrated EAP server
69 # EAP-GTC for the integrated EAP server
72 # EAP-TTLS for the integrated EAP server
75 # EAP-SIM for the integrated EAP server
78 # EAP-AKA for the integrated EAP server
81 # EAP-AKA' for the integrated EAP server
82 # This requires CONFIG_EAP_AKA to be enabled, too.
83 #CONFIG_EAP_AKA_PRIME=y
85 # EAP-PAX for the integrated EAP server
88 # EAP-PSK for the integrated EAP server (this is _not_ needed for WPA-PSK)
91 # EAP-SAKE for the integrated EAP server
94 # EAP-GPSK for the integrated EAP server
96 # Include support for optional SHA256 cipher suite in EAP-GPSK
97 #CONFIG_EAP_GPSK_SHA256=y
99 # EAP-FAST for the integrated EAP server
100 # Note: Default OpenSSL package does not include support for all the
101 # functionality needed for EAP-FAST. If EAP-FAST is enabled with OpenSSL,
102 # the OpenSSL library must be patched (openssl-0.9.9-session-ticket.patch)
103 # to add the needed functions.
106 # Wi-Fi Protected Setup (WPS)
108 # Enable UPnP support for external WPS Registrars
114 # Trusted Network Connect (EAP-TNC)
117 # PKCS#12 (PFX) support (used to read private key and certificate file from
118 # a file that usually has extension .p12 or .pfx)
121 # RADIUS authentication server. This provides access to the integrated EAP
122 # server from external hosts using RADIUS.
123 #CONFIG_RADIUS_SERVER=y
125 # Build IPv6 support for RADIUS operations
128 # IEEE Std 802.11r-2008 (Fast BSS Transition)
131 # Use the hostapd's IEEE 802.11 authentication (ACL), but without
132 # the IEEE 802.11 Management capability (e.g., madwifi or FreeBSD/net80211)
133 #CONFIG_DRIVER_RADIUS_ACL=y
135 # IEEE 802.11n (High Throughput) support
138 # Remove debugging code that is printing out debug messages to stdout.
139 # This can be used to reduce the size of the hostapd considerably if debugging
140 # code is not needed.
141 #CONFIG_NO_STDOUT_DEBUG=y
143 # Remove support for RADIUS accounting
144 #CONFIG_NO_ACCOUNTING=y
146 # Remove support for RADIUS
149 # Remove support for VLANs
152 # Remove support for dumping state into a file on SIGUSR1 signal
153 # This can be used to reduce binary size at the cost of disabling a debugging
155 #CONFIG_NO_DUMP_STATE=y
157 # Enable tracing code for developer debugging
158 # This tracks use of memory allocations and other registrations and reports
159 # incorrect use with a backtrace of call (or allocation) location.
162 # Use libbfd to get more details for developer debugging
163 # This enables use of libbfd to get more detailed symbols for the backtraces
164 # generated by CONFIG_WPA_TRACE=y.
165 #CONFIG_WPA_TRACE_BFD=y