Get SNMP Agent (v2.1)
GET/v2.1/api/tenants/:tenant_id/sites/:site_id/elements/:element_id/snmpagents/:snmpagent_id
List an SNMP agent.
Request
Path Parameters
ID of the tenant.
ID of the site.
ID of the element.
The SNMP agent configuration ID.
Responses
- 200
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
The description of the SNMP agent. Max characters = 256.
The ID of the SNMP agent.
System Contact
The configured SNMP agent's element location.
A information field that can be added to identify the SNMP agent configuration.
v2_config SNMPV2Config
V2 Config: Valid Valid
If V2 is enabled, community is configured. If community is not configured, then public will be set as the default community. White spaces not allowed in community name. Max characters = 32.
Enabled
v3_config SNMPV3Config
V3 Config: Valid Valid
Enabled
users_access SNMPUserAccess[]
Users Access
The authentication phrase of 8 to 25 characters if auth type is selected.
Possible values: [NONE
, MD5
, SHA
]
The authentication type. Auth Type may be MD5, SHA, or None.
The encryption phrase of 8 to 25 characters if encryption type is selected.
Possible values: [NONE
, AES
, DES
]
The encrption type.
The SNMP configuration supported engine ID. Hexadecimal value should be in pairs (multiple of two) with minimum length 10 and maximum length 256.
Possible values: [NOAUTH
, AUTH
, PRIVATE
]
The security level of the SNMP configuration.
The user name to identify the device. User name length should be between 4 and 256.
{
"id": "string",
"system_contact": "string",
"system_location": "string",
"tags": [
"string"
],
"v2_config": {
"community": "string",
"enabled": true
},
"v3_config": {
"enabled": true,
"users_access": [
{
"auth_phrase": "string",
"auth_type": "NONE",
"enc_phrase": "string",
"enc_type": "NONE",
"engine_id": "string",
"security_level": "NOAUTH",
"user_name": "string"
}
]
}
}