I am running splunk 6.5.0. Trying to poll a cisco ASA firewall. I am getting this error message:
ERROR ExecProcessor - message from "python /opt/splunk/etc/apps/snmpmod/bin/snmpif.py" file="snmpif.py" line=191 stanza="snmpif://gateway.xx.net" error=pdu msg="tooBig at ?" interfaces=15
Trying to figure out the cause. I am able to graph/poll via MRTG the same device.
Solution was to comment out some of the OIDs that were being used to poll the device with.
In snmpif.py I commented out some of the OIDs in "interface_mibs".
Not sure if this is specific to using a cisco ASA or splunk 6.5.0.
Otherwise app works great!.
Till the time help arrives from the app developer maybe this might be of some help and might lead you to the cause you are looking for:
https://community.helpsystems.com/forums/intermapper/snmp-probes/2f7f53db-fa83-e511-80cf-0050568460e...
Excerpt:
A "tooBig" response simply means that the SNMP agent tried to generate a response with all of its OID's, but the response grew too big for its buffer. The limit is 50 OIDs per-request. However, the probe writer is responsible for setting the limit lower if it asks for too many variables at a time and receives a 'tooBig' response in return
Thank you, that was helpful in finding the answer.