Linux SNMP: Process name table No response from remote host
-
msbensonstk
- Posts: 34
- Joined: Wed Apr 11, 2012 1:01 pm
Re: Linux SNMP: Process name table No response from remote h
Bump.
Still waiting for a reply on this.
Still waiting for a reply on this.
Re: Linux SNMP: Process name table No response from remote h
Just wanted to give you heads up. sreinhardt is working on your issue. We need a little bit more time to do some digging into this.
Be sure to check out our Knowledgebase for helpful articles and solutions!
-
msbensonstk
- Posts: 34
- Joined: Wed Apr 11, 2012 1:01 pm
Re: Linux SNMP: Process name table No response from remote h
Thanks. Please let me know when you have any progress on this (it's been a few months now). If you need any additional debugging info from us, also please let me know.
-
sreinhardt
- -fno-stack-protector
- Posts: 4366
- Joined: Mon Nov 19, 2012 12:10 pm
Re: Linux SNMP: Process name table No response from remote h
I know I downloaded this at one point from your pm, however I cannot seem to find it now. Could you by chance send it again please. I also want to apologize for the delay, I didn't mean to leave you waiting!
Nagios-Plugins maintainer exclusively, unless you have other C language bugs with open-source nagios projects, then I am happy to help! Please pm or use other communication to alert me to issues as I no longer track the forum.
-
msbensonstk
- Posts: 34
- Joined: Wed Apr 11, 2012 1:01 pm
Re: Linux SNMP: Process name table No response from remote h
Just re-sent the file.
-
sreinhardt
- -fno-stack-protector
- Posts: 4366
- Joined: Mon Nov 19, 2012 12:10 pm
Re: Linux SNMP: Process name table No response from remote h
Looks like tcpdump wants to restrict the frame size captured. Try doing the following to unrestrict it:
Code: Select all
tcpdump -i eth0 -K -nn -s 0 -w /tmp/snmp.pcap portrange 161-162Nagios-Plugins maintainer exclusively, unless you have other C language bugs with open-source nagios projects, then I am happy to help! Please pm or use other communication to alert me to issues as I no longer track the forum.
-
msbensonstk
- Posts: 34
- Joined: Wed Apr 11, 2012 1:01 pm
Re: Linux SNMP: Process name table No response from remote h
New pcap PM'd to you.
There is no -K flag in my version of tcpdump, so what I ended up using was:
tcpdump -i eth0 -nn -s 0 -w /tmp/snmp.pcap host <ipaddress> and portrange 161-162
I added the 'host' filter to help get rid of the noise from the rest of the SNMP checks running on the system.
There is no -K flag in my version of tcpdump, so what I ended up using was:
tcpdump -i eth0 -nn -s 0 -w /tmp/snmp.pcap host <ipaddress> and portrange 161-162
I added the 'host' filter to help get rid of the noise from the rest of the SNMP checks running on the system.
-
sreinhardt
- -fno-stack-protector
- Posts: 4366
- Joined: Mon Nov 19, 2012 12:10 pm
Re: Linux SNMP: Process name table No response from remote h
well, now I'm sad. I neglected to realize that you were using aes and sha to do the snmp gets, which make the tcpdump useless. Is there any chance you have v2 enabled and can do the same get with that? The only thing I can see, is that there is communication between the two, but not if its an authentication issue, something with the plugin, or if the oid does not exist, etc.
Nagios-Plugins maintainer exclusively, unless you have other C language bugs with open-source nagios projects, then I am happy to help! Please pm or use other communication to alert me to issues as I no longer track the forum.
-
msbensonstk
- Posts: 34
- Joined: Wed Apr 11, 2012 1:01 pm
Re: Linux SNMP: Process name table No response from remote h
We cannot use SNMP v2 in our environment due to security concerns. We have no systems setup to use it and it would not really be a test of the current issue as the current issue involves SNMP v3.
What else can we try to figure this out? The issue has forced us to put many checks into "do not alert" mode which is causing us to miss when real problems come up.
What else can we try to figure this out? The issue has forced us to put many checks into "do not alert" mode which is causing us to miss when real problems come up.
-
sreinhardt
- -fno-stack-protector
- Posts: 4366
- Joined: Mon Nov 19, 2012 12:10 pm
Re: Linux SNMP: Process name table No response from remote h
OK, so is this happening for more than one system? I was under the impression that you had this working on at least a few other systems. I can certainly understand where this is less than ideal at the moment. I took a look through the code, and it seems that it specifically sets des and md5, where you have sha and aes. It seems that it might be changing it later on, but I am not a perl expert, and its not written super logically in my opinion. You might try manually changing lines 65 and 66 to sha and aes respectively just to be sure its set correctly.
Nagios-Plugins maintainer exclusively, unless you have other C language bugs with open-source nagios projects, then I am happy to help! Please pm or use other communication to alert me to issues as I no longer track the forum.