source: freewrt/package/hostapd/files/hostapd-mini.config@ 37caad0e

freewrt_2_0
Last change on this file since 37caad0e was 37caad0e, checked in by Waldemar Brodkorb <wbx@…>, 4 months ago

hostapd: disable accounting and radius

  • Property mode set to 100644
File size: 2.1 KB
Line 
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
14CONFIG_DRIVER_NL80211=y
15
16CONFIG_TLS=internal
17
18CONFIG_CRYPTO=internal
19
20CONFIG_LIBNL32=y
21
22CONFIG_INTERNAL_LIBTOMMATH=y
23
24# Driver interface for wired authenticator
25#CONFIG_DRIVER_WIRED=y
26
27# Driver interface for madwifi driver
28# CONFIG_DRIVER_MADWIFI=y
29#CFLAGS += -I../head # change to reflect local setup; directory for madwifi src
30
31# Driver interface for Prism54 driver
32#CONFIG_DRIVER_PRISM54=y
33
34# Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
35#CONFIG_DRIVER_BSD=y
36#CFLAGS += -I/usr/local/include
37#LIBS += -L/usr/local/lib
38
39# IEEE 802.11F/IAPP
40#CONFIG_IAPP=y
41
42# WPA2/IEEE 802.11i RSN pre-authentication
43CONFIG_RSN_PREAUTH=y
44
45# Integrated EAP authenticator
46#CONFIG_EAP=y
47
48# EAP-MD5 for the integrated EAP authenticator
49#CONFIG_EAP_MD5=y
50
51# EAP-TLS for the integrated EAP authenticator
52#CONFIG_EAP_TLS=y
53
54# EAP-MSCHAPv2 for the integrated EAP authenticator
55#CONFIG_EAP_MSCHAPV2=y
56
57# EAP-PEAP for the integrated EAP authenticator
58#CONFIG_EAP_PEAP=y
59
60# EAP-PSK for the integrated EAP authenticator
61#CONFIG_EAP_PSK=y
62
63# EAP-GTC for the integrated EAP authenticator
64#CONFIG_EAP_GTC=y
65
66# EAP-TTLS for the integrated EAP authenticator
67#CONFIG_EAP_TTLS=y
68
69# EAP-SIM for the integrated EAP authenticator
70#CONFIG_EAP_SIM=y
71
72# PKCS#12 (PFX) support (used to read private key and certificate file from
73# a file that usually has extension .p12 or .pfx)
74#CONFIG_PKCS12=y
75
76# RADIUS authentication server. This provides access to the integrated EAP
77# authenticator from external hosts using RADIUS.
78CONFIG_NO_ACCOUNTING=y
79CONFIG_NO_RADIUS=y
Note: See TracBrowser for help on using the repository browser.