我创建了一些smnp代理,它将使用pysnmp来获取OID响应。 我如何通过pysnmp使人类可以读取OID?
示例命令生成器:
cmdGen = cmdgen.CommandGenerator()
errorIndication, errorStatus, errorIndex, varBinds =cmdGen.getCmd(
cmdgen.UsmUserData('user','privKey','authKey'),
cmdgen.UdpTransportTarget(('127.0.0.1', 161)),(1,3,6,1,2,1,1,1,0))
#what I need:
make_human_readble_OID(VarBinds)
感谢您的帮助!