lwIP
2.1.0
Lightweight IP stack
|
#define LWIP_SNMP 0 |
LWIP_SNMP==1: This enables the lwIP SNMP agent. UDP must be available for SNMP transport. If you want to use your own SNMP agent, leave this disabled. To integrate MIB2 of an external agent, you need to enable LWIP_MIB2_CALLBACKS and MIB2_STATS. This will give you the callbacks and statistics counters you need to get MIB2 working.
#define SNMP_COMMUNITY "public" |
The snmp read-access community. Used for write-access and traps, too unless SNMP_COMMUNITY_WRITE or SNMP_COMMUNITY_TRAP are enabled, respectively.
#define SNMP_COMMUNITY_TRAP "public" |
The snmp community used for sending traps.
#define SNMP_COMMUNITY_WRITE "private" |
The snmp write-access community. Set this community to "" in order to disallow any write access.
#define SNMP_DEBUG LWIP_DBG_OFF |
SNMP_DEBUG: Enable debugging for SNMP messages.
#define SNMP_DEVICE_ENTERPRISE_OID {1, 3, 6, 1, 4, 1, SNMP_LWIP_ENTERPRISE_OID} |
IANA assigned enterprise ID for lwIP is 26381
If you need to create your own private MIB you'll need to apply for your own enterprise ID with IANA: http://www.iana.org/numbers.html
#define SNMP_DEVICE_ENTERPRISE_OID_LEN 7 |
Length of SNMP_DEVICE_ENTERPRISE_OID
#define SNMP_LWIP_ENTERPRISE_OID 26381 |
The OID identifiying the device. This may be the enterprise OID itself or any OID located below it in tree.
#define SNMP_LWIP_GETBULK_MAX_REPETITIONS 0 |
This value is used to limit the repetitions processed in GetBulk requests (value == 0 means no limitation). This may be useful to limit the load for a single request. According to SNMP RFC 1905 it is allowed to not return all requested variables from a GetBulk request if system load would be too high. so the effect is that the client will do more requests to gather all data. For the stack this could be useful in case that SNMP processing is done in TCP/IP thread. In this situation a request with many repetitions could block the thread for a longer time. Setting limit here will keep the stack more responsive.
#define SNMP_LWIP_MIB2 LWIP_SNMP |
Indicates if the MIB2 implementation of LWIP SNMP stack is used.
#define SNMP_LWIP_MIB2_SYSCONTACT "" |
Value return for sysContact field of MIB2. To make sysContact field settable, call snmp_mib2_set_syscontact() to provide the necessary buffers.
#define SNMP_LWIP_MIB2_SYSDESC "lwIP" |
Value return for sysDesc field of MIB2.
#define SNMP_LWIP_MIB2_SYSLOCATION "" |
Value return for sysLocation field of MIB2. To make sysLocation field settable, call snmp_mib2_set_syslocation() to provide the necessary buffers.
#define SNMP_LWIP_MIB2_SYSNAME "FQDN-unk" |
Value return for sysName field of MIB2. To make sysName field settable, call snmp_mib2_set_sysname() to provide the necessary buffers.
#define SNMP_MAX_COMMUNITY_STR_LEN LWIP_MAX(LWIP_MAX(sizeof(SNMP_COMMUNITY), sizeof(SNMP_COMMUNITY_WRITE)), sizeof(SNMP_COMMUNITY_TRAP)) |
The maximum length of community string. If community names shall be adjusted at runtime via snmp_set_community() calls, enter here the possible maximum length (+1 for terminating null character).
#define SNMP_MAX_OBJ_ID_LEN 50 |
The maximum number of Sub ID's inside an object identifier. Indirectly this also limits the maximum depth of SNMP tree.
#define SNMP_MAX_OCTET_STRING_LEN 127 |
The maximum length of strings used.
#define SNMP_MAX_VALUE_SIZE LWIP_MAX(LWIP_MAX((SNMP_MAX_OCTET_STRING_LEN), sizeof(u32_t)*(SNMP_MAX_OBJ_ID_LEN)), SNMP_MIN_VALUE_SIZE) |
The maximum size of a value.
#define SNMP_MIB_DEBUG LWIP_DBG_OFF |
SNMP_MIB_DEBUG: Enable debugging for SNMP MIBs.
#define SNMP_MIN_VALUE_SIZE (2 * sizeof(u32_t*)) /* size required to store the basic types (8 bytes for counter64) */ |
The minimum size of a value.
#define SNMP_SAFE_REQUESTS 1 |
Only allow SNMP write actions that are 'safe' (e.g. disabling netifs is not a safe action and disabled when SNMP_SAFE_REQUESTS = 1). Unsafe requests are disabled by default!
#define SNMP_STACK_SIZE DEFAULT_THREAD_STACKSIZE |
SNMP_STACK_SIZE: Stack size of SNMP netconn worker thread
#define SNMP_THREAD_PRIO DEFAULT_THREAD_PRIO |
SNMP_THREAD_PRIO: SNMP netconn worker thread priority
#define SNMP_TRAP_DESTINATIONS 1 |
SNMP_TRAP_DESTINATIONS: Number of trap destinations. At least one trap destination is required
#define SNMP_USE_NETCONN 0 |
SNMP_USE_NETCONN: Use netconn API instead of raw API. Makes SNMP agent run in a worker thread, so blocking operations can be done in MIB calls.
#define SNMP_USE_RAW 1 |
SNMP_USE_RAW: Use raw API. SNMP agent does not run in a worker thread, so blocking operations should not be done in MIB calls.