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
18 # Driver interface for madwifi driver
19 CONFIG_DRIVER_MADWIFI=y
20 #CFLAGS += -I../head # change to reflect local setup; directory for madwifi src
22 # Driver interface for Prism54 driver
23 #CONFIG_DRIVER_PRISM54=y
25 # Driver interface for drivers using Devicescape IEEE 802.11 stack
26 #CONFIG_DRIVER_DEVICESCAPE=y
27 # Currently, driver_devicescape.c build requires some additional parameters
28 # to be able to include some of the kernel header files. Following lines can
29 # be used to set these (WIRELESS_DEV must point to the root directory of the
30 # wireless-dev.git tree).
31 #WIRELESS_DEV=/usr/src/wireless-dev
32 #CFLAGS += -I$(WIRELESS_DEV)/net/mac80211
33 # driver_devicescape.c requires a rather new libnl, probably not
34 # shipped with your distribution yet
36 #CFLAGS += -I$(LIBNL)/include
37 #LIBS += -L$(LIBNL)/lib
39 # Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
41 #CFLAGS += -I/usr/local/include
42 #LIBS += -L/usr/local/lib
47 # WPA2/IEEE 802.11i RSN pre-authentication
50 # PeerKey handshake for Station to Station Link (IEEE 802.11e DLS)
53 # IEEE 802.11w (management frame protection)
54 # This version is an experimental implementation based on IEEE 802.11w/D1.0
55 # draft and is subject to change since the standard has not yet been finalized.
56 # Driver support is also needed for IEEE 802.11w.
59 # Integrated EAP server
62 # EAP-MD5 for the integrated EAP server
65 # EAP-TLS for the integrated EAP server
68 # EAP-MSCHAPv2 for the integrated EAP server
71 # EAP-PEAP for the integrated EAP server
74 # EAP-GTC for the integrated EAP server
77 # EAP-TTLS for the integrated EAP server
80 # EAP-SIM for the integrated EAP server
83 # EAP-AKA for the integrated EAP server
86 # EAP-PAX for the integrated EAP server
89 # EAP-PSK for the integrated EAP server (this is _not_ needed for WPA-PSK)
92 # EAP-SAKE for the integrated EAP server
95 # EAP-GPSK for the integrated EAP server
97 # Include support for optional SHA256 cipher suite in EAP-GPSK
98 #CONFIG_EAP_GPSK_SHA256=y
100 # EAP-FAST for the integrated EAP server
101 # Note: Default OpenSSL package does not include support for all the
102 # functionality needed for EAP-FAST. If EAP-FAST is enabled with OpenSSL,
103 # the OpenSSL library must be patched (openssl-0.9.9-session-ticket.patch)
104 # to add the needed functions.
107 # PKCS#12 (PFX) support (used to read private key and certificate file from
108 # a file that usually has extension .p12 or .pfx)
111 # RADIUS authentication server. This provides access to the integrated EAP
112 # server from external hosts using RADIUS.
113 #CONFIG_RADIUS_SERVER=y
115 # Build IPv6 support for RADIUS operations
118 # IEEE 802.11r/D4.1 (Fast BSS Transition)
119 # This enables an experimental implementation of a draft version of
120 # IEEE 802.11r. This draft is still subject to change, so it should be noted
121 # that this version may not comply with the final standard.