Config.in 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. config BR2_PACKAGE_NETSNMP
  2. bool "netsnmp"
  3. depends on BR2_USE_MMU # fork()
  4. help
  5. Suite of applications used to implement SNMP v1, SNMP v2c, and
  6. SNMP v3 using both IPv4 and IPv6.
  7. http://net-snmp.sourceforge.net/
  8. if BR2_PACKAGE_NETSNMP
  9. config BR2_PACKAGE_NETSNMP_SERVER
  10. bool "server"
  11. default y
  12. help
  13. The snmpd server.
  14. config BR2_PACKAGE_NETSNMP_CLIENTS
  15. bool "clients"
  16. default y
  17. help
  18. The net-snmp clients (snmpget, snmpwalk, etc).
  19. config BR2_PACKAGE_NETSNMP_ENABLE_MIBS
  20. bool "Install MIB files on target and enable MIB loading code"
  21. default y
  22. help
  23. The net-snmp package contains a selection of MIB files.
  24. Say yes if you want those MIB files installed on the target
  25. and enable the code that parses the MIB files.
  26. config BR2_PACKAGE_NETSNMP_WITH_MIB_MODULES
  27. string "Build with these MIB modules"
  28. default "host ucd-snmp/dlmod agentx" if !BR2_STATIC_LIBS
  29. default "host agentx" if BR2_STATIC_LIBS
  30. help
  31. Specify which MIB modules to include.
  32. config BR2_PACKAGE_NETSNMP_WITHOUT_MIB_MODULES
  33. string "Build without these MIB modules"
  34. default "disman/event disman/schedule utilities"
  35. help
  36. Specify which MIB modules to exclude.
  37. config BR2_PACKAGE_NETSNMP_ENABLE_DEBUGGING
  38. bool "Enable debugging code"
  39. help
  40. By default net-snmp is compiled without debugging support
  41. (--disable-debugging). Enable this options if you need
  42. debugging support, including the ability to log with
  43. DEBUGMSG(), DEBUGMSGTL() and companion macros.
  44. config BR2_PACKAGE_NETSNMP_OPENSSL_INTERNAL
  45. bool "Enable minimal internal OpenSSL code"
  46. depends on !BR2_PACKAGE_OPENSSL
  47. help
  48. Enable a minimal internal copy of OpenSSL usable for USM
  49. security. It will not enable the usage of SNMP over (D)TLS.
  50. endif