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