Macros | |
#define | LWIP_SNMP 0 |
LWIP_SNMP==1: This enables the lwIP SNMP agent. More... | |
#define | SNMP_USE_NETCONN 0 |
SNMP_USE_NETCONN: Use netconn API instead of raw API. More... | |
#define | SNMP_USE_RAW 1 |
SNMP_USE_RAW: Use raw API. More... | |
#define | SNMP_TRAP_DESTINATIONS 1 |
SNMP_TRAP_DESTINATIONS: Number of trap destinations. More... | |
#define | SNMP_SAFE_REQUESTS 1 |
Only allow SNMP write actions that are 'safe' (e.g. More... | |
#define | SNMP_MAX_OCTET_STRING_LEN 127 |
The maximum length of strings used. More... | |
#define | SNMP_MAX_OBJ_ID_LEN 50 |
The maximum number of Sub ID's inside an object identifier. More... | |
#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. More... | |
#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. More... | |
#define | SNMP_COMMUNITY "public" |
The snmp read-access community. More... | |
#define | SNMP_COMMUNITY_WRITE "private" |
The snmp write-access community. More... | |
#define | SNMP_COMMUNITY_TRAP "public" |
The snmp community used for sending traps. More... | |
#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. More... | |
#define | SNMP_LWIP_ENTERPRISE_OID 26381 |
The OID identifiying the device. More... | |
#define | SNMP_DEVICE_ENTERPRISE_OID {1, 3, 6, 1, 4, 1, SNMP_LWIP_ENTERPRISE_OID} |
IANA assigned enterprise ID for lwIP is 26381. More... | |
#define | SNMP_DEVICE_ENTERPRISE_OID_LEN 7 |
Length of SNMP_DEVICE_ENTERPRISE_OID. More... | |
#define | SNMP_DEBUG LWIP_DBG_OFF |
SNMP_DEBUG: Enable debugging for SNMP messages. More... | |
#define | SNMP_MIB_DEBUG LWIP_DBG_OFF |
SNMP_MIB_DEBUG: Enable debugging for SNMP MIBs. More... | |
#define | SNMP_LWIP_MIB2 LWIP_SNMP |
Indicates if the MIB2 implementation of LWIP SNMP stack is used. More... | |
#define | SNMP_LWIP_MIB2_SYSDESC "lwIP" |
Value return for sysDesc field of MIB2. More... | |
#define | SNMP_LWIP_MIB2_SYSNAME "FQDN-unk" |
Value return for sysName field of MIB2. More... | |
#define | SNMP_LWIP_MIB2_SYSCONTACT "" |
Value return for sysContact field of MIB2. More... | |
#define | SNMP_LWIP_MIB2_SYSLOCATION "" |
Value return for sysLocation field of MIB2. More... | |
#define | SNMP_LWIP_GETBULK_MAX_REPETITIONS 0 |
This value is used to limit the repetitions processed in GetBulk requests (value == 0 means no limitation). More... | |
#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.
Definition at line 57 of file snmp_opts.h.
#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.
Definition at line 150 of file snmp_opts.h.
#define SNMP_COMMUNITY_TRAP "public" |
The snmp community used for sending traps.
Definition at line 165 of file snmp_opts.h.
#define SNMP_COMMUNITY_WRITE "private" |
The snmp write-access community.
Set this community to "" in order to disallow any write access.
Definition at line 158 of file snmp_opts.h.
#define SNMP_DEBUG LWIP_DBG_OFF |
SNMP_DEBUG: Enable debugging for SNMP messages.
Definition at line 206 of file snmp_opts.h.
#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
Definition at line 195 of file snmp_opts.h.
#define SNMP_DEVICE_ENTERPRISE_OID_LEN 7 |
Length of SNMP_DEVICE_ENTERPRISE_OID.
Definition at line 199 of file snmp_opts.h.
#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.
Definition at line 181 of file snmp_opts.h.
#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.
Definition at line 263 of file snmp_opts.h.
#define SNMP_LWIP_MIB2 LWIP_SNMP |
Indicates if the MIB2 implementation of LWIP SNMP stack is used.
Definition at line 220 of file snmp_opts.h.
#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.
Definition at line 243 of file snmp_opts.h.
#define SNMP_LWIP_MIB2_SYSDESC "lwIP" |
Value return for sysDesc field of MIB2.
Definition at line 227 of file snmp_opts.h.
#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.
Definition at line 251 of file snmp_opts.h.
#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.
Definition at line 235 of file snmp_opts.h.
#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).
Definition at line 174 of file snmp_opts.h.
#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.
Definition at line 131 of file snmp_opts.h.
#define SNMP_MAX_OCTET_STRING_LEN 127 |
The maximum length of strings used.
Definition at line 123 of file snmp_opts.h.
#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.
Definition at line 142 of file snmp_opts.h.
#define SNMP_MIB_DEBUG LWIP_DBG_OFF |
SNMP_MIB_DEBUG: Enable debugging for SNMP MIBs.
Definition at line 213 of file snmp_opts.h.
#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.
Definition at line 138 of file snmp_opts.h.
#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!
Definition at line 116 of file snmp_opts.h.
#define SNMP_TRAP_DESTINATIONS 1 |
SNMP_TRAP_DESTINATIONS: Number of trap destinations.
At least one trap destination is required
Definition at line 107 of file snmp_opts.h.
#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.
Definition at line 66 of file snmp_opts.h.
#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.
Definition at line 75 of file snmp_opts.h.