A newer release of this product is available.
Support SNMP endpoint overview
Contributors
Suggest changes
- PDF of this doc site
Collection of separate PDF docs
Creating your file...
This may take a few minutes. Thanks for your patience.
Your file is ready
Overview
Cluster wide SNMP configuration. You can configure or retrieve the following SNMP parameters using this endpoint:
-
enable or disable SNMP
-
enable or disable SNMP authentication traps
Examples
Disables SNMP protocol in the cluster.
# The API: PATCH "/api/support/snmp" # The call curl -H "accept: application/json" -H "Content-Type: application/json" -X PATCH "https://<mgmt-ip>/api/support/snmp" -d '{"enabled":"false"}' # The response 200 OK ### Enables SNMP authentication traps in the cluster.
The call
curl -H "accept: application/json" -H "Content-Type: application/json" -X PATCH "https://+++<mgmt-ip>+++/api/support/snmp" -d '{"auth_traps_enabled":"true"}'+++</mgmt-ip>+++
The response
200 OK
Enables SNMP protocol and SNMP authentication traps in the cluster.
# The call
curl -H "accept: application/json" -H "Content-Type: application/json" -X PATCH "https://+++<mgmt-ip>+++/api/support/snmp" -d '{"enabled":"true", "auth_traps_enabled":"true"}'+++</mgmt-ip>+++
# The response
200 OK