python中子进程的不确定行为

时间:2015-03-31 06:40:21

标签: python subprocess snmp

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>

我无法理解为什么它以不确定的方式表现。有人可以帮忙吗?谢谢!

0 个答案:

没有答案