mini.config 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. # Driver interface for Host AP driver
  12. CONFIG_DRIVER_HOSTAP=y
  13. # Driver interface for wired authenticator
  14. #CONFIG_DRIVER_WIRED=y
  15. # Driver interface for madwifi driver
  16. CONFIG_DRIVER_MADWIFI=y
  17. #CFLAGS += -I../head # change to reflect local setup; directory for madwifi src
  18. # Driver interface for Prism54 driver
  19. #CONFIG_DRIVER_PRISM54=y
  20. # Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
  21. #CONFIG_DRIVER_BSD=y
  22. #CFLAGS += -I/usr/local/include
  23. #LIBS += -L/usr/local/lib
  24. # IEEE 802.11F/IAPP
  25. CONFIG_IAPP=y
  26. # WPA2/IEEE 802.11i RSN pre-authentication
  27. CONFIG_RSN_PREAUTH=y
  28. # Integrated EAP authenticator
  29. CONFIG_EAP=y
  30. # EAP-MD5 for the integrated EAP authenticator
  31. #CONFIG_EAP_MD5=y
  32. # EAP-TLS for the integrated EAP authenticator
  33. #CONFIG_EAP_TLS=y
  34. # EAP-MSCHAPv2 for the integrated EAP authenticator
  35. #CONFIG_EAP_MSCHAPV2=y
  36. # EAP-PEAP for the integrated EAP authenticator
  37. #CONFIG_EAP_PEAP=y
  38. # EAP-PSK for the integrated EAP authenticator
  39. CONFIG_EAP_PSK=y
  40. # EAP-GTC for the integrated EAP authenticator
  41. #CONFIG_EAP_GTC=y
  42. # EAP-TTLS for the integrated EAP authenticator
  43. #CONFIG_EAP_TTLS=y
  44. # EAP-SIM for the integrated EAP authenticator
  45. #CONFIG_EAP_SIM=y
  46. # PKCS#12 (PFX) support (used to read private key and certificate file from
  47. # a file that usually has extension .p12 or .pfx)
  48. #CONFIG_PKCS12=y
  49. # RADIUS authentication server. This provides access to the integrated EAP
  50. # authenticator from external hosts using RADIUS.
  51. #CONFIG_RADIUS_SERVER=y