We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I am getting the error mentioned in the title when trying to run the below script. Could you please help with this? from pysnmp.hlapi import *
`community_string = 'public'
oid = '1.3.6.1.4.1.259.10.1.45.1.2.6.1.4.9' ip_address = '192.168.1.250'
def get_inpututil():
errorIndication, errorStatus, errorIndex, varBinds = next( getCmd(SnmpEngine(), CommunityData(community_string), UdpTransportTarget((ip_address, 161)), ContextData(), ObjectType(ObjectIdentity(oid))) ) for varBind in varBinds: print('Util = {} %'.format(varBind[1]/100))
if name == 'main': get_inpututil()`
The text was updated successfully, but these errors were encountered:
If you switch to PySNMP 5 (package pysnmp-lextudio), the script can be further simplified,
pysnmp-lextudio
http://www.pysnmp.com/pysnmp/quick-start#fetch-snmp-variable
Read #429 to learn more.
Sorry, something went wrong.
a friend of mine tried this code and it works for him so i think it is a version problem of package and python
No branches or pull requests
Hi, I am getting the error mentioned in the title when trying to run the below script. Could you please help with this?
from pysnmp.hlapi import *
`community_string = 'public'
oid = '1.3.6.1.4.1.259.10.1.45.1.2.6.1.4.9'
ip_address = '192.168.1.250'
def get_inpututil():
if name == 'main':
get_inpututil()`
The text was updated successfully, but these errors were encountered: