我正在尝试在pysnmp中使用setCmd()方法来设置变量。我在设置特定的对象标识时遇到问题,因为pysnmp似乎将“ .0”附加到要设置的对象标识上。为什么会这样?
我得到的输出是:
noSuchName at 1.3.6.1.4.1.2682.1.2.3.4.0
该脚本的内容为:
errorIndication, errorStatus, errorIndex, varBinds = next(
setCmd(SnmpEngine(),
CommunityData('dps_public', mpModel=0),
UdpTransportTarget(('192.168.1.100', 161)),
ContextData(),
ObjectType(ObjectIdentity('1.3.6.1.4.1.2682.1.2.3.4'),
Integer(2)))
)
if errorIndication:
print(errorIndication)
elif errorStatus:
print('%s at %s' % (errorStatus.prettyPrint(),
errorIndex and varBinds[int(errorIndex) - 1][0] or '?'))
else:
for varBind in varBinds:
print(' = '.join([x.prettyPrint() for x in varBind]))
答案 0 :(得分:1)
我怀疑您是从SNMP代理获取此修改的OID(我认为这是违反协议的)。据我所知,pysnmp不应以这种方式弄乱OID。
要进行验证,您可以尝试在demo.snmplabs.com上针对SNMP代理尝试脚本和/或启用pysnmp调试,并查看所查询的SNMP代理中PDU中的内容。
from pysnmp import debug
debug.setLogger(debug.Debug('msgproc'))
...