snmpset -v 2c -c private <oid> integer 6
try:
x = subprocess.check_output(command,shell=True)
except Exception:
msg = "Some error here"
exit()
我编写了一个python脚本,上面的代码是其中的一部分。有时它会正确执行,有时会出现以下错误:
Error in packet.
Reason: noCreation (That table does not support row creation or that object can not ever be created)
Failed object: SNMPv2-SMI::<oid>
我无法理解为什么它以不确定的方式表现。有人可以帮忙吗?谢谢!