SNMPSecurityConfiguration
Description
A Nested Entity that represents SNMPSecurityConfiguration for v1, v2c or v3 hosts. As shown in the examples provided below, for SNMP v1 and v2c versions,a valid community string must be provided in the community field while in the case of SNMP v3, a valid SNMP v3 user attributes must be provided in the authentication field. The type field is a fixed string identifying security configuration for SNMP versions v1,v2c and v3.
SNMPv1SecurityConfiguration
{
"community" : "String",
"type" : "snmpv1securityconfiguration"
}
SNMPv2cSecurityConfiguration
{
"community" : "String",
"type" : "snmpv2csecurityconfiguration"
}
SNMPv3SecurityConfiguration
{
"authentication": {
"version":"String",
"name":"String",
"id":"String",
"type":"String"
},
"type" : "snmpv3securityconfiguration"
} (Note: The field level constraints listed here might not cover all the constraints on the field. Additional constraints might exist.)
Model Properties
Property | Required | Type | Description | |||
---|---|---|---|---|---|---|
type | True | string | A UTF8 string, all letters lower-case, that represents the class-type. This corresponds to the class name. |