Skip to main content
Element Software
12.5 and 12.7

GetSnmpInfo

Contributors netapp-pcarriga amgrissino

You can use the GetSnmpInfo method to get the current simple network management protocol (SNMP) configuration information.

Parameters

Note GetSnmpInfo is deprecated for versions later than Element version 8.0. The GetSnmpState and SetSnmpACL methods replace the GetSnmpInfo method.

This method has no input parameters.

Return values

This method has the following return values:

Name Description Type

networks

List of networks and access types enabled for SNMP. Note: networks is only displayed if SNMP v3 is disabled.

enabled

Indicates if the nodes in the cluster are configured for SNMP. Possible values:

  • true

  • false

boolean

snmpV3Enabled

If the node in the cluster is configured for SNMP v3. Possible values:

  • true

  • false

boolean

usmUsers

If SNMP v3 is enabled, a list of user access parameters for SNMP is returned from the cluster. This is returned instead of the networks parameter.

Request example

Requests for this method are similar to the following example:

{
   "method": "GetSnmpInfo",
   "params": {},
   "id" : 1
}

Response example

This method returns a response similar to the following example:

{
   "id" : 1,
   "result" : {
      "enabled" : true,
      "networks" : [
         {
            "access" : "rosys",
            "cidr" : 0,
            "community" : "public",
            "network" : "localhost"
         }
      ]
   }
}

New since version

9.6

Find more information