hostapd.config 2.3 KB

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