#include <qtomeapi.h> int snmpGet(snmppdu * pdu_ptr, char * host_ptr, unsigned long int time_out, char * comm_ptr, unsigned long int comm_len);
An SNMP managing application uses the snmpGet() function to get one or more management information base (MIB) objects from an SNMP agent or subagent on a local or remote system.
This structure contains the PDU type (GET in this instance), the error status, the error index, and the pointer to the varbind structure.
The varbind structure (found in the qtomeapi.h file) consists of the following:
struct _varBind{ struct _varBind * next; char *oid; /* Null Terminated */ unsigned char asn_type; int val_len; union { int * int_val; char * str_val; } val; };
The fields for this structure are described as follows:
*next | The pointer to the next varbind. This has to be NULL if it is the last varbind in the list. |
*oid | The pointer to the OID being set or retrieved (depending on the operation). |
asn_type | The ASN type of the OID. This field must be set by the user only for the snmpSet function. On the snmpGet or snmpGetnext function, it is returned by the API. |
val_len | For the snmpSet function, the user must set this to reflect the exact amount of data to be written to the OID. On an snmpGet or snmpGetnext, the user must use this field to indicate how much space to allocate for the value being retrieved. If the value coming back is greater than the amount of space allocated, a return code of 1 is received. |
val | A union of either a pointer to the string data or a pointer to the integer data. This space is allocated by the user. |
This parameter can be stored in dotted decimal notation, that is, 9.130.38.217, or in host address format, that is, oursystem.endicott.ibm.com. This parameter must contain printable characters only.
This parameter is the amount of time in seconds that the management application is willing to wait for the response PDU. The minimum value is 1, and the maximum is 100.
This parameter contains a variable-length field that contains printable and nonprintable values. Therefore, the user must supply the exact length of this value in another parameter. EBCDIC-to-ASCII translation will not be done, and it is the responsibility of the managing application to specify the community name in the correct notation for the SNMP agent system.
This parameter is the exact length of the community name. The minimum value is 1, and the maximum is 255.
The following are the possible return codes posted by the snmpGet() function:
0 | API_RC_OK
snmpGet() was successful. |
-4 | API_RC_OUT_OF_MEMORY
There was not enough storage to complete this operation. |
-5 | API_RC_OUT_OF_BUFFERS
There were not enough internal buffers to continue. |
-6 | API_RC_OUT_OF_VARBINDS
The maximum number of allowable varbinds was exceeded. |
-7 | API_RC_SNMP_OUT_OF_VARBINDS
The maximum number of allowable varbinds was exceeded. This return code is equivalent to the -6 return code. |
-9 | API_RC_SNMP_INVALID_OID
The OID specified in the varbind list is not valid. This return code is equivalent to the -112 return code. |
-10 | API_RC_INVALID_VALUE
The specified value in the varbind is not valid. |
-11 | API_RC_INVALID_VALUE_REP
The specified value in the varbind is incorrectly represented. |
-12 | API_RC_DECODE_ERROR
The SNMP APIs were unable to decode the incoming PDU. |
-13 | API_RC_DECODE_ERROR
The SNMP APIs were unable to encode the PDU data structure. |
-18 | API_RC_TIMEOUT
A response to this request was not received within the allotted time-out value. |
-21 | API_RC_INVALID_PDU_TYPE
The PDU type was not recognized as one of the seven common PDU types. |
-103 | API_RC_INVALID_IP_ADDRESS
The IP address that was specified is not valid. |
-104 |
API_RC_INVALID_COMMUNITY_NAME _LENGTH The community name length must be greater than 0 and less than 256. |
-108 | API_RC_INVALID_TIMEOUT_PARM
The time-out value must be greater than 0 and less than or equal to 100. |
-110 | API_RC_UNKNOWN_HOST
The host name or IP address that is specified is not known on the network. |
-112 | API_RC_INVALID_OID
The OID that is specified in the varbind list is not valid. |
-113 | API_RC_INVALID_PDU_POINTER
The pointer value to the PDU structure must be non-NULL. |
-114 | API_RC_INVALID_HOST_POINTER
The pointer value to the host address must be non-NULL. |
-115 | API_RC_INVALID_HOST_POINTER
The pointer value to the community name must be non-NULL. |
-201 | API_RC_SOCKET_ERROR
The APIs have detected a socket error and cannot continue. |
-202 | API_RC_NOT_OK
The APIs have detected an unknown error and cannot continue. The val_len field of the varbind structure contains a value that is not valid. |
1 |
API_RC_VAL_LEN_LESS_THAN_RETURNED_ VAL_LEN The value being returned by the API is greater than the space allocated by the user. |
241 | API_RC_DOMAIN_ERROR
This is equivalent to an MCH6801 error--stating object domain error. |
242 | API_RC_INVALID_POINTER
This is equivalent to an MCH3601 error--referenced location in a space does not contain a pointer. |
243 | API_RC_INVALID_PTR_TYPE
This is equivalent to an MCH3602 error-pointer type not valid for requested operation. |
For more information, see "Problem Determination for SNMP Manager APIs" in the Simple Network Management Protocol book.
Following are the possible error statuses returned in the error status field of the PDU structure. These values are returned by the SNMP agents.
0 | API_SNMP_ERROR_noError
The function was successful. |
1 | API_SNMP_ERROR_tooBig
The agent could not fit the results of an operation into a single SNMP message. |
2 | API_SNMP_ERROR_noSuchName
The requested operation identified an unknown variable name. |
3 | API_SNMP_ERROR_badValue
The requested operation specified an incorrect syntax or value when the management application tried to modify a variable. |
5 | API_SNMP_ERROR_genErr
A nonspecific error occurred while running this operation on the SNMP agent. |
The area where the data is returned is the responsibility of the user, not the API. To allocate storage, the user may use the AddVarbind routine (see AddVarbind Routine). To deallocate storage, the user may use the FreePdu routine (see FreePdu Routine).
You must use the correct PDU type on AddVarbind. It must match the operation on which you call. For example, if you build a PDU wherein AddVarbind passes a PDU type of Set and then you call the snmpGet operation using the PDU that you just created with Set, you will receive an error on the snmpGet call.
All character strings that are passed to the APIs must be null-terminated unless you explicitly provide the length, if a length field is available.
If you are building a PDU to go to a remote agent, you must remember to do correct translation of strings. The iSeries server is an EBCDIC system, whereas an SNMP agent on an RISC System/6000(R) (RS/6000(R)) computer is an ASCII system. Therefore, you must provide string values as you would see them on that system. For example, if you are sending a PDU to an RS/6000 system and the community name is public, you would enter the community name string in hexadecimal, X'7075626C6963'. See the data conversion APIs to convert data from EBCDIC to ASCII and vice versa.
These APIs are blocked, which means that on a call to the API a PDU is sent across a communications protocol to an SNMP agent on a local or remote system. The call returns when a response has been received from the agent or when the command times out. On the return, all returned data is placed in the appropriate locations. You need do no further action to retrieve such data.
See Code disclaimer information for information pertaining to code examples.
For examples that pertain to the SNMP manager APIs, see Using SNMP Manager APIs--Example.
Top | UNIX-Type APIs | APIs by category |