What's an easy to use SNMP client library for c++?
+6
A:
Probably the best choice is net-snmp. Note that the library has "C" linkage but will work just fine with C++.
Jon Trauntvein
2008-10-30 02:34:48
Easier to use than net-snmp in my opinion...
Chris M.
2010-03-29 09:46:02
looks nice and simple. Is it really? is it robust and reliable?
f4
2010-04-06 14:45:53
Why not evaluate it? It's open source so you can feel free to try it out.
Lex Li
2010-04-07 00:56:13
I will. But I'm on a tight schedule and I'd better not lose time with a poor library :) anyway it looks ok for now
f4
2010-04-07 09:59:31
A:
I have found that Net-SNMP does not support multi-threading with v3 type queries. So if you are writing an SNMP monitoring tool that will be polling multiple hosts then you will need to take this into consideration.
notmg
2010-05-17 14:23:17
A:
OpenSNMP contains a complete multi-threaded implementation of SNMPv3 that is done in C++ (complete with classes, etc). It's not heavily used and maintained though.
Net-SNMP with v3 over TLS/DTLS is likely to be threadsafe as it's really SNMPv3/USM that contains threading issues. I think.
Wes Hardaker
2010-10-12 20:34:40