PySNMP http://pysnmp.sourceforge.net/ is a python package used for native python snmp transactions. It supports MiB references as well as having the ability to do both synchronous and asynchronous calls to the SNMP environment.
27
votes
6answers
16k views
What is the best SNMP implementation for Python?
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 ...
4
votes
1answer
456 views
How can I check the data transfer on a network interface in python?
There is a socket method for getting the IP of a given network interface:
import socket
import fcntl
import struct
def get_ip_address(ifname):
s = socket.socket(socket.AF_INET, ...
3
votes
1answer
246 views
How to get data form SNMP with python?
How to get value mac and vlan from fdb table uses python?
In bash snmpwalk work fine:
snmpwalk -v2c -c pub 192.168.0.100 1.3.6.1.2.1.17.7.1.2.2.1.2
pysnmp:
import os, sys
import socket
import ...
3
votes
3answers
1k views
Convert snmp octet string to human readable date format
Using the pysnmp framework i get some values doing a snmp walk. Unfortunately for the oid
1.3.6.1.21.69.1.5.8.1.2 (DOCS-CABLE-DEVICE-MIB)
i get a weird result which i cant correctly print here ...
3
votes
1answer
270 views
Libraries not imported when creating a Python executable with pyinstaller
I am trying to build a Python .exe for Windows and am able to create it fine. However, when I run the application, I notice that it cannot perform all of its functions because not all the libraries ...
3
votes
1answer
704 views
How to implement mib module in net-snmp with python?
in the faq, i read this "..the agent can also support MIB modules implemented in perl or (from 5.4) python."
I have built net-snmp with python support, but it's not clear yet how to actually ...
1
vote
1answer
97 views
How to use pysnmp to monitor system resources?
Hello I am new to python and snmp and I was wondering how can I use pysnmp to monitor system resources such as CPU usage, Memory usuage, Disk usage and NIC Load?
I am experimenting with the ...
1
vote
1answer
70 views
PySNMP Errors when working with MIB files
I'm attempting to use MIB files in PySNMP. The code is fairly straightforward. Nothing complex. Just trying to get the information under an OID. The code I'm using is as follows:
...
1
vote
1answer
55 views
PySNMP: load error: Bad OctetString initializer
I have the following example from the pysnmp page:
# GET Command Generator
from pysnmp.entity.rfc3413.oneliner import cmdgen
errorIndication, errorStatus, \
errorIndex, ...
1
vote
0answers
118 views
python net-snmp loading mibs
i'm using net-snmp's python libraries to do some long queries on various switches. i would like to be able to load new mibs - but i cannot find any documentation on how to do this.
i know the perl ...
1
vote
1answer
418 views
Python SNMP GetBulk - Multiple OIDs
I need to use PySNMP's GetBulk implementation to query for a list of Table OIDs. I was able to get it to query for 1 Table OID, but unable to get it to read the Table OIDs from a list. What am I doing ...
1
vote
2answers
361 views
Asynchronous getNext errors out when going out of table
I am using one of the examples for GetNext operation for an SNMPWalk of the tree. I am using the asynchronous variant to collect the OIDs -
# GETNEXT Command Generator
from ...
1
vote
1answer
102 views
Resetting all global internal state of the net-snmp library from the Python bindings
I'm trying to create automated integration tests for this hardware+software test subject which runs a SNMP agent as it's command interface. Our test setup looks like this: We're using Fitnesse as a ...
1
vote
1answer
253 views
Building an SNMP Request-Response service with Python Asyncore
I have a 3rd-party protocol module (SNMP) that is built on top of asyncore. The asyncore interface is used to process response messages. What is the proper technique to design a client that generate ...
0
votes
1answer
34 views
PySNMP MIB module failing when attempting to access function Counter64
Attempting to run a MIB based SNMP script and I running into an issue. It is unable to run the function Counter64 though I know that the module which contains that function is installed. the MIB ...
0
votes
1answer
40 views
SNMP wrapper agent?
So we have some internal applications that provide metrics via a RESTful api. We would like to expose this data via SNMP. What I am thinking is that at the host level an SNMP wrapper would receive a ...
0
votes
2answers
296 views
Translating pysnmp numerical oid output into symbolic names
I wrote a script (below) to test how well I could use pysnmp in one of my applications. I need to be able to mib-walk network elements with names like ifDescr, and my output needs to reference the ...
0
votes
1answer
264 views
Error in parsing mibs using build-pysnmp-mibs and loading mibs using pysnmp
I am trying to load some custom mibs using mibBuilder.
Initially, as per the pysnmp documentation, I used the build-pysnmp-mib utility for converting the mibs to pysnmp mib format. But I get the ...
0
votes
1answer
380 views
msession not defined
I am trying to run this example program - http://pysnmp.sourceforge.net/examples/1.x/snmpbulk.html
I am on Mac OS X, and I installed pysnmp by -
$ sudo /usr/local/bin/pip install pysnmp
Now when ...
0
votes
4answers
668 views
PySNMP Error: pysnmp.smi.error.SmiError
I am running a Python program on a Windows XP machine. When I run the program, I get the following error:
File "C:\Python27\lib\pysnmp\smi\builder.pyt, line 230, in loadModules...
...
-1
votes
1answer
105 views
How to make a single GETNEXT query in PySNMP
I'm trying to make a simple snmp GETNEXT query to retrieve only the next item of given OID in tree hierarchy.
For example, what I want is:
When i make a GETNEXT request with OID 1.3.6.1.2.1.1 ...