Add support for HS20 and fix disable_dgaf bug in hostapd
[lede.git] / package / network / services / hostapd / files / hostapd-full.config
1 # 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
13 #CONFIG_DRIVER_HOSTAP=y
14
15 # Driver interface for wired authenticator
16 CONFIG_DRIVER_WIRED=y
17
18 # Turn on HS20 support
19 CONFIG_HS20=y
20
21 # Driver interface for Prism54 driver
22 #CONFIG_DRIVER_PRISM54=y
23
24 # Driver interface for drivers using the nl80211 kernel interface
25 CONFIG_DRIVER_NL80211=y
26 # driver_nl80211.c requires a rather new libnl (version 1.1) which may not be
27 # shipped with your distribution yet. If that is the case, you need to build
28 # newer libnl version and point the hostapd build to use it.
29 #LIBNL=/usr/src/libnl
30 #CFLAGS += -I$(LIBNL)/include
31 #LIBS += -L$(LIBNL)/lib
32
33 # Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
34 #CONFIG_DRIVER_BSD=y
35 #CFLAGS += -I/usr/local/include
36 #LIBS += -L/usr/local/lib
37
38 # Driver interface for no driver (e.g., RADIUS server only)
39 #CONFIG_DRIVER_NONE=y
40
41 # IEEE 802.11F/IAPP
42 CONFIG_IAPP=y
43
44 # WPA2/IEEE 802.11i RSN pre-authentication
45 CONFIG_RSN_PREAUTH=y
46
47 # PeerKey handshake for Station to Station Link (IEEE 802.11e DLS)
48 CONFIG_PEERKEY=y
49
50 # IEEE 802.11w (management frame protection)
51 # This version is an experimental implementation based on IEEE 802.11w/D1.0
52 # draft and is subject to change since the standard has not yet been finalized.
53 # Driver support is also needed for IEEE 802.11w.
54 #CONFIG_IEEE80211W=y
55
56 # Integrated EAP server
57 CONFIG_EAP=y
58
59 # EAP-FAST for the integrated EAP server
60 CONFIG_EAP_FAST=y
61
62 # EAP-MD5 for the integrated EAP server
63 CONFIG_EAP_MD5=y
64
65 # EAP-TLS for the integrated EAP server
66 CONFIG_EAP_TLS=y
67
68 # EAP-MSCHAPv2 for the integrated EAP server
69 CONFIG_EAP_MSCHAPV2=y
70
71 # EAP-PEAP for the integrated EAP server
72 CONFIG_EAP_PEAP=y
73
74 # EAP-GTC for the integrated EAP server
75 CONFIG_EAP_GTC=y
76
77 # EAP-TTLS for the integrated EAP server
78 CONFIG_EAP_TTLS=y
79
80 # EAP-SIM for the integrated EAP server
81 #CONFIG_EAP_SIM=y
82
83 # EAP-AKA for the integrated EAP server
84 #CONFIG_EAP_AKA=y
85
86 # EAP-AKA' for the integrated EAP server
87 # This requires CONFIG_EAP_AKA to be enabled, too.
88 #CONFIG_EAP_AKA_PRIME=y
89
90 # EAP-PAX for the integrated EAP server
91 #CONFIG_EAP_PAX=y
92
93 # EAP-PSK for the integrated EAP server (this is _not_ needed for WPA-PSK)
94 #CONFIG_EAP_PSK=y
95
96 # EAP-SAKE for the integrated EAP server
97 #CONFIG_EAP_SAKE=y
98
99 # EAP-GPSK for the integrated EAP server
100 #CONFIG_EAP_GPSK=y
101 # Include support for optional SHA256 cipher suite in EAP-GPSK
102 #CONFIG_EAP_GPSK_SHA256=y
103
104 # EAP-FAST for the integrated EAP server
105 # Note: Default OpenSSL package does not include support for all the
106 # functionality needed for EAP-FAST. If EAP-FAST is enabled with OpenSSL,
107 # the OpenSSL library must be patched (openssl-0.9.9-session-ticket.patch)
108 # to add the needed functions.
109 #CONFIG_EAP_FAST=y
110
111 # Wi-Fi Protected Setup (WPS)
112 CONFIG_WPS=y
113 CONFIG_WPS2=y
114 # Enable UPnP support for external WPS Registrars
115 #CONFIG_WPS_UPNP=y
116
117 # EAP-IKEv2
118 #CONFIG_EAP_IKEV2=y
119
120 # Trusted Network Connect (EAP-TNC)
121 #CONFIG_EAP_TNC=y
122
123 # PKCS#12 (PFX) support (used to read private key and certificate file from
124 # a file that usually has extension .p12 or .pfx)
125 CONFIG_PKCS12=y
126
127 # RADIUS authentication server. This provides access to the integrated EAP
128 # server from external hosts using RADIUS.
129 #CONFIG_RADIUS_SERVER=y
130
131 # Build IPv6 support for RADIUS operations
132 CONFIG_IPV6=y
133
134 # IEEE Std 802.11r-2008 (Fast BSS Transition)
135 CONFIG_IEEE80211R=y
136
137 # Use the hostapd's IEEE 802.11 authentication (ACL), but without
138 # the IEEE 802.11 Management capability (e.g. FreeBSD/net80211)
139 #CONFIG_DRIVER_RADIUS_ACL=y
140
141 # IEEE 802.11n (High Throughput) support
142 CONFIG_IEEE80211N=y
143
144 # IEEE 802.11ac (Very High Throughput) support
145 CONFIG_IEEE80211AC=y
146
147 # Remove debugging code that is printing out debug messages to stdout.
148 # This can be used to reduce the size of the hostapd considerably if debugging
149 # code is not needed.
150 #CONFIG_NO_STDOUT_DEBUG=y
151
152 # Send debug messages to syslog instead of stdout
153 CONFIG_DEBUG_SYSLOG=y
154
155 # Remove support for RADIUS accounting
156 #CONFIG_NO_ACCOUNTING=y
157
158 # Remove support for RADIUS
159 #CONFIG_NO_RADIUS=y
160
161 # Remove support for VLANs
162 #CONFIG_NO_VLAN=y
163
164 CONFIG_TLS=internal
165 CONFIG_INTERNAL_LIBTOMMATH=y
166 CONFIG_INTERNAL_AES=y
167 NEED_AES_DEC=y
168
169 CONFIG_NO_RANDOM_POOL=y
170 CONFIG_NO_DUMP_STATE=y
171
172 CONFIG_WPS=y
173 CONFIG_FULL_DYNAMIC_VLAN=y
174
175 CONFIG_UBUS=y