Fields Summary |
---|
public static final int | noAuthNoPrivSecurity level. No authentication, no privacy. Value is 0, as
defined in RFC 2572. |
public static final int | authNoPrivSecurity level. Authentication, no privacy. Value is 1, as
defined in RFC 2572. |
public static final int | authPrivSecurity level. Authentication, privacy. Value is 3, as defined
in RFC 2572. |
public static final int | reportableFlagFlag that indicates that a report is to be sent. Value is 4, as
defined in RFC 2572. |
public static final int | authMaskMask used to isolate authentication information within a message flag. |
public static final int | privMaskMask used to isolate privacy information within a message flag. |
public static final int | authPrivMaskMask used to isolate authentication and privacy information within a message flag. |
public static final int | CtxtConsFlagASN.1 prefix for encoding PDU types. |
public static final byte | snmpVersionOneRepresents the SNMP protocol version: SnmpV1 . |
public static final byte | snmpVersionTwoRepresents the SNMP protocol version: SnmpV2 . |
public static final byte | snmpVersionThreeRepresents the SNMP protocol version: SnmpV3 . |
public static final int | pduGetRequestPduRepresents a GetRequest PDU type (V1 or V2). |
public static final int | pduGetNextRequestPduRepresents a GetNextRequest PDU type (V1 or V2). |
public static final int | pduGetResponsePduRepresents a GetResponse PDU type (V1 or V2). |
public static final int | pduSetRequestPduRepresents a SetRequest PDU type (V1 or V2). |
public static final int | pduGetBulkRequestPduRepresents a GetBulkRequest PDU type (V2 only). |
public static final int | pduWalkRequestRepresents a Walk request.
A walk uses the getNext request to "walk" through a given MIB. |
public static final int | pduV1TrapPduRepresents a V1Trap PDU type (V1 only). |
public static final int | pduV2TrapPduRepresents a V2Trap PDU type (V2 only). |
public static final int | pduInformRequestPduRepresents an InformRequest PDU type (V2 only). |
public static final int | pduReportPduRepresents a Report PDU type (V2 only). |
public static final int | trapColdStartCode as defined in RFC 1157 for generic trap info in Trap-PDU: coldStart . |
public static final int | trapWarmStartCode as defined in RFC 1157 for generic trap info in Trap-PDU: warmStart . |
public static final int | trapLinkDownCode as defined in RFC 1157 for generic trap info in Trap-PDU: linkDown . |
public static final int | trapLinkUpCode as defined in RFC 1157 for generic trap info in Trap-PDU: linkUp . |
public static final int | trapAuthenticationFailureCode as defined in RFC 1157 for generic trap info in Trap-PDU: authenticationFailure . |
public static final int | trapEgpNeighborLossCode as defined in RFC 1157 for generic trap info in Trap-PDU: egpNeighborLoss . |
public static final int | trapEnterpriseSpecificCode as defined in RFC 1157 for generic trap info in Trap-PDU: enterpriseSpecific . |
public static final int | snmpRspNoErrorError code as defined in RFC 1448 for: noError . |
public static final int | snmpRspTooBigError code as defined in RFC 1448 for: tooBig . |
public static final int | snmpRspNoSuchNameError code as defined in RFC 1448 for: noSuchName . |
public static final int | snmpRspBadValueError code as defined in RFC 1448 for: badValue . |
public static final int | snmpRspReadOnlyError code as defined in RFC 1448 for: readOnly . |
public static final int | snmpRspGenErrError code as defined in RFC 1448 for: genErr . |
public static final int | snmpRspNoAccessError code as defined in RFC 1448 for: noAccess . |
public static final int | snmpRspWrongTypeError code as defined in RFC 1448 for: wrongType . |
public static final int | snmpRspWrongLengthError code as defined in RFC 1448 for: wrongLength . |
public static final int | snmpRspWrongEncodingError code as defined in RFC 1448 for: wrongEncoding . |
public static final int | snmpRspWrongValueError code as defined in RFC 1448 for: wrongValue . |
public static final int | snmpRspNoCreationError code as defined in RFC 1448 for: noCreation . |
public static final int | snmpRspInconsistentValueError code as defined in RFC 1448 for: inconsistentValue . |
public static final int | snmpRspResourceUnavailableError code as defined in RFC 1448 for: resourceUnavailable . |
public static final int | snmpRspCommitFailedError code as defined in RFC 1448 for: commitFailed . |
public static final int | snmpRspUndoFailedError code as defined in RFC 1448 for: undoFailed . |
public static final int | snmpRspAuthorizationErrorError code as defined in RFC 1448 for: authorizationError . |
public static final int | snmpRspNotWritableError code as defined in RFC 1448 for: notWritable . |
public static final int | snmpRspInconsistentNameError code as defined in RFC 1448 for: inconsistentName . |
public static final int | noSuchViewError that is returned by VACM. |
public static final int | noSuchContextError that is returned by VACM. |
public static final int | noGroupNameError that is returned by VACM. |
public static final int | notInViewError that is returned by VACM. |
public static final int | snmpReqTimeoutError code specific to the API.
Used if the request PDU exceeds the maxTries limit
defined in the {@link com.sun.jmx.snmp.SnmpPeer SnmpPeer} object. |
public static final int | snmpReqAbortedError code specific to the API.
Used if the pending request PDU is cancelled. |
public static final int | snmpRspDecodingErrorError code specific to the API.
Used if the response to the request PDU fails at decoding time. |
public static final int | snmpReqEncodingErrorError code specific to the API.
Used if the request PDU does not retreive the community string at
authentication encoding time. |
public static final int | snmpReqPacketOverflowError code specific to the API.
Used if the request PDU does not fit in the maxSnmpPktSize limit
defined in the {@link com.sun.jmx.snmp.SnmpPeer SnmpPeer} object. |
public static final int | snmpRspEndOfTableError code specific to the API.
Used for the last variable returned by a Walk request PDU. |
public static final int | snmpReqRefireAfterVbFixError code specific to the API.
Used if the request PDU is retried after a noSuchName error fixed.
This is an internal temporary status. |
public static final int | snmpReqHandleTooBigError code specific to the API.
Used if the size of the request PDU varBindList exceeds
the maxVarBindLimit limit defined in the
{@link com.sun.jmx.snmp.SnmpPeer SnmpPeer} object. |
public static final int | snmpReqTooBigImpossibleError code specific to the API.
Used if the request PDU fails with a tooBig error status
but its varBindList contains just one element. |
public static final int | snmpReqInternalErrorError code specific to the API.
Used if an internal error occurs when processing the request PDU. |
public static final int | snmpReqSocketIOErrorError code specific to the API.
Used if an I/O error occurs when sending the request PDU. |
public static final int | snmpReqUnknownErrorError code specific to the API.
Used if the request PDU fails at encoding time or sending time for a reason
not covered by the previous error codes. |
public static final int | snmpWrongSnmpVersionError code specific to the API.
|
public static final int | snmpUnknownPrincipalSNMP V3 Error code specific to the API.
Used if the used principal is unknown. |
public static final int | snmpAuthNotSupportedSNMP V3 Error code specific to the API.
Used if authentication is not supported for the current user. |
public static final int | snmpPrivNotSupportedSNMP V3 Error code specific to the API.
Used if privacy is not supported for the current user. |
public static final int | snmpBadSecurityLevelSNMP V3 Error code specific to the API.
Used if privacy is not supported for the current user. |
public static final int | snmpUsmBadEngineIdSNMP Usm V3 Error code specific to the API.
Used if the authoritative engine Id is not associated to the current user. |
public static final int | snmpUsmInvalidTimelinessSNMP Usm V3 Error code specific to the API.
Used if the timeliness params are invalid. |
public static final int | snmpV1SecurityModelSnmp V1 security model id (1). |
public static final int | snmpV2SecurityModelSnmp V2 security model id (2). |
public static final int | snmpUsmSecurityModelSnmp V3 security model id (3). |
public static final int | snmpV1MsgProcessingModelSnmp V1 msg processing model id (0). |
public static final int | snmpV2MsgProcessingModelSnmp V2 msg processing model id (1). |
public static final int | snmpV3MsgProcessingModelSnmp V3 msg processing model id (3). |
public static final int | snmpV1AccessControlModelSnmp V1 access control model id (0). |
public static final int | snmpV2AccessControlModelSnmp V2 access control model id (1). |
public static final int | snmpV3AccessControlModelSnmp V3 access control model id (3). |