pysnmp 将后缀附加到对象标识
pysnmp appending suffix to object identity
我正在尝试利用 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.snmplabs.com and/or 尝试针对 SNMP 代理的脚本,启用 pysnmp 调试并查看来自您正在查询的 SNMP 代理的 PDU 中的内容。
from pysnmp import debug
debug.setLogger(debug.Debug('msgproc'))
...
我正在尝试利用 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.snmplabs.com and/or 尝试针对 SNMP 代理的脚本,启用 pysnmp 调试并查看来自您正在查询的 SNMP 代理的 PDU 中的内容。
from pysnmp import debug
debug.setLogger(debug.Debug('msgproc'))
...