You can configure the ESXi SNMP agent to filter out notifications if you don't want your SNMP management software to receive those notifications.
Prerequisites
Configure the ESXi SNMP agent by using the ESXCLI commands. See Getting Started with ESXCLI for more information on how to use ESXCLI.
Procedure
- Run the esxcli system snmp set command to filter notifications:
esxcli system snmp set --notraps oid_list
Here,
oid_list is a list of OIDs for the notifications to filter, separated by commas. This list replaces any OIDs that were previously specified using this command.
For example, to filter out
coldStart (OID
1.3.6.1.4.1.6876.4.1.1.0) and
warmStart (OID
1.3.6.1.4.1.6876.4.1.1.1) traps, run the following command:
esxcli system snmp set --notraps 1.3.6.1.4.1.6876.4.1.1.0,1.3.6.1.4.1.6876.4.1.1.1
- (Optional) If the ESXi SNMP agent is not enabled, run the following command:
esxcli system snmp set --enable true
Results
The traps identified by the specified OIDs are filtered out of the output of the SNMP agent, and are not sent to SNMP management software.
What to do next
To clear all notification filters, run the esxcli system snmp set --notraps reset command.