Update The SNMP Settings For An Organization
PUT {{baseUrl}}/organizations/:organizationId/snmp
Update the SNMP settings for an organization #### Body Parameters Parameter|Type|Description :-------------: |:-------------: |:-------------: v2cEnabled| boolean| Boolean indicating whether SNMP version 2c is enabled for the organization. v3Enabled| boolean| Boolean indicating whether SNMP version 3 is enabled for the organization. v3AuthMode| string| The SNMP version 3 authentication mode. Can be either 'MD5' or 'SHA'. v3AuthPass| string| The SNMP version 3 authentication password. Must be at least 8 characters if specified. v3PrivMode| string| The SNMP version 3 privacy mode. Can be either 'DES' or 'AES128'. v3PrivPass| string| The SNMP version 3 privacy password. Must be at least 8 characters if specified. peerIps| array| The list of IPv4 addresses that are allowed to access the SNMP server.
Request Body
{"v2cEnabled"=>"<boolean>", "v3Enabled"=>"<boolean>", "v3AuthMode"=>"<string>", "v3AuthPass"=>"<string>", "v3PrivMode"=>"<string>", "v3PrivPass"=>"<string>", "peerIps"=>["<string>", "<string>"]}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
X-Cisco-Meraki-API-Key | null | ||
Content-Type | string |
RESPONSES
status: OK
{"v2cEnabled":false,"v3Enabled":true,"v3AuthMode":"SHA","v3PrivMode":"AES128","peerIps":["123.123.123.1"],"hostname":"snmp.meraki.com","port":443}