I'm doing some GUI prototyping with Python for an SNMP application. Looking around there seem to be a number of python libraries I could use. As I'm prototyping I value a nice clean easy API over speed and preferably a commonly packaged library. Obviously the package should be open source. So far I've been looking PySNMP, Twisted-Snmp, pynetsnmp and seafelt's libsnmp.
feedback
|
closed as not constructive by casperOne♦ May 10 at 12:23
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
Of the libraries you mention I'd single out the python net-snmp library and pysnmp. One of my criteria for choosing well supported libraries is are they in debian/ubuntu and these both pass that test. Net-snmp does come with python bindings. Net-snmp is in some ways the de-facto snmp library (for linux at least) so it is probably a good choice in that respect. However net-snmp is an extrememly large and gangly C library (which I've spent rather a lot of time hacking on and reading the source code) which is a downside. The other alternative is a pure python snmp library - pysnmp which seems like a sensible choice, though I haven't actually tried that one. The twisted wrapper for it could come in handy. If I was starting a new SNMP development I'd try pysnmp to see how well it works, but the old faithful (py)net-snmp is always there if you need it. If you just want a bit of light usage of snmp then you can use the net-snmp command line tools very easily, eg
To read the power usage of an APC powerbar, which would work fine for prototyping I would have thought. [edit: one year later] I've now had a chance to try the pysnmp library. I wasn't happy with the stable branch 2.x, but the development 4.x works and has a lots of good features, including
I found it moderately complicated to work with, but I managed to work it out with help from the docs and the source code. Top tip:
| |||||||||||||
feedback
|
|
This isn't so much an answer as much as me sharing my experience testing these libraries. I ran some snmpwalk benchmarks on PySNMP 4.x and net-snmp using python's multiprocessing.Pool. Benchmarks were pretty dirty (basically scaled up the thread pool until I didn't get any performance gains), so reader be-ware. Here's some observations: netsnmp's python bindings:
PySNMP4:
Overall, I'm really kind of disappointed. There's really not a "best overall" library. Apart from the API and performance, PySNMP4 is great. Apart from having some strange MIB/oid lookup handling behavior and not supporting many bulk operations, NetSNMP's python bindings were great. | |||
|
feedback
|
|
Net-Snmp has python bindings. Very simple (command-line like functions) access to SNMP functionality. If you use the Net-Snmp trap daemon, you can direct trap info to python (or any other language) scripts. | |||
|
feedback
|
|
The most active project of "Security not my Problem" seems to be pycopia SNMP. I have no experience with any of them, but if you have troubles finding the correct one have a look at the mailinglist archives of the libraries to find the most active one. Those usually have the better API/implementation or at least more users. | |||
|
feedback
|
|
I say the one I wrote last weekend: http://code.google.com/p/multicore-snmp/ Full process based API to Net-SNMP which supports V1-V3. | |||
|
feedback
|
|
I searched for SNMP implementations today, and my favourite is http://pysnmp.sourceforge.net They offer one-liners (which are in fact a little bit longer than a normal line, but I am not picky):
I wrote a short SNMP interface fetching script here which handles overflowing Counter32 values on cheap HP 1810G switches: http://blog.lagentz.com/python/handling-snmp-counter32-overflows-on-hp1810-g-correctly/ | |||
|
feedback
|