default.config 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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 drivers using the nl80211 kernel interface
  21. CONFIG_DRIVER_NL80211=y
  22. # driver_nl80211.c requires a rather new libnl, probably not
  23. # shipped with your distribution yet
  24. #LIBNL=/usr/src/libnl
  25. #CFLAGS += -I$(LIBNL)/include
  26. #LIBS += -L$(LIBNL)/lib
  27. # Driver interface for drivers using Devicescape IEEE 802.11 stack
  28. #CONFIG_DRIVER_DEVICESCAPE=y
  29. # Currently, driver_devicescape.c build requires some additional parameters
  30. # to be able to include some of the kernel header files. Following lines can
  31. # be used to set these (WIRELESS_DEV must point to the root directory of the
  32. # wireless-dev.git tree).
  33. #WIRELESS_DEV=/usr/src/wireless-dev
  34. #CFLAGS += -I$(WIRELESS_DEV)/net/mac80211
  35. # driver_devicescape.c requires a rather new libnl, probably not
  36. # shipped with your distribution yet
  37. #LIBNL=/usr/src/libnl
  38. #CFLAGS += -I$(LIBNL)/include
  39. #LIBS += -L$(LIBNL)/lib
  40. # Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
  41. #CONFIG_DRIVER_BSD=y
  42. #CFLAGS += -I/usr/local/include
  43. #LIBS += -L/usr/local/lib
  44. # IEEE 802.11F/IAPP
  45. CONFIG_IAPP=y
  46. # WPA2/IEEE 802.11i RSN pre-authentication
  47. CONFIG_RSN_PREAUTH=y
  48. # PeerKey handshake for Station to Station Link (IEEE 802.11e DLS)
  49. CONFIG_PEERKEY=y
  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. # Integrated EAP server
  56. CONFIG_EAP=y
  57. # EAP-MD5 for the integrated EAP server
  58. CONFIG_EAP_MD5=y
  59. # EAP-TLS for the integrated EAP server
  60. CONFIG_EAP_TLS=y
  61. # EAP-MSCHAPv2 for the integrated EAP server
  62. CONFIG_EAP_MSCHAPV2=y
  63. # EAP-PEAP for the integrated EAP server
  64. CONFIG_EAP_PEAP=y
  65. # EAP-GTC for the integrated EAP server
  66. CONFIG_EAP_GTC=y
  67. # EAP-TTLS for the integrated EAP server
  68. CONFIG_EAP_TTLS=y
  69. # EAP-SIM for the integrated EAP server
  70. #CONFIG_EAP_SIM=y
  71. # EAP-AKA for the integrated EAP server
  72. #CONFIG_EAP_AKA=y
  73. # EAP-PAX for the integrated EAP server
  74. #CONFIG_EAP_PAX=y
  75. # EAP-PSK for the integrated EAP server (this is _not_ needed for WPA-PSK)
  76. #CONFIG_EAP_PSK=y
  77. # EAP-SAKE for the integrated EAP server
  78. #CONFIG_EAP_SAKE=y
  79. # EAP-GPSK for the integrated EAP server
  80. #CONFIG_EAP_GPSK=y
  81. # Include support for optional SHA256 cipher suite in EAP-GPSK
  82. #CONFIG_EAP_GPSK_SHA256=y
  83. # EAP-FAST for the integrated EAP server
  84. # Note: Default OpenSSL package does not include support for all the
  85. # functionality needed for EAP-FAST. If EAP-FAST is enabled with OpenSSL,
  86. # the OpenSSL library must be patched (openssl-0.9.9-session-ticket.patch)
  87. # to add the needed functions.
  88. #CONFIG_EAP_FAST=y
  89. # PKCS#12 (PFX) support (used to read private key and certificate file from
  90. # a file that usually has extension .p12 or .pfx)
  91. CONFIG_PKCS12=y
  92. # RADIUS authentication server. This provides access to the integrated EAP
  93. # server from external hosts using RADIUS.
  94. #CONFIG_RADIUS_SERVER=y
  95. # Build IPv6 support for RADIUS operations
  96. CONFIG_IPV6=y
  97. # IEEE 802.11r/D4.1 (Fast BSS Transition)
  98. # This enables an experimental implementation of a draft version of
  99. # IEEE 802.11r. This draft is still subject to change, so it should be noted
  100. # that this version may not comply with the final standard.
  101. #CONFIG_IEEE80211R=y