| 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 | # Driver interface for madwifi driver
|
|---|
| 19 | CONFIG_DRIVER_MADWIFI=y
|
|---|
| 20 | #CFLAGS += -I../head # change to reflect local setup; directory for madwifi src
|
|---|
| 21 |
|
|---|
| 22 | # Driver interface for Prism54 driver
|
|---|
| 23 | #CONFIG_DRIVER_PRISM54=y
|
|---|
| 24 |
|
|---|
| 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 |
|
|---|
| 30 | # IEEE 802.11F/IAPP
|
|---|
| 31 | CONFIG_IAPP=y
|
|---|
| 32 |
|
|---|
| 33 | # WPA2/IEEE 802.11i RSN pre-authentication
|
|---|
| 34 | CONFIG_RSN_PREAUTH=y
|
|---|
| 35 |
|
|---|
| 36 | # Integrated EAP authenticator
|
|---|
| 37 | CONFIG_EAP=y
|
|---|
| 38 |
|
|---|
| 39 | # EAP-MD5 for the integrated EAP authenticator
|
|---|
| 40 | CONFIG_EAP_MD5=y
|
|---|
| 41 |
|
|---|
| 42 | # EAP-TLS for the integrated EAP authenticator
|
|---|
| 43 | CONFIG_EAP_TLS=y
|
|---|
| 44 |
|
|---|
| 45 | # EAP-MSCHAPv2 for the integrated EAP authenticator
|
|---|
| 46 | CONFIG_EAP_MSCHAPV2=y
|
|---|
| 47 |
|
|---|
| 48 | # EAP-PEAP for the integrated EAP authenticator
|
|---|
| 49 | CONFIG_EAP_PEAP=y
|
|---|
| 50 |
|
|---|
| 51 | # EAP-PSK for the integrated EAP authenticator
|
|---|
| 52 | CONFIG_EAP_PSK=y
|
|---|
| 53 |
|
|---|
| 54 | # EAP-GTC for the integrated EAP authenticator
|
|---|
| 55 | CONFIG_EAP_GTC=y
|
|---|
| 56 |
|
|---|
| 57 | # EAP-TTLS for the integrated EAP authenticator
|
|---|
| 58 | CONFIG_EAP_TTLS=y
|
|---|
| 59 |
|
|---|
| 60 | # EAP-SIM for the integrated EAP authenticator
|
|---|
| 61 | #CONFIG_EAP_SIM=y
|
|---|
| 62 |
|
|---|
| 63 | # PKCS#12 (PFX) support (used to read private key and certificate file from
|
|---|
| 64 | # a file that usually has extension .p12 or .pfx)
|
|---|
| 65 | CONFIG_PKCS12=y
|
|---|
| 66 |
|
|---|
| 67 | # RADIUS authentication server. This provides access to the integrated EAP
|
|---|
| 68 | # authenticator from external hosts using RADIUS.
|
|---|
| 69 | #CONFIG_RADIUS_SERVER=y
|
|---|