STD_BASED_SNMP_SECURITY_MODEL Enumeration
C
typedef enum {
ANY_SECUTIRY_MODEL = 0x00,
SNMPV1_SECURITY_MODEL = 0X01,
SNMPV2C_SECURITY_MODEL = 0X02,
SNMPV3_USM_SECURITY_MODEL = 0X03
} STD_BASED_SNMP_SECURITY_MODEL;
Description
Enumeration: STD_BASED_SNMP_SECURITY_MODEL.
SNMP Security subsystem is applied to the transmission and reception of messages and to the processing of the contents of messages.
- The zero value does not identify any particular security model.
- Values between 1 and 255, inclusive, are reserved for standards-track Security Models and are managed by the Internet Assigned Numbers Authority (IANA).
- Values greater than 255 are allocated to enterprise-specific Security Models. An enterprise specific securityModel value is defined to be: enterpriseID * 256 + security model within enterprise.
Members
Members | Description |
---|---|
ANY_SECUTIRY_MODEL = 0x00 | Security Model Reserved for ANY. |
SNMPV1_SECURITY_MODEL = 0X01 | Security Model reserved fro SNMP version 1. |
SNMPV2C_SECURITY_MODEL = 0X02 | Community Security Model reserved for SNMP version 2. |
SNMPV3_USM_SECURITY_MODEL = 0X03 | User based security model reserved for SNMP version 3. |
Remarks
None.