#🔒 PYSNMP Issue retrieving actual variable names from MIB

5 messages · Page 1 of 1 (latest)

nimble trench
#

Hey, I’m trying to retrieve the variable names of the OID and assign them to the actual OID. I’m having trouble getting this to work and I’ve tried countless things. It will print the actual OID value but it will not print the variable name


def getOID(self):
cmdGen = cmdgen.CommandGenerator()

errorIndication, errorStatus, errorIndex, varBindTable = cmdGen.bulkCmd(
cmdgen.CommunityData('public'),

cmdgen.UdpTransportTarget(('172.16.188.10', 161)),
0,
25,
'1.3.6.1.4.1.6827.50.419'
)


if (errorIndication):
print(errorIndication)
elif errorStatus:
print('%s at %s' % (errorStatus.prettyPrint(),
errorIndex and varBindTable[int(errorIndex) - 1][0] or '?'))
else:
for varBindTableRow in varBindTable:
for name, val in varBindTableRow:
print(name.prettyPrint() + " = " + val.prettyPrint())
k = SNMP()
k.getOID() ```
cedar jungleBOT
#

@nimble trench

Python help channel opened

Remember to:

  • Ask your Python question, not if you can ask or if there's an expert who can help.
  • Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
  • Explain what you expect to happen and what actually happens.

:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.

nimble trench
#

I feel like I am missing something very simple to get it working but I just can’t figure it out. I tried actually passing the mib file but I run into an issue where it says the file is not a .mib file

cedar jungleBOT
#

@nimble trench

Python help channel closed

This help channel has been closed and it's no longer possible to send messages here. If your question wasn't answered, feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.