我正在尝试利用 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]))
我怀疑您从 SNMP 代理获取了这个修改后的 OID(我认为这违反了协议)。据我所知,pysnmp 不应该以这种方式弄乱 OID。
要验证您可以在 demo.pysnmp.com 上针对 SNMP 代理尝试脚本和/或启用 pysnmp 调试并查看来自您正在查询的 SNMP 代理的 PDU 中的内容。
from pysnmp import debug
debug.setLogger(debug.Debug('msgproc'))
...