appliance techpreview monitoring snmp: SNMP config

SNMP_config structure Structure that defines the SNMP configuration, provided as input to set(), and never the result of get(). See SNMPConfigReadOnly. This structure is used to configure SNMP v1, v2c, and v3.

Representations:

{
    "authentication""none",
    "communities"[
        "string",
        "string"
    ],
    "engineid""string",
    "loglevel""string",
    "notraps"[
        "string",
        "string"
    ],
    "port"1,
    "privacy""AES128",
    "remoteusers"[
        "string",
        "string"
    ],
    "syscontact""string",
    "syslocation""string",
    "targets"[
        "string",
        "string"
    ],
    "users"[
        "string",
        "string"
    ],
    "v3targets"[
        "string",
        "string"
    ]
}
<?xml version="1.0" ?>
<ns0:SNMPConfig xmlns:ns0="http://vmware.com/appliance/techpreview/monitoring/snmp" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <port>1</port>
  <v3targets-array>
    <array-item>string</array-item>
    <array-item>string</array-item>
  </v3targets-array>
  <loglevel>string</loglevel>
  <users-array>
    <array-item>string</array-item>
    <array-item>string</array-item>
  </users-array>
  <communities-array>
    <array-item>string</array-item>
    <array-item>string</array-item>
  </communities-array>
  <privacy>AES128</privacy>
  <notraps-array>
    <array-item>string</array-item>
    <array-item>string</array-item>
  </notraps-array>
  <syscontact>string</syscontact>
  <engineid>string</engineid>
  <authentication>none</authentication>
  <remoteusers-array>
    <array-item>string</array-item>
    <array-item>string</array-item>
  </remoteusers-array>
  <syslocation>string</syslocation>
  <targets-array>
    <array-item>string</array-item>
    <array-item>string</array-item>
  </targets-array>
</ns0:SNMPConfig>

Attributes:

Name Type Description
Required
authentication string Set the default authentication protocol. Values can be none, MD5, or SHA1.

Defines SNMP authentication protocols Value is one of:
none: NONE
SHA1: SHA1
MD5: MD5

communities string[] Set up to ten communities, each of no more than 64 characters long. The format is: community1[,community2,...]. This setting overwrites any previous settings.

engineid string Set SNMPv3 engine ID. The engine ID must contain 5 to 32 hexadecimal characters. "0x" and colon (:) are removed from the ID.

loglevel string System Agent syslog logging level: debug|info|warning|error.

notraps string[] Comma-separated list of trap OIDs (object identifiers) for traps not to be sent by the agent. Use 'reset' to clear the setting.

port long Set up a UDP port which the SNMP agent uses to listen on for polling requests. The default UDP port is 161.

privacy string Set the default privacy protocol. Values: none or AES128.

Defines SNMP privacy protocols Value is one of:
AES128: AES128
none: NONE

remoteusers string[] Set up to five inform user IDs. The format is: user/auth-proto/-|auth-hash/priv-proto/-|priv-hash/engine-id[,...]. Here, user must be maximum 32 characters long; auth-proto is none, MD5 or SHA1; priv-proto is none or AES; '-' indicates no hash; engine-id is a hexadecimal string '0x0-9a-f' and must be up to 32 characters long.

syscontact string System contact string as presented in sysContact.0. Up to 255 characters long.

syslocation string System location string as presented in sysLocation.0. Up to 255 characters long.

targets string[] Set up to three targets to which to send SNMPv1 traps. The format is: ip-or-hostname[@port]/community[,...]. The default port is UDP 162. This setting overwrites any previous settings.

users string[] Set up to five local users. The format is: user/-|auth-hash/-|priv-hash/model[,...]. Here user is maximum 32 characters long; '-' indicates no hash; model is one of none, auth or priv.

v3targets string[] Set up to three SNMPv3 notification targets. Format is: ip-or-hostname[@port]/remote-user/security-level/trap|inform[,...].