Check out the man page for snmptrapd.conf
At the top it says:
Quote:
|
Previously, snmptrapd would accept all incoming notifications, and log them automatically (even if no explicit configuration was provided). Starting with release 5.3, access control checks will be applied to incoming notifications. If snmptrapd is run without a suitable configuration file (or equivalent access control settings), then such traps WILL NOT be processed. See the section ACCESS CONTROL for more details.
|
The option you are probably interested in can be found at the bootom of the "ACCESS CONTROL" section. It says:
Quote:
disableAuthorization yes
will disable the above access control checks, and revert to the previous behaviour of accepting all incoming notifications.
|
If you add
Code:
disableAuthorization yes
to /etc/snmp/snmptrapd.conf you should be happy. If this file does not exist, create it, then restart snmptrapd. It does appear that snmptrapd.conf may alternately be found in /usr/share/snmp, but I have not put it there in any of my configurations.